Interface JobProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing job processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetJobProcessorSearchRecord(Type jobProcessorSearchRecordType) Gets the job processor search record corresponding to the given job processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderJobProcessorResults(JobProcessorSearchOrder jobProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongJobProcessors(IdList foundryIds) Execute this search among the given list of job processors.Methods inherited from interface Extensible
getRecordTypes, hasRecordTypeModifier and TypeMethodDescriptionGets the record types available in this object.booleanhasRecordType(Type recordType) Tests if this object supports the given recordType.Methods inherited from interface OsidSearch
limitResultSetModifier and TypeMethodDescriptionvoidlimitResultSet(long start, long end) By default, searches return all matching results.
-
Method Details
-
searchAmongJobProcessors
Execute this search among the given list of job processors.- Parameters:
foundryIds- list of job processors- Throws:
NullArgumentException-foundryIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderJobProcessorResults
Specify an ordering to the search results.- Parameters:
jobProcessorSearchOrder- job processor search order- Throws:
NullArgumentException-jobProcessorSearchOrderisnullUnsupportedException-jobProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getJobProcessorSearchRecord
JobProcessorSearchRecord getJobProcessorSearchRecord(Type jobProcessorSearchRecordType) throws OperationFailedException Gets the job processor search record corresponding to the given job processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
jobProcessorSearchRecordType- a job processor search record type- Returns:
- the job processor search record
- Throws:
NullArgumentException-jobProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(jobProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-