public interface CourseEntrySearch extends OsidSearch
The search interface for governing course entry searches.
Modifier and Type | Method and Description |
---|---|
CourseEntrySearchRecord |
getCourseEntrySearchRecord(Type courseEntrySearchRecordType)
Gets the course entry search record corresponding to the given course
entry search record
Type. |
void |
orderCourseEntryResults(CourseEntrySearchOrder courseEntrySearchOrder)
Specify an ordering to the search results.
|
void |
searchAmongCourseEntries(IdList courseEntryIds)
Execute this search among the given list of course entries.
|
limitResultSet
getRecordTypes, hasRecordType
void searchAmongCourseEntries(IdList courseEntryIds)
courseEntryIds
- list of course entry Ids
NullArgumentException
- courseEntryIds
is null
mandatory
- This method must be implemented. void orderCourseEntryResults(CourseEntrySearchOrder courseEntrySearchOrder)
courseEntrySearchOrder
- course entry search orderNullArgumentException
- courseEntrySearchOrder
is null
UnsupportedException
- courseEntrySearchOrder
is not of this servicemandatory
- This method must be implemented. CourseEntrySearchRecord getCourseEntrySearchRecord(Type courseEntrySearchRecordType) throws OperationFailedException
Type.
This method is used to
retrieve an object implementing the requested record.courseEntrySearchRecordType
- a course entry search record typeNullArgumentException
-
courseEntrySearchRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(courseEntrySearchRecordType)
is
false
mandatory
- This method must be implemented.