public interface Gradebook extends OsidCatalog
A gradebook defines a collection of grade entries.
Modifier and Type | Method and Description |
---|---|
GradebookRecord |
getGradebookRecord(Type gradebookRecordType)
Gets the gradebook record corresponding to the given
Gradebook
record Type. |
getDescription, getDisplayName, getGenusType, isOfGenusType
getId, isCurrent
getRecordTypes, hasRecordType
getProperties, getPropertiesByRecordType
getBranding, getBrandingIds, getLicense, getProvider, getProviderId
GradebookRecord getGradebookRecord(Type gradebookRecordType) throws OperationFailedException
Gradebook
record Type.
This method is used to retrieve an
object implementing the requested record. The
gradebookRecordType
may be the Type
returned in
getRecordTypes()
or any of its parents in a Type
hierarchy where hasRecordType(gradebookRecordType)
is true
.gradebookRecordType
- a gradebook record typeNullArgumentException
- gradebookRecordType
is null
OperationFailedException
- unable to complete requestUnsupportedException
-
hasRecordType(gradebookRecordType)
is false
mandatory
- This method must be implemented.