- 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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobInformation(GUID id, String name, String userId)
Create a new job information object
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JobInformation
defaultJobInformation()
Create a job information object for a new job with default settings.boolean
equals(Object o)
GUID
getId()
Returns a unique identifier for the jobString
getName()
Returns a display name for the job.String
getUserId()
Returns the user id of the user that submitted the job.int
hashCode()
String
toString()
-
-
-
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.
-
-