Interface BudgetEntrySearch
- All Superinterfaces:
Extensible, OsidCondition, OsidSearch, Suppliable
The search interface for governing budget entry searches.
-
Method Summary
Modifier and TypeMethodDescriptiongetBudgetEntrySearchRecord(Type budgetEntrySearchRecordType) Gets the budget entry search record corresponding to the given budget entry search recordType.This method is used to retrieve an object implementing the requested record.voidorderBudgetEntryResults(BudgetEntrySearchOrder budgetEntrySearchOrder) Specify an ordering to the search results.voidsearchAmongBudgetEntries(IdList budgetEntryIds) Execute this search among the given list of budget entries.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
-
searchAmongBudgetEntries
Execute this search among the given list of budget entries.- Parameters:
budgetEntryIds- list of entries- Throws:
NullArgumentException-budgetEntryIdsisnull- Compliance:
mandatory- This method must be implemented.
-
orderBudgetEntryResults
Specify an ordering to the search results.- Parameters:
budgetEntrySearchOrder- budget entry search order- Throws:
NullArgumentException-budgetEntrySearchOrderisnullUnsupportedException-budgetEntrySearchOrderis not of this service- Compliance:
mandatory- This method must be implemented.
-
getBudgetEntrySearchRecord
BudgetEntrySearchRecord getBudgetEntrySearchRecord(Type budgetEntrySearchRecordType) throws OperationFailedException Gets the budget entry search record corresponding to the given budget entry search recordType.This method is used to retrieve an object implementing the requested record.- Parameters:
budgetEntrySearchRecordType- a budget entry search record type- Returns:
- the budget entry search record
- Throws:
NullArgumentException-budgetEntrySearchRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(budgetEntrySearchRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-