Interface JobDefinitionParameterComp
-
- All Known Subinterfaces:
JobDefinitionParameter
public interface JobDefinitionParameterComp
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<JobChainCallInExpressionParameter>
getLocalJobChainCallInExpressionParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getLocalJobChainCallInExpressionParameters()
instead.Iterator<JobChainCallInReferenceParameter>
getLocalJobChainCallInReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getLocalJobChainCallInReferenceParameters()
instead.Iterator<JobChainCallOutReferenceParameter>
getLocalJobChainCallOutReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getLocalJobChainCallOutReferenceParameters()
instead.Iterator<JobChainCallOutReferenceParameter>
getSourceJobChainCallOutReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getSourceJobChainCallOutReferenceParameters()
instead.Iterator<JobChainCallInReferenceParameter>
getTargetJobChainCallInReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getTargetJobChainCallInReferenceParameters()
instead.
-
-
-
Method Detail
-
getTargetJobChainCallInReferenceParameters
@Deprecated Iterator<JobChainCallInReferenceParameter> getTargetJobChainCallInReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getTargetJobChainCallInReferenceParameters()
instead.Get anIterator
over an ordered collection ofTargetJobChainCallInReferenceParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The JobDefinitionParameter that this JobChainCallInReferenceParameter will read the results of. It must be associated with the this.getSourceJobChainCall().getJobDefinition() or with this.getJobChain().- Returns:
- An
Iterator
over an ordered collection ofJobChainCallInReferenceParameter
objects .
-
getSourceJobChainCallOutReferenceParameters
@Deprecated Iterator<JobChainCallOutReferenceParameter> getSourceJobChainCallOutReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getSourceJobChainCallOutReferenceParameters()
instead.Get anIterator
over an ordered collection ofSourceJobChainCallOutReferenceParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The JobChains JobDefinitionParameter that this JobChainCallOutParameter will update. This must be associated with this.getJobChainCall().getJobChainStep().getJobChain().getJobDefinition().- Returns:
- An
Iterator
over an ordered collection ofJobChainCallOutReferenceParameter
objects .
-
getLocalJobChainCallInExpressionParameters
@Deprecated Iterator<JobChainCallInExpressionParameter> getLocalJobChainCallInExpressionParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getLocalJobChainCallInExpressionParameters()
instead.Get anIterator
over an ordered collection ofLocalJobChainCallInExpressionParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The JobDefinitionParameter that this JobChainCallParameter will read or update.- Returns:
- An
Iterator
over an ordered collection ofJobChainCallInExpressionParameter
objects .
-
getLocalJobChainCallInReferenceParameters
@Deprecated Iterator<JobChainCallInReferenceParameter> getLocalJobChainCallInReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getLocalJobChainCallInReferenceParameters()
instead.Get anIterator
over an ordered collection ofLocalJobChainCallInReferenceParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The JobDefinitionParameter that this JobChainCallParameter will read or update.- Returns:
- An
Iterator
over an ordered collection ofJobChainCallInReferenceParameter
objects .
-
getLocalJobChainCallOutReferenceParameters
@Deprecated Iterator<JobChainCallOutReferenceParameter> getLocalJobChainCallOutReferenceParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionParameter.getLocalJobChainCallOutReferenceParameters()
instead.Get anIterator
over an ordered collection ofLocalJobChainCallOutReferenceParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The JobDefinitionParameter that this JobChainCallParameter will read or update.- Returns:
- An
Iterator
over an ordered collection ofJobChainCallOutReferenceParameter
objects .
-
-