Interface JobChainComp
-
- All Known Subinterfaces:
JobChain
public interface JobChainComp
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<JobChainStatusHandler>
getDefaultJobChainStatusHandlers()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChain.getDefaultJobChainStatusHandlers()
instead.Iterator<JobChainStep>
getJobChainSteps()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChain.getJobChainSteps()
instead.
-
-
-
Method Detail
-
getDefaultJobChainStatusHandlers
@Deprecated Iterator<JobChainStatusHandler> getDefaultJobChainStatusHandlers()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChain.getDefaultJobChainStatusHandlers()
instead.Get anIterator
over a collection ofDefaultJobChainStatusHandlers
, 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
. A job chain status handler, the defaults for step status handlers.- Returns:
- An
Iterator
over a collection ofJobChainStatusHandler
objects , the collection will be ordered by SequenceNumber.
-
getJobChainSteps
@Deprecated Iterator<JobChainStep> getJobChainSteps()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChain.getJobChainSteps()
instead.Get anIterator
over a collection ofJobChainSteps
, 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 steps that make up a job chain.- Returns:
- An
Iterator
over a collection ofJobChainStep
objects , the collection will be ordered by SequenceNumber.
-
-