Interface Family

All Superinterfaces:
Browsable, Extensible, Federateable, Identifiable, OsidCatalog, OsidObject, Sourceable

public interface Family extends OsidCatalog

A Family represents a collection of relationships. Like all OSID objects, a Family is identified by its Id and any persisted references should use the Id .

  • Method Details

    • getFamilyRecord

      FamilyRecord getFamilyRecord(Type familyRecordType) throws OperationFailedException, PermissionDeniedException
      Gets the famly record corresponding to the given Family record Type .This method is used to retrieve an object implementing the requested record. The familyRecordType may be the Type returned in getRecordTypes() or any of its parents in a Type hierarchy where hasRecordType(familyRecordType) is true .
      Parameters:
      familyRecordType - the type of family record to retrieve
      Returns:
      the family record
      Throws:
      NullArgumentException - familyRecordType is null
      OperationFailedException - unable to complete request
      PermissionDeniedException - authorization failure occurred
      UnsupportedException - hasRecordType(familyRecordType) is false
      Compliance:
      mandatory - This method must be implemented.