5.1 Action Request System Java API

com.remedy.arsys.api
Class WorkflowConnectInfo

java.lang.Object
  |
  +--com.remedy.arsys.api.WorkflowConnectInfo
All Implemented Interfaces:
java.lang.Cloneable

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

The WorkflowConnectInfo class represents the list of schemas the workflow object (for example, an active link) is connected to.


Constructor Summary
WorkflowConnectInfo()
          constructor
WorkflowConnectInfo(int type, NameID[] schemaList)
           
 
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.
 NameID[] getSchemaList()
          Returns list of schemas the workflow is connected to.
 int getType()
          Returns type.
 int hashCode()
          This method can be used to populate a hash table.
 void setSchemaList(NameID[] schemaList)
          Sets list of schemas the workflow is connected to.
 void setType(int type)
          Sets type.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WorkflowConnectInfo

public WorkflowConnectInfo()
constructor

WorkflowConnectInfo

public WorkflowConnectInfo(int type,
                           NameID[] schemaList)
Method Detail

getType

public int getType()
Returns type. Only schemas are currently supported. The constant AR_WORKFLOW_CONN_SCHEMA_LIST is associated with a list of schemas.

setType

public void setType(int type)
Sets type. Only schemas are currently supported. The constant AR_WORKFLOW_CONN_SCHEMA_LIST is associated with a list of schemas.

getSchemaList

public NameID[] getSchemaList()
Returns list of schemas the workflow is connected to.

setSchemaList

public void setSchemaList(NameID[] schemaList)
Sets list of schemas the workflow is connected to.

clone

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

equals

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

hashCode

public int hashCode()
This method can be used to populate a hash table. Implicitly used method to test equality of objects.
Overrides:
hashCode in class java.lang.Object

5.1 Action Request System Java API