Class ProcessFlowSearchResultItem
java.lang.Object
com.sas.lsaf.workflow.processflow.ProcessFlowSearchResultItem
- All Implemented Interfaces:
Serializable
The class that represents the results of a process flow search.
- Since:
- 2.4
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionProcessFlowSearchResultItem(String id, String name, ProcessFlowDescriptor.FlowStatus status, String owner, String processDefinitionKey, String lastModifiedBy, Date lastModifiedDate, String contextPath, CreationMethod creationMethod) It is not intended or recommended that the consumer of this API construct these objects. -
Method Summary
Modifier and TypeMethodDescriptionGets the context path of the context in which the process flow was created.Gets the method by which the process flow was created.getId()Gets the unique identifier of the process flow.Gets the user who last modified the process flow.Gets the date on which the process flow was last modified.getName()Gets the name of the process flow.getOwner()Gets the userId of the process flow owner.Gets the key of the process flow definition.Gets the status of the process flow.toString()
-
Constructor Details
-
ProcessFlowSearchResultItem
public ProcessFlowSearchResultItem(String id, String name, ProcessFlowDescriptor.FlowStatus status, String owner, String processDefinitionKey, String lastModifiedBy, Date lastModifiedDate, String contextPath, CreationMethod creationMethod) It is not intended or recommended that the consumer of this API construct these objects. They should only deal with the process flow search result items returned by the API.- Parameters:
id- The unique identifier of the process flow.name- The name of the process flow.status- The status of the process flow.owner- The userId of the process flow owner.processDefinitionKey- The key of the process flow definition.lastModifiedBy- The user who last modified the process flow.lastModifiedDate- The date on which the process flow was last modified.contextPath- The path of the context in which the process flow was created.creationMethod- The method by which the process flow was created.
-
-
Method Details
-
getOwner
Gets the userId of the process flow owner.- Returns:
- The userId.
-
getName
Gets the name of the process flow.- Returns:
- The name.
-
getId
Gets the unique identifier of the process flow.- Returns:
- The identifier.
-
getLastModifiedBy
Gets the user who last modified the process flow.- Returns:
- The userId.
-
getLastModifiedDate
Gets the date on which the process flow was last modified.- Returns:
- The date.
-
getContextPath
Gets the context path of the context in which the process flow was created.- Returns:
- The context path.
-
getStatus
Gets the status of the process flow.- Returns:
- The status.
-
getProcessDefinitionKey
Gets the key of the process flow definition.- Returns:
- The key.
-
getCreationMethod
Gets the method by which the process flow was created.- Returns:
- The method.
-
toString
-