Interface Agenda

All Superinterfaces:
Browsable, Extensible, Identifiable, Operable, OsidObject, OsidRule

public interface Agenda extends OsidRule

An Agenda . An Agenda is a set of Instructions for some list of checks in a business process. The condition input record types may be used to constrain valid Checks or may reflect the Checks mapped to it via Instructions .

  • Method Details

    • getAgendaRecord

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