filenet.vw.api
Class VWWorkflowRuntimeId
- java.lang.Object
-
- filenet.vw.api.VWWorkflowRuntimeId
-
- All Implemented Interfaces:
- java.io.Serializable
public final class VWWorkflowRuntimeId extends java.lang.Object implements java.io.SerializableThis class designates a workflow runtime ID for a workflow definition that has been transferred and compiled.
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringDATE_FORMATString representation of the formatting pattern for date values, as follows:
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description intgetIsolatedRegion()Returns the isolated region.java.util.DategetRegionTimeStamp()Returns the region time stamp.java.lang.StringgetServiceName()Returns the service name.intgetWorkClassId()Returns the work class id.intgetWorkClassRevision()Returns the work class revision.intgetWorkSpaceId()Returns the work space id.intgetWSDLVersion()Returns the WSDL version needed by process orchestration to generate the correct version of the WSDL for a workflow.java.lang.StringtoString()Returns the String representation of the workflow runtime id.voidtoXML(java.lang.StringBuffer theBuffer)Appends an XML string representing this instance to the buffer specified.
-
-
-
Field Detail
-
DATE_FORMAT
public static final java.lang.String DATE_FORMAT
String representation of the formatting pattern for date values, as follows:"MM/dd/yyyy hh:mm:ss"
- See Also:
- Constant Field Values
-
-
Method Detail
-
getServiceName
public java.lang.String getServiceName()
Returns the service name.- Returns:
- The name of the service.
-
getIsolatedRegion
public int getIsolatedRegion()
Returns the isolated region.- Returns:
- The isolated region.
-
getRegionTimeStamp
public java.util.Date getRegionTimeStamp()
Returns the region time stamp.- Returns:
- The region time stamp.
-
getWorkClassId
public int getWorkClassId()
Returns the work class id.- Returns:
- The work class id.
-
getWorkSpaceId
public int getWorkSpaceId()
Returns the work space id.- Returns:
- The work space id.
-
getWorkClassRevision
public int getWorkClassRevision()
Returns the work class revision.- Returns:
- The work class revision.
-
toString
public java.lang.String toString()
Returns the String representation of the workflow runtime id.- Overrides:
toStringin classjava.lang.Object- Returns:
- The String representation of the workflow runtime id.
-
getWSDLVersion
public int getWSDLVersion()
Returns the WSDL version needed by process orchestration to generate the correct version of the WSDL for a workflow.- Returns:
- the WSDL version.
-
toXML
public void toXML(java.lang.StringBuffer theBuffer) throws VWExceptionAppends an XML string representing this instance to the buffer specified.Warning: This XML string is nonextensible, and cannot be modified in any way.
- Parameters:
theBuffer- A StringBuffer that will be appended with the XML content.- Throws:
VWException- Thrown if the specified buffer is null.- See Also:
VWXMLUtil
-
-