Interface ProcessServerComp
-
- All Known Subinterfaces:
ProcessServer
public interface ProcessServerComp
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<FileEventDefinition>
getFileEventDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getFileEventDefinitions()
instead.Iterator<ProcessServerCheck>
getProcessServerChecks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerChecks()
instead.Iterator<ProcessServerJobDefinitionType>
getProcessServerJobDefinitionTypes()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerJobDefinitionTypes()
instead.Iterator<ProcessServerLoadFactor>
getProcessServerLoadFactors()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerLoadFactors()
instead.Iterator<ProcessServerParameter>
getProcessServerParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerParameters()
instead.Iterator<ProcessServerResource>
getProcessServerResources()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerResources()
instead.Iterator<ProcessServerService>
getProcessServerServices()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerServices()
instead.Iterator<ProcessServerStatusLog>
getProcessServerStatusLogs()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerStatusLogs()
instead.Iterator<QueueProvider>
getQueueProviders()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getQueueProviders()
instead.
-
-
-
Method Detail
-
getFileEventDefinitions
@Deprecated Iterator<FileEventDefinition> getFileEventDefinitions()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getFileEventDefinitions()
instead.Get anIterator
over an ordered collection ofFileEventDefinitions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which process server should watch for a particular file event.- Returns:
- An
Iterator
over an ordered collection ofFileEventDefinition
objects .
-
getProcessServerStatusLogs
@Deprecated Iterator<ProcessServerStatusLog> getProcessServerStatusLogs()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerStatusLogs()
instead.Get anIterator
over an ordered collection ofProcessServerStatusLogs
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. ProcessServerStatusLog logging the status of a ProcessServer at a point in time.- Returns:
- An
Iterator
over an ordered collection ofProcessServerStatusLog
objects .
-
getProcessServerChecks
@Deprecated Iterator<ProcessServerCheck> getProcessServerChecks()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerChecks()
instead.Get anIterator
over an ordered collection ofProcessServerChecks
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The checks of this process server.- Returns:
- An
Iterator
over an ordered collection ofProcessServerCheck
objects .
-
getProcessServerJobDefinitionTypes
@Deprecated Iterator<ProcessServerJobDefinitionType> getProcessServerJobDefinitionTypes()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerJobDefinitionTypes()
instead.Get anIterator
over an ordered collection ofProcessServerJobDefinitionTypes
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The process servers that this definition type can run on.- Returns:
- An
Iterator
over an ordered collection ofProcessServerJobDefinitionType
objects .
-
getProcessServerLoadFactors
@Deprecated Iterator<ProcessServerLoadFactor> getProcessServerLoadFactors()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerLoadFactors()
instead.Get anIterator
over an ordered collection ofProcessServerLoadFactors
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The load factors of this process server.- Returns:
- An
Iterator
over an ordered collection ofProcessServerLoadFactor
objects .
-
getProcessServerParameters
@Deprecated Iterator<ProcessServerParameter> getProcessServerParameters()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerParameters()
instead.Get anIterator
over an ordered collection ofProcessServerParameters
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The parameters of this process server.- Returns:
- An
Iterator
over an ordered collection ofProcessServerParameter
objects .
-
getProcessServerResources
@Deprecated Iterator<ProcessServerResource> getProcessServerResources()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerResources()
instead.Get anIterator
over an ordered collection ofProcessServerResources
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The resources provided by this process server.- Returns:
- An
Iterator
over an ordered collection ofProcessServerResource
objects .
-
getProcessServerServices
@Deprecated Iterator<ProcessServerService> getProcessServerServices()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getProcessServerServices()
instead.Get anIterator
over an ordered collection ofProcessServerServices
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The services contained by this process server.- Returns:
- An
Iterator
over an ordered collection ofProcessServerService
objects .
-
getQueueProviders
@Deprecated Iterator<QueueProvider> getQueueProviders()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useProcessServer.getQueueProviders()
instead.Get anIterator
over an ordered collection ofQueueProviders
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The queues served by this process server.- Returns:
- An
Iterator
over an ordered collection ofQueueProvider
objects .
-
-