Class 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:
    Serialized Form
    • Constructor Detail

      • JobInformation

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

      • 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.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object