Interface ExecutionReference
-
- All Superinterfaces:
PreparedExecutionReference
public interface ExecutionReference extends PreparedExecutionReference
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.StringgetAdhocCommand()java.util.DategetDateCompleted()java.util.DategetDateStarted()java.lang.StringgetFailedNodeList()java.lang.StringgetFilter()java.util.MapgetMetadata()java.lang.StringgetOptions()default java.lang.StringgetRetryNextId()If this execution was retried, return the ID of the retry executiondefault java.lang.StringgetRetryOriginalId()If this execution is a retry, return the ID of the original executiondefault java.lang.StringgetRetryPrevId()If this execution is a retry, return the ID of the previous executionjava.lang.StringgetStatus()java.lang.StringgetSucceededNodeList()java.lang.StringgetTargetNodes()-
Methods inherited from interface com.dtolabs.rundeck.core.execution.PreparedExecutionReference
getExecutionType, getId, getJob, getProject, getUuid, isScheduled
-
-
-
-
Method Detail
-
getRetryOriginalId
default java.lang.String getRetryOriginalId()
If this execution is a retry, return the ID of the original execution- Returns:
-
getRetryPrevId
default java.lang.String getRetryPrevId()
If this execution is a retry, return the ID of the previous execution- Returns:
-
getRetryNextId
default java.lang.String getRetryNextId()
If this execution was retried, return the ID of the retry execution- Returns:
-
getFilter
java.lang.String getFilter()
-
getOptions
java.lang.String getOptions()
-
getDateStarted
java.util.Date getDateStarted()
-
getDateCompleted
java.util.Date getDateCompleted()
-
getStatus
java.lang.String getStatus()
-
getSucceededNodeList
java.lang.String getSucceededNodeList()
-
getFailedNodeList
java.lang.String getFailedNodeList()
-
getTargetNodes
java.lang.String getTargetNodes()
-
getAdhocCommand
java.lang.String getAdhocCommand()
-
getMetadata
java.util.Map getMetadata()
-
-