Interface Catalogue

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

public interface Catalogue extends OsidCatalog

A Catalogue represents a collection of canonical units and offerings. Like all OsidObjects , a Catalogue is identified by its Id and any persisted references should use the Id .

  • Method Details

    • getCatalogueRecord

      CatalogueRecord getCatalogueRecord(Type catalogueRecordType) throws OperationFailedException
      Gets the record corresponding to the given Catalogue record Type . This method is used to retrieve an object implementing the requested record. The catalogueRecordType may be the Type returned in getRecordTypes() or any of its parents in a Type hierarchy where hasRecordType(catalogueRecordType) is true .
      Parameters:
      catalogueRecordType - the type of catalogue record to retrieve
      Returns:
      the catalogue record
      Throws:
      NullArgumentException - catalogueRecordType is null
      OperationFailedException - unable to complete request
      UnsupportedException - hasRecordType(catalogueRecordType) is false
      Compliance:
      mandatory - This method must be implemented.