Class TaskSearchResults

java.lang.Object
com.sas.lsaf.workflow.task.TaskSearchResults
All Implemented Interfaces:
Serializable

public class TaskSearchResults extends Object implements Serializable
The class that represents the results of a process flow task search.
Since:
2.4
See Also:
  • Constructor Details

    • TaskSearchResults

      public TaskSearchResults(Set<Task> tasks, boolean limitReached)
      It is not intended or recommended that the consumer of this API construct these objects. They should only deal with the search results objects returned by the API.
      Parameters:
      tasks - The process flow tasks that match the query.
      limitReached - Indicates whether the query results exceed the maximum number of items allowed on the server.
  • Method Details

    • getTasks

      public Set<Task> getTasks()
      The process flow tasks found that match the query.
      Returns:
      The process flow tasks.
    • isLimitReached

      public boolean isLimitReached()
      Indicates whether the query results exceed the maximum number of items that are allowed on the server.
      Returns:
      Whether the query results exceed the maximum number of items that are allowed on the server.
    • toString

      public String toString()
      Overrides:
      toString in class Object