Interface Job
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCompletionDate()The date and time the job was completedStringgetExecutionDate()The date and time the job was executedStringgetExitCode()Completion code for this job, if completedStringgetJobId()The ID of this jobStringgetJobName()Command being executedStringgetJobState()The current state of the command's executionStringgetMessage()The message, if any, from the commandStringgetUser()The user who executed the commandvoidsetCompletionDate(String completionDate)voidsetExecutionDate(String executionDate)voidsetExitCode(String exitCode)voidsetJobId(String jobid)voidsetJobName(String jobName)voidsetJobState(String state)voidsetMessage(String message)voidsetUser(String user)-
Methods inherited from interface org.glassfish.admin.rest.composite.RestModel
allFieldsSet, isSet, isTrimmed, trimmed
-
-
-
-
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)
-
-