Interface JobLockComp
-
- All Known Subinterfaces:
JobLock
public interface JobLockComp
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<JobChainCallJobLock>
getJobChainCallJobLocks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobLock.getJobChainCallJobLocks()
instead.Iterator<JobDefinitionJobLock>
getJobDefinitionJobLocks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobLock.getJobDefinitionJobLocks()
instead.Iterator<JobJobLock>
getJobJobLocks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobLock.getJobJobLocks()
instead.
-
-
-
Method Detail
-
getJobDefinitionJobLocks
@Deprecated Iterator<JobDefinitionJobLock> getJobDefinitionJobLocks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobLock.getJobDefinitionJobLocks()
instead.Get anIterator
over an ordered collection ofJobDefinitionJobLocks
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The lock required by a job definition.- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionJobLock
objects .
-
getJobJobLocks
@Deprecated Iterator<JobJobLock> getJobJobLocks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobLock.getJobJobLocks()
instead.Get anIterator
over an ordered collection ofJobJobLocks
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The lock definitions for locks required by a job.- Returns:
- An
Iterator
over an ordered collection ofJobJobLock
objects .
-
getJobChainCallJobLocks
@Deprecated Iterator<JobChainCallJobLock> getJobChainCallJobLocks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobLock.getJobChainCallJobLocks()
instead.Get anIterator
over an ordered collection ofJobChainCallJobLocks
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The lock required by a job chain call.- Returns:
- An
Iterator
over an ordered collection ofJobChainCallJobLock
objects .
-
-