Class ProcessFlowSearchResultItem

java.lang.Object
com.sas.lsaf.workflow.processflow.ProcessFlowSearchResultItem
All Implemented Interfaces:
Serializable

public class ProcessFlowSearchResultItem extends Object implements Serializable
The class that represents the results of a process flow search.
Since:
2.4
See Also:
  • 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

      public String getOwner()
      Gets the userId of the process flow owner.
      Returns:
      The userId.
    • getName

      public String getName()
      Gets the name of the process flow.
      Returns:
      The name.
    • getId

      public String getId()
      Gets the unique identifier of the process flow.
      Returns:
      The identifier.
    • getLastModifiedBy

      public String getLastModifiedBy()
      Gets the user who last modified the process flow.
      Returns:
      The userId.
    • getLastModifiedDate

      public Date getLastModifiedDate()
      Gets the date on which the process flow was last modified.
      Returns:
      The date.
    • getContextPath

      public String 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

      public String getProcessDefinitionKey()
      Gets the key of the process flow definition.
      Returns:
      The key.
    • getCreationMethod

      public CreationMethod getCreationMethod()
      Gets the method by which the process flow was created.
      Returns:
      The method.
    • toString

      public String toString()
      Overrides:
      toString in class Object