Interface JobChainStepComp
-
- All Known Subinterfaces:
JobChainStep
public interface JobChainStepComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<JobChainCall>
getJobChainCalls()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainCalls()
instead.Iterator<JobChainStepDependency>
getJobChainStepDependencies()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepDependencies()
instead.Iterator<JobChainStepNode>
getJobChainStepNodes()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepNodes()
instead.Iterator<JobChainStepStatusHandler>
getJobChainStepStatusHandlers()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepStatusHandlers()
instead.
-
-
-
Method Detail
-
getJobChainCalls
@Deprecated Iterator<JobChainCall> getJobChainCalls()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainCalls()
instead.Get anIterator
over a collection ofJobChainCalls
, the collection will be ordered by SequenceNumber. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The calls performed in parallel in a job chain step- Returns:
- An
Iterator
over a collection ofJobChainCall
objects , the collection will be ordered by SequenceNumber.
-
getJobChainStepDependencies
@Deprecated Iterator<JobChainStepDependency> getJobChainStepDependencies()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepDependencies()
instead.Get anIterator
over an ordered collection ofJobChainStepDependencies
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. All node dependencies in this JobChainStep- Returns:
- An
Iterator
over an ordered collection ofJobChainStepDependency
objects .
-
getJobChainStepNodes
@Deprecated Iterator<JobChainStepNode> getJobChainStepNodes()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepNodes()
instead.Get anIterator
over an ordered collection ofJobChainStepNodes
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. All nodes in this JobChainStep- Returns:
- An
Iterator
over an ordered collection ofJobChainStepNode
objects .
-
getJobChainStepStatusHandlers
@Deprecated Iterator<JobChainStepStatusHandler> getJobChainStepStatusHandlers()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepStatusHandlers()
instead.Get anIterator
over a collection ofJobChainStepStatusHandlers
, the collection will be ordered by SequenceNumber. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Check that defines behavior after the step is finished- Returns:
- An
Iterator
over a collection ofJobChainStepStatusHandler
objects , the collection will be ordered by SequenceNumber.
-
-