7.0 Action Request System Java API

com.remedy.arsys.api
Class WorkflowConnectInfo

java.lang.Object
  extended bycom.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()
          Returns the hash code value for this instance of the current class.
 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.

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.


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