Interface Cookbook

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

public interface Cookbook extends OsidCatalog

An Cookbook represents a collection of awards and procedures. Like all OSID objects, a Cookbook is identified by its Id and any persisted references should use the Id .

  • Method Details

    • getCookbookRecord

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