Interface AuthorizationEnablerSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing authorization enabler searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetAuthorizationEnablerSearchRecord(Type authorizationEnablerSearchRecordType) Gets the authorization enabler search record corresponding to the given authorization enabler search recordType.voidorderAuthorizationEnablerResults(AuthorizationEnablerSearchOrder authorizationEnablerSearchOrder) Specify an ordering to the search results.voidsearchAmongAuthorizationEnablers(IdList authorizationEnablerIds) Execute this search among the given list of authorization enablers.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
-
searchAmongAuthorizationEnablers
Execute this search among the given list of authorization enablers.- Parameters:
authorizationEnablerIds- list of authorization enablers- Throws:
NullArgumentException-authorizationEnablerIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderAuthorizationEnablerResults
void orderAuthorizationEnablerResults(AuthorizationEnablerSearchOrder authorizationEnablerSearchOrder) Specify an ordering to the search results.- Parameters:
authorizationEnablerSearchOrder- authorization enabler search order- Throws:
NullArgumentException-authorizationEnablerSearchOrderisnullUnsupportedException-authorizationEnablerSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getAuthorizationEnablerSearchRecord
AuthorizationEnablerSearchRecord getAuthorizationEnablerSearchRecord(Type authorizationEnablerSearchRecordType) throws OperationFailedException Gets the authorization enabler search record corresponding to the given authorization enabler search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
authorizationEnablerSearchRecordType- an authorization enabler search record type- Returns:
- the authorization enabler search record
- Throws:
NullArgumentException-authorizationEnablerSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(authorizationEnablerSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-