Interface CommitmentBatchAdminSession
- All Superinterfaces:
AutoCloseable, Closeable, CommitmentAdminSession, OsidSession, OsidSession
This session creates, updates, and deletes Commitments 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 a
Commitment , a CommitmentForm is requested using
getCommitmentFormsForCreate() specifying the event, resource, and desired
record Types or none if no record Types are needed. Each
of the returned CommitmentForms 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 a CommitmentForm is
submiited to a create operation, it cannot be reused with another create
operation unless the first operation was unsuccessful. Each
CommitmentForm corresponds to an attempted transaction.
The CommitmentForms returned from
getCommitmentFormsForCreate() may be linked to the originating request
through the peer Ids of the CommitmentForm . In the case
where there may be duplicates, any CommitmentForm of the same peer
Ids may be used for a create operation.
Once a batch of CommitmentForms are submitted for create, a
CreateResponse is returned for each CommitmentForm ,
although the ordering is not defined. Only errors that pertain to the
entire create operation are returned from createCommitments() ,
errors specific to an individual CommitmentForm are indicated in
the corresponding CreateResponse . CreateResponses may be
linked to the originating CommitmentForm through the
CommitmentForm Id .
For updates, CommitmentForms are requested to the
Commitment Id that is to be updated using
getCommitmentFormsForUpdate() where the reference Id in the
CommitmentForm may be used to link the request. Similarly, the
CommitmentForm has metadata about the data that can be updated and
it can perform validation before submitting the update. The
CommitmentForm can only be used once for a successful update and cannot
be reused.
Once a batch of CommitmentForms are submitted for update, an
UpdateResponse is returned for each CommitmentForm ,
although the ordering is not defined. Only errors that pertain to the
entire update operation are returned from updateCommitments() ,
errors specific to an individual CommitmentForm are indicated in
the corresponding UpdateResponse . UpdateResponses may be
linked to the originating CommitmentForm through the
CommitmentForm Id .
The delete operations delete Commitments in bulk. To unmap a
Commitment from the current Calendar , the
CommitmentCalendarAssignmentSession should be used. These delete
operations attempt to remove the Commitment itself thus removing
it from all known Calendar catalogs. Bulk delete operations return
the results in DeleteResponses .
-
Method Summary
Modifier and TypeMethodDescriptionaliasCommitments(AliasRequestList aliasRequests) Adds anIdto aCommitmentfor the purpose of creating compatibility.createCommitments(CommitmentBatchFormList commitmentForms) Creates a new set ofCommitments.Deletes allCommitmentsin thisCalendar.deleteCommitments(IdList commitmentIds) Deletes commitments for the givenIds.deleteCommitmentsForEvent(Id eventId) Deletes all commitments related to the given event.deleteCommitmentsForResource(Id resourceId) Deletes all commitments related to the given resource.Deletes all commitments expired before the given date.getCommitmentFormsForCreate(CommitmentPeerList peers, Type[] commitmentRecordTypes) Gets the commitmentforms for creating a bunch of new commitments.getCommitmentFormsForUpdate(IdList commitmentIds) Gets the commitment forms for updating an existing set of commitments.updateCommitments(CommitmentBatchFormList commitmentForms) Updates existing commitments.Methods inherited from interface CommitmentAdminSession
aliasCommitment, canCreateCommitments, canCreateCommitmentWithRecordTypes, canDeleteCommitments, canManageCommitmentAliases, canUpdateCommitments, createCommitment, deleteCommitment, getCalendar, getCalendarId, getCommitmentFormForCreate, getCommitmentFormForUpdate, updateCommitmentModifier and TypeMethodDescriptionvoidaliasCommitment(Id commitmentId, Id aliasId) Adds anIdto aCommitmentfor the purpose of creating compatibility.booleanTests if this user can createCommitments.booleancanCreateCommitmentWithRecordTypes(Type[] commitmentRecordTypes) Tests if this user can create a singleCommitmentusing the desired record types.booleanTests if this user can deleteCommitments.booleanTests if this user can manageIdaliases forCommitments.booleanTests if this user can updateCommitments.createCommitment(CommitmentForm commitmentForm) Creates a newCommitment.voiddeleteCommitment(Id commitmentId) Deletes theCommitmentidentified by the givenId.Gets theCalendarassociated with this session.Gets theCalendarIdassociated with this session.getCommitmentFormForCreate(Id eventId, Id resourceId, Type[] commitmentRecordTypes) Gets the commitment form for creating new commitments.getCommitmentFormForUpdate(Id commitmentId) Gets the commitment form for updating an existing commitment.voidupdateCommitment(CommitmentForm commitmentForm) Updates an existing commitment.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactionsModifier and TypeMethodDescriptionGets the agent authenticated to this session.Gets theIdof the agent authenticated to this session.Gets the rate of the service clock.getDate()Gets the service date which may be the current date or the effective date in which this session exists.Gets the effective agent in use by this session.Gets theIdof the effective agent in use by this session.Gets theDisplayTextformatTypepreference in effect for this session.Gets the locale indicating the localization preferences in effect for this session.booleanTests if an agent is authenticated to this session.Starts a new transaction for this sesson.booleanTests for the availability of transactions.
-
Method Details
-
getCommitmentFormsForCreate
CommitmentBatchFormList getCommitmentFormsForCreate(CommitmentPeerList peers, Type[] commitmentRecordTypes) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the commitmentforms for creating a bunch of new commitments. A form is returned for each supplied event and resource pair.- Parameters:
peers- a list of commitment peerscommitmentRecordTypes- array of commitment record types to be included in each create operation or an empty list if none- Returns:
- the commitment forms
- Throws:
NotFoundException- aneventIdorresourceIdis not foundNullArgumentException-peersorcommitmentRecordTypesisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException- unable to request forms with given record types- Compliance:
mandatory- This method must be implemented.
-
createCommitments
CreateResponseList createCommitments(CommitmentBatchFormList commitmentForms) throws OperationFailedException, PermissionDeniedException Creates a new set ofCommitments. This method returns an error if the entire operation fails. Otherwise, the status of an individual create operation is indicated in theBatchCreateResponse.- Parameters:
commitmentForms- the commitment forms- Returns:
- the create responses
- Throws:
NullArgumentException-commitmentFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getCommitmentFormsForUpdate
CommitmentBatchFormList getCommitmentFormsForUpdate(IdList commitmentIds) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the commitment forms for updating an existing set of commitments. A new commitmentform should be requested for each update transaction.- Parameters:
commitmentIds- theIdsof theCommitment- Returns:
- the commitment form
- Throws:
NotFoundException- acommitmentIdis not foundNullArgumentException-commitmentIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
updateCommitments
UpdateResponseList updateCommitments(CommitmentBatchFormList commitmentForms) throws OperationFailedException, PermissionDeniedException Updates existing commitments. This method returns an error if the entire operation fails. Otherwise, the status of an individual update operation is indicated in theBatchCreateResponse.- Parameters:
commitmentForms- the form containing the elements to be updated- Returns:
- the update responses
- Throws:
NullArgumentException-commitmentFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteAllCommitments
DeleteResponseList deleteAllCommitments() throws OperationFailedException, PermissionDeniedExceptionDeletes allCommitmentsin thisCalendar.- Returns:
- the delete responses
- Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteCommitments
DeleteResponseList deleteCommitments(IdList commitmentIds) throws OperationFailedException, PermissionDeniedException Deletes commitments for the givenIds.- Parameters:
commitmentIds- theIdsof the commitments to delete- Returns:
- the delete responses
- Throws:
NullArgumentException-commitmentIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteCommitmentsForEvent
DeleteResponseList deleteCommitmentsForEvent(Id eventId) throws OperationFailedException, PermissionDeniedException Deletes all commitments related to the given event.- Parameters:
eventId- anIdof an event- Returns:
- the delete responses
- Throws:
NullArgumentException-eventIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteCommitmentsForResource
DeleteResponseList deleteCommitmentsForResource(Id resourceId) throws OperationFailedException, PermissionDeniedException Deletes all commitments related to the given resource.- Parameters:
resourceId- anIdof a resource- Returns:
- the delete responses
- Throws:
NullArgumentException-resourceIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteIneffectiveCommitmentsByDate
DeleteResponseList deleteIneffectiveCommitmentsByDate(DateTime date) throws OperationFailedException, PermissionDeniedException Deletes all commitments expired before the given date.- Parameters:
date- a date- Returns:
- the delete responses
- Throws:
NullArgumentException-dateisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
aliasCommitments
AliasResponseList aliasCommitments(AliasRequestList aliasRequests) throws OperationFailedException, PermissionDeniedException Adds anIdto aCommitmentfor the purpose of creating compatibility. The primaryIdof theCommitmentis determined by the provider. The newIdis an alias to the primaryId. If the alias is a pointer to another commitment, it is reassigned to the given commitmentId.- Parameters:
aliasRequests- the alias requests- Returns:
- the alias responses
- Throws:
NullArgumentException-aliasRequestsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-