Interface RegistrationSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing registration searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetRegistrationSearchRecord(Type registrationSearchRecordType) Gets the registration search record corresponding to the given registration search recordType.This method is used to retrieve an object implementing the requested record.voidorderRegistrationResults(RegistrationSearchOrder registrationSearchOrder) Specify an ordering to the search results.voidsearchAmongRegistrations(IdList registrationIds) Execute this search among the given list of registrations.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
-
searchAmongRegistrations
Execute this search among the given list of registrations.- Parameters:
registrationIds- list of courses- Throws:
NullArgumentException-registrationIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderRegistrationResults
Specify an ordering to the search results.- Parameters:
registrationSearchOrder- course search order- Throws:
NullArgumentException-registrationSearchOrderisnullUnsupportedException-registrationSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getRegistrationSearchRecord
RegistrationSearchRecord getRegistrationSearchRecord(Type registrationSearchRecordType) throws OperationFailedException Gets the registration search record corresponding to the given registration search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
registrationSearchRecordType- a course search record type- Returns:
- the registration search record
- Throws:
NullArgumentException-registrationSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(registrationSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-