Interface ObjectiveBank
- All Superinterfaces:
Browsable, Extensible, Federateable, Identifiable, OsidCatalog, OsidObject, Sourceable
an objective bank defines a collection of objectives.
Like all OsidObjects, ObjectiveBank is managed by its
OsidSessions and may not be accessed by concurrent processing
threads.
-
Method Summary
Modifier and TypeMethodDescriptiongetObjectiveBankRecord(Type objectiveBankRecordType) Gets the objective bank record corresponding to the givenObjectiveBankrecordType.Methods inherited from interface Browsable
getProperties, getPropertiesByRecordTypeMethods inherited from interface Extensible
getRecordTypes, hasRecordTypeMethods inherited from interface Identifiable
getId, isCurrentMethods inherited from interface OsidObject
getDescription, getDisplayName, getGenusType, isOfGenusTypeMethods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderId
-
Method Details
-
getObjectiveBankRecord
ObjectiveBankRecord getObjectiveBankRecord(Type objectiveBankRecordType) throws OperationFailedException Gets the objective bank record corresponding to the givenObjectiveBankrecordType. This method is used to retrieve an object implementing the requested record. TheobjectiveBankRecordTypemay be theTypereturned ingetRecordTypes()or any of its parents in aTypehierarchy wherehasRecordType(objectiveBankRecordType)istrue.- Parameters:
objectiveBankRecordType- an objective bank record type- Returns:
- the objective bank record
- Throws:
NullArgumentException-objectiveBankRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(objectiveBankRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-