Interface Job

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

public interface Job extends OsidGovernator

A Job .

  • Method Details

    • getEmployerIds

      IdList getEmployerIds()
      Gets the Ids of the employers.
      Returns:
      the employer Ids
      Compliance:
      mandatory - This method must be implemented.
    • getEmployers

      ResourceList getEmployers() throws OperationFailedException
      Gets the employers.
      Returns:
      the employers
      Throws:
      OperationFailedException - unable to complete request
      Compliance:
      mandatory - This method must be implemented.
    • getCompetencyIds

      IdList getCompetencyIds()
      Gets the Ids of the competencies.
      Returns:
      the competency Ids
      Compliance:
      mandatory - This method must be implemented.
    • getCompetencies

      CompetencyList getCompetencies() throws OperationFailedException
      Gets the competencies.
      Returns:
      the competencies
      Throws:
      OperationFailedException - unable to complete request
      Compliance:
      mandatory - This method must be implemented.
    • getJobRecord

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