Class JobInformation

java.lang.Object
com.pervasive.datarush.cal.JobInformation
All Implemented Interfaces:
Serializable

public final class JobInformation extends Object implements Serializable
Basic job information that contains the job name, id, and the user that submitted the job.
See Also:
  • Constructor Details

    • JobInformation

      public JobInformation(GUID id, String name, String userId)
      Create a new job information object
      Parameters:
      id -
      name -
      userId -
  • Method Details

    • defaultJobInformation

      public static JobInformation defaultJobInformation()
      Create a job information object for a new job with default settings.
      Returns:
      a new job information object
    • getId

      public GUID getId()
      Returns a unique identifier for the job
      Returns:
      the job's unique identifier
    • getName

      public String getName()
      Returns a display name for the job. Generally, this will be the graph name if this corresponds to a datarush graph.
      Returns:
      the display name for the job.
    • getUserId

      public String getUserId()
      Returns the user id of the user that submitted the job.
      Returns:
      the user id of the user that submitted the job.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object