Action Request System Java API

com.remedy.arsys.api
Class WorkflowConnectInfo

java.lang.Object
  |
  +--com.remedy.arsys.api.WorkflowConnectInfo

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.
 NameID[] getSchemaList()
          Returns list of schemas the workflow is connected to.
 int getType()
          Returns type.
 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
equals, finalize, getClass, hashCode, 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

Action Request System Java API