7.0 Action Request System Java API

com.remedy.arsys.api
Class FunctionAssignInfo

java.lang.Object
  extended bycom.remedy.arsys.api.FunctionAssignInfo
All Implemented Interfaces:
java.lang.Cloneable

public class FunctionAssignInfo
extends java.lang.Object
implements java.lang.Cloneable

The FunctionAssignInfo class specifies a function return value to assign in a Set Fields action.


Constructor Summary
FunctionAssignInfo()
          constructor
FunctionAssignInfo(long functionCode, AssignInfo[] parameterList)
           
 
Method Summary
 java.lang.Object clone()
          Clone implementation that returns an Object with data cloned from self.
 boolean equals(java.lang.Object anObject)
          Use this method for checking equality.
 boolean equals(java.lang.Object anObject, java.lang.String lhsServer, java.lang.String lhsSchema, java.lang.String rhsServer, java.lang.String rhsSchema)
           
 long getFunctionCode()
          Returns type of function performed.
 long getNumItems()
          Returns number of input parameters.
 AssignInfo[] getParameterList()
          Returns parameter values used.
 int hashCode()
          Returns the hash code value for this instance of the current class.
 void setFunctionCode(long functionCode)
          Sets type of function to perform.
 void setNumItems(long numItems)
          Sets number of input parameters.
 void setParameterList(AssignInfo[] parameterList)
          Sets parameter values to use.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FunctionAssignInfo

public FunctionAssignInfo()
constructor


FunctionAssignInfo

public FunctionAssignInfo(long functionCode,
                          AssignInfo[] parameterList)
Method Detail

getFunctionCode

public long getFunctionCode()
Returns type of function performed.


setFunctionCode

public void setFunctionCode(long functionCode)
Sets type of function to perform. Possible constants values include the following:


getNumItems

public long getNumItems()
Returns number of input parameters.


setNumItems

public void setNumItems(long numItems)
Sets number of input parameters.


getParameterList

public AssignInfo[] getParameterList()
Returns parameter values used.


setParameterList

public void setParameterList(AssignInfo[] parameterList)
Sets parameter values to use.


clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Clone implementation that returns an Object with data cloned from self.

Throws:
java.lang.CloneNotSupportedException

equals

public boolean equals(java.lang.Object anObject)
Use this method for checking equality. The result is true only if the argument is not null, is of same type and represents the same content.


equals

public boolean equals(java.lang.Object anObject,
                      java.lang.String lhsServer,
                      java.lang.String lhsSchema,
                      java.lang.String rhsServer,
                      java.lang.String rhsSchema)

hashCode

public int hashCode()
Returns the hash code value for this instance of the current class. This method is supported as required by the general contract of Object.hashCode, for the benefit of hash tables such as those provided by java.util.Hashtable.


7.0 Action Request System Java API