Interface Dictionary
- All Superinterfaces:
Browsable, Extensible, Federateable, Identifiable, OsidCatalog, OsidObject, Sourceable
A Dictionary represents a collection of entries. Like all OSID
objects, a Dictionary is identified by its Id and any
persisted references should use the Id.
Like all OsidObjects, Dictionary is managed by its
OsidSessions and may not be accessed by concurrent processing
threads.
-
Method Summary
Modifier and TypeMethodDescriptiongetDictionaryRecord(Type dictionaryRecordType) Gets the dictionary record corresponding to the givenDictionaryrecordType.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
-
getDictionaryRecord
Gets the dictionary record corresponding to the givenDictionaryrecordType. This method is used to retrieve an object implementing the requested record. ThedictionaryRecordTypemay be theTypereturned ingetRecordTypes()or any of its parents in aTypehierarchy wherehasRecordType(dictionaryRecordType)istrue.- Parameters:
dictionaryRecordType- the type of the record to retrieve- Returns:
- the dictionary record
- Throws:
NullArgumentException-dictionaryRecordTypeisnullOperationFailedException- unable to complete requestUnsupportedException-hasRecordType(dictionaryRecordType)isfalse- Compliance:
mandatory- This method must be implemented.
-