Class ProcessFlowQuery

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

public class ProcessFlowQuery extends Object implements Serializable
The class that represents the criteria to query the process flows.
Since:
2.4
See Also:
  • Constructor Details

    • ProcessFlowQuery

      public ProcessFlowQuery()
      Constructor.
  • Method Details

    • getStatus

      Gets the status of the process flow in which to query.
      Returns:
      The status.
    • setStatus

      public void setStatus(ProcessFlowDescriptor.FlowStatus status)
      Sets the status of the process flow in which to query.
      Parameters:
      status - The status of the process flow in which to query.
    • getName

      public String getName()
      Gets the process flow name to query.
      Returns:
      The process flow name.
    • setName

      public void setName(String name)
      Sets the process flow name to query.
      Parameters:
      name - The process flow name to query.
    • getContextPath

      public String getContextPath()
      Gets the process flow context path to query.
      Returns:
      The context path.
    • setContextPath

      public void setContextPath(String contextPath)
      Sets the process flow context path to query.
      Parameters:
      contextPath - The context path.
    • getProcessDefinitionKey

      public String getProcessDefinitionKey()
      Gets the process flow definition key in which to query process flows. Process flows that were created from that process flow definition are returned in the query results.
      Returns:
      The process flow definition key.
    • setProcessDefinitionKey

      public void setProcessDefinitionKey(String processDefinitionKey)
      Sets the process flow definition key in which to query process flows. Any process flows that were created from that process flow definition are returned in the query results.
      Parameters:
      processDefinitionKey - The process flow definition key in which to query process flows.
    • getOwner

      public String getOwner()
      Gets the process flow owner to query.
      Returns:
      The process flow owner.
    • setOwner

      public void setOwner(String owner)
      Sets the process flow owner to query.
      Parameters:
      owner - The process flow owner to query.
    • getLastModifiedBy

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

      public void setLastModifiedBy(String lastModifiedBy)
      Sets the userId of the user who last modified the process flow. Supports wild cards.
      Parameters:
      lastModifiedBy - The userId of the user who last modified the process flow.
    • getFromLastModified

      public Date getFromLastModified()
      Gets the start date of the range to query process flow last modified date.
      Returns:
      The start date.
    • setFromLastModified

      public void setFromLastModified(Date fromLastModified)
      Sets the start date of the range to query process flow last modified date.
      Parameters:
      fromLastModified - The start date of the range to query process flow last modified date.
    • getToLastModified

      public Date getToLastModified()
      Gets the end date of the range to query process flow last modified date.
      Returns:
      The end date.
    • setToLastModified

      public void setToLastModified(Date toLastModified)
      Sets the end date of the range to query process flow last modified date.
      Parameters:
      toLastModified - The end date of the data range to query process flow last modified date.
    • getCreationMethod

      public CreationMethod getCreationMethod()
      Gets the process flow creation method to query.
      Returns:
      The creation method.
    • setCreationMethod

      public void setCreationMethod(CreationMethod creationMethod)
      Sets the process flow creation method to query.
      Parameters:
      creationMethod - The process flow creation method to query.
    • toString

      public String toString()
      Overrides:
      toString in class Object