mirror of
https://github.com/Fishwaldo/rundeck-api-java-client.git
synced 2025-07-11 07:28:29 +00:00
javadoc
This commit is contained in:
parent
d045205431
commit
15afe28d74
1 changed files with 7 additions and 0 deletions
|
@ -73,6 +73,9 @@ public class RundeckExecution implements Serializable {
|
|||
this.url = url;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the status of the execution - see {@link ExecutionStatus}
|
||||
*/
|
||||
public ExecutionStatus getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
@ -81,6 +84,10 @@ public class RundeckExecution implements Serializable {
|
|||
this.status = status;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the {@link RundeckJob} associated with this execution, or null in the case of an ad-hoc execution
|
||||
* (command or script)
|
||||
*/
|
||||
public RundeckJob getJob() {
|
||||
return job;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue