Interface IssueProcessorSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing issue processor searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetIssueProcessorSearchRecord(Type issueProcessorSearchRecordType) Gets the issue processor search record corresponding to the given issue processor search recordType.This method is used to retrieve an object implementing the requested record.voidorderIssueProcessorResults(IssueProcessorSearchOrder issueProcessorSearchOrder) Specify an ordering to the search results.voidsearchAmongIssueProcessors(IdList issueProcessorIds) Execute this search among the given list of issue 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
-
searchAmongIssueProcessors
Execute this search among the given list of issue processors.- Parameters:
issueProcessorIds- list of issue processors- Throws:
NullArgumentException-issueProcessorIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderIssueProcessorResults
Specify an ordering to the search results.- Parameters:
issueProcessorSearchOrder- issue processor search order- Throws:
NullArgumentException-issueProcessorSearchOrderisnullUnsupportedException-issueProcessorSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getIssueProcessorSearchRecord
IssueProcessorSearchRecord getIssueProcessorSearchRecord(Type issueProcessorSearchRecordType) throws OperationFailedException Gets the issue processor search record corresponding to the given issue processor search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
issueProcessorSearchRecordType- an issue processor search record type- Returns:
- the issue processor search record
- Throws:
NullArgumentException-issueProcessorSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(issueProcessorSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-