Interface JobDefinitionAlertSourceComp
-
- All Known Subinterfaces:
JobDefinitionAlertSource
public interface JobDefinitionAlertSourceComp
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<JobDefinitionAlertSourceParameterMatch>
getJobDefinitionAlertSourceParameterMatches()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionAlertSource.getJobDefinitionAlertSourceParameterMatches()
instead.Iterator<JobDefinitionAlertSourceRule>
getJobDefinitionAlertSourceRules()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionAlertSource.getJobDefinitionAlertSourceRules()
instead.Iterator<JobDefinitionAlertSourceStatus>
getJobDefinitionAlertSourceStatuses()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionAlertSource.getJobDefinitionAlertSourceStatuses()
instead.
-
-
-
Method Detail
-
getJobDefinitionAlertSourceParameterMatches
@Deprecated Iterator<JobDefinitionAlertSourceParameterMatch> getJobDefinitionAlertSourceParameterMatches()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionAlertSource.getJobDefinitionAlertSourceParameterMatches()
instead.Get anIterator
over an ordered collection ofJobDefinitionAlertSourceParameterMatches
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Job definition alert source parameter matches.- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionAlertSourceParameterMatch
objects .
-
getJobDefinitionAlertSourceRules
@Deprecated Iterator<JobDefinitionAlertSourceRule> getJobDefinitionAlertSourceRules()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionAlertSource.getJobDefinitionAlertSourceRules()
instead.Get anIterator
over an ordered collection ofJobDefinitionAlertSourceRules
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Job definition alert source rules.- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionAlertSourceRule
objects .
-
getJobDefinitionAlertSourceStatuses
@Deprecated Iterator<JobDefinitionAlertSourceStatus> getJobDefinitionAlertSourceStatuses()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobDefinitionAlertSource.getJobDefinitionAlertSourceStatuses()
instead.Get anIterator
over an ordered collection ofJobDefinitionAlertSourceStatuses
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Job definition alert source statuses.- Returns:
- An
Iterator
over an ordered collection ofJobDefinitionAlertSourceStatus
objects .
-
-