Interface ActivityRegistrationSearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing activity registration searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetActivityRegistrationSearchRecord(Type activityRegistrationSearchRecordType) Gets the activity registration search record corresponding to the given activity registration search recordType.voidorderActivityRegistrationResults(ActivityRegistrationSearchOrder activityRegistrationSearchOrder) Specify an ordering to the search results.voidsearchAmongActivityRegistrations(IdList activityRegistrationIds) Execute this search among the given list of activity 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
-
searchAmongActivityRegistrations
Execute this search among the given list of activity registrations.- Parameters:
activityRegistrationIds- list of activity registrations- Throws:
NullArgumentException-activityRegistrationIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderActivityRegistrationResults
void orderActivityRegistrationResults(ActivityRegistrationSearchOrder activityRegistrationSearchOrder) Specify an ordering to the search results.- Parameters:
activityRegistrationSearchOrder- activity registration search order- Throws:
NullArgumentException-activityRegistrationSearchOrderisnullUnsupportedException-activityRegistrationSearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getActivityRegistrationSearchRecord
ActivityRegistrationSearchRecord getActivityRegistrationSearchRecord(Type activityRegistrationSearchRecordType) throws OperationFailedException Gets the activity registration search record corresponding to the given activity registration search recordType. This method is used to retrieve an object implementing the requested record.- Parameters:
activityRegistrationSearchRecordType- an activity registration search record type- Returns:
- the activity registration search record
- Throws:
NullArgumentException-activityRegistrationSearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(activityRegistrationSearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-