OSID Logo
OSID Specifications
personnel batch package
Version 3.0.0
Release Candidate Preview
Interfaceosid.personnel.batch.AppointmentBatchAdminSession
Implementsosid.personnel.AppointmentAdminSession
Description

This session creates, updates, and deletes Appointments in bulk. The data for create and update is provided by the consumer via the form object. OsidForms are requested for each create or update and may not be reused.

Create and update operations differ in their usage. To create an Appointment, an AppointmentForm is requested using getAppointmentFormsForCreate() specifying the desired position, person, record Types or none if no record Types are needed. Each of the returned AppointmentForms will indicate that it is to be used with a create operation and can be used to examine metdata or validate data prior to creation. Once an AppointmentForm is submiited to a create operation, it cannot be reused with another create operation unless the first operation was unsuccessful. Each AppointmentForm corresponds to an attempted transaction.

The AppointmentForms returned from getAppointmentFormsForCreate() may be linked to the originating request through the peer Ids of the AppointmentForm. In the case where there may be duplicates, any AppointmentForm of the same peer Ids may be used for a create operation.

Once a batch of AppointmentForms are submitted for create, a CreateResponse is returned for each AppointmentForm, although the ordering is not defined. Only errors that pertain to the entire create operation are returned from createAppointments(), errors specific to an individual AppointmentForm are indicated in the corresponding CreateResponse. CreateResponses may be linked to the originating AppointmentForm through the AppointmentForm Id .

For updates, AppointmentForms are requested to the Appointment Id that is to be updated using getAppointmentFormsForUpdate() where the reference Id in the AppointmentForm may be used to link the request. Similarly, the AppointmentForm has metadata about the data that can be updated and it can perform validation before submitting the update. The AppointmentForm can only be used once for a successful update and cannot be reused.

Once a batch of AppointmentForms are submitted for update, an UpdateResponse is returned for each AppointmentForm, although the ordering is not defined. Only errors that pertain to the entire update operation are returned from updateAppointments(), errors specific to an individual AppointmentForm are indicated in the corresponding UpdateResponse. UpdateResponses may be linked to the originating AppointmentForm through the AppointmentForm Id.

The delete operations delete Appointments in bulk. To unmap an Appointment from the current Realm, the AppointmentRealmAssignmentSession should be used. These delete operations attempt to remove the Appointment itself thus removing it from all known Realm catalogs. Bulk delete operations return the results in DeleteResponses.

MethodgetAppointmentFormsForCreate
Description

Gets the appointment forms for creating a bunch of new appointments. A form is returned for each supplied position and resource pair.

Parametersosid.personnel.batch.AppointmentPeerListpeersthe relationship peers
osid.type.Type[]appointmentRecordTypesarray of appointment record types to be included in each create operation or an empty list if none
Returnosid.personnel.batch.AppointmentBatchFormListthe appointment forms
ErrorsNOT_FOUNDa personId or positionId is not found
NULL_ARGUMENT peers or appointmentRecordTypes is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
UNSUPPORTEDunable to request forms with given record types
CompliancemandatoryThis method must be implemented.
MethodcreateAppointments
Description

Creates a new set of Appointments. This method returns an error if the entire operation fails. Otherwise, the status of an individual create operation is indicated in the BatchCreateResponse .

Parametersosid.personnel.batch.AppointmentBatchFormListappointmentFormsthe appointment forms
Returnosid.transaction.batch.CreateResponseListthe create responses
ErrorsNULL_ARGUMENT appointmentForms is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodgetAppointmentFormsForUpdate
Description

Gets the appointment forms for updating an existing set of appointments. A new appointment form should be requested for each update transaction.

Parametersosid.id.IdListappointmentIdsthe Ids of the Appointment
Returnosid.personnel.batch.AppointmentBatchFormListthe appointment form
ErrorsNOT_FOUNDan appointmentId is not found
NULL_ARGUMENT appointmentIds is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodupdateAppointments
Description

Updates existing appointments. This method returns an error if the entire operation fails. Otherwise, the status of an individual update operation is indicated in the BatchCreateResponse .

Parametersosid.personnel.batch.AppointmentBatchFormListappointmentFormsthe form containing the elements to be updated
Returnosid.transaction.batch.UpdateResponseListthe update responses
ErrorsNULL_ARGUMENT appointmentForms is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethoddeleteAllAppointments
Description

Deletes all Appointments in this Realm .

Returnosid.transaction.batch.DeleteResponseListthe delete responses
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethoddeleteAppointments
Description

Deletes appointments for the given Ids.

Parametersosid.id.IdListappointmentIdsthe Ids of the appointments to delete
Returnosid.transaction.batch.DeleteResponseListthe delete responses
ErrorsNULL_ARGUMENT appointmentIds is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethoddeleteAppointmentsForPerson
Description

Deletes appointments for the given person.

Parametersosid.id.IdpersonIdan Id of a person
Returnosid.transaction.batch.DeleteResponseListthe delete responses
ErrorsNULL_ARGUMENT personId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethoddeleteAppointmentsForPosition
Description

Deletes appointments for the given position.

Parametersosid.id.IdpositionIdan Id of a position
Returnosid.transaction.batch.DeleteResponseListthe delete responses
ErrorsNULL_ARGUMENT positionId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethoddeleteIneffectiveAppointmentsByDate
Description

Deletes appointments expired before the given date.

Parametersosid.calendaring.DateTimedatea date
Returnosid.transaction.batch.DeleteResponseListthe delete responses
ErrorsNULL_ARGUMENT date is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodaliasAppointments
Description

Adds an Id to an Appointment for the purpose of creating compatibility. The primary Id of the Appointment is determined by the provider. The new Id is an alias to the primary Id. If the alias is a pointer to another appointment, it is reassigned to the given appointment Id.

Parametersosid.transaction.batch.AliasRequestListaliasRequeststhe alias requests
Returnosid.transaction.batch.AliasResponseListthe alias responses
ErrorsNULL_ARGUMENT aliasRequests is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.