Interface Job

  • All Superinterfaces:
    RestModel

    @Service
    public interface Job
    extends RestModel
    This model holds information for detached jobs
    Author:
    jdlee
    • Method Detail

      • getJobId

        String getJobId()
        The ID of this job
      • setJobId

        void setJobId​(String jobid)
      • getJobName

        String getJobName()
        Command being executed
      • setJobName

        void setJobName​(String jobName)
      • getExecutionDate

        String getExecutionDate()
        The date and time the job was executed
      • setExecutionDate

        void setExecutionDate​(String executionDate)
      • getCompletionDate

        String getCompletionDate()
        The date and time the job was completed
      • setCompletionDate

        void setCompletionDate​(String completionDate)
      • getMessage

        String getMessage()
        The message, if any, from the command
      • setMessage

        void setMessage​(String message)
      • getExitCode

        String getExitCode()
        Completion code for this job, if completed
      • setExitCode

        void setExitCode​(String exitCode)
      • getUser

        String getUser()
        The user who executed the command
      • setUser

        void setUser​(String user)
      • getJobState

        String getJobState()
        The current state of the command's execution
      • setJobState

        void setJobState​(String state)