Interface RenovationBatchAdminSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession, RenovationAdminSession
This session creates, updates, and deletes Renovations 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
Renovation , a RenovationForm is requested using
getRenovationFormsForCreate() specifying the desired record Types
or none if no record Types are needed. Each of the returned
RenovationForms 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 RenovationForm is submiited to a create
operation, it cannot be reused with another create operation unless the
first operation was unsuccessful. Each RenovationForm corresponds
to an attempted transaction.
The RenovationForms returned from
getRenovationFormsForCreate() may be linked to the originating request
through the peer Ids of the RenovationForm . In the case
where there may be duplicates, any RenovationForm of the same peer
Ids may be used for a create operation.
Once a batch of RenovationForms are submitted for create, a
CreateResponse is returned for each RenovationForm ,
although the ordering is not defined. Only errors that pertain to the
entire create operation are returned from createRenovations() ,
errors specific to an individual RenovationForm are indicated in
the corresponding CreateResponse . CreateResponses may be
linked to the originating RenovationForm through the
RenovationForm Id .
For updates, RenovationForms are requested to the
Renovation Id that is to be updated using
getRenovationFormsForUpdate() where the reference Id in the
RenovationForm may be used to link the request. Similarly, the
RenovationForm has metadata about the data that can be updated and
it can perform validation before submitting the update. The
RenovationForm can only be used once for a successful update and cannot
be reused.
Once a batch of RenovationForms are submitted for update, an
UpdateResponse is returned for each RenovationForm ,
although the ordering is not defined. Only errors that pertain to the
entire update operation are returned from updateRenovations() ,
errors specific to an individual RenovationForm are indicated in
the corresponding UpdateResponse . UpdateResponses may be
linked to the originating RenovationForm through the
RenovationForm Id .
The delete operations delete Renovations in bulk. To unmap a
Renovation from the current Campus , the
RenovationCampusAssignmentSession should be used. These delete operations
attempt to remove the Renovation itself thus removing it from all
known Campus catalogs. Bulk delete operations return the results
in DeleteResponses .
-
Method Summary
Modifier and TypeMethodDescriptionaliasRenovations(AliasRequestList aliasRequests) Adds anIdto aRenovationfor the purpose of creating compatibility.createRenovations(RenovationBatchFormList renovationForms) Creates a new set ofRenovations.Deletes allRenovationsin thisCampus.Deletes renovations expired before the given date.deleteRenovations(IdList renovationIds) Deletes renovations for the givenIds.getRenovationFormsForCreate(long number, Type[] renovationRecordTypes) Gets the renovation forms for creating a bunch of new renovations.getRenovationFormsForUpdate(IdList renovationIds) Gets the renovation forms for updating an existing set of renovations.updateRenovations(RenovationBatchFormList renovationForms) Updates existing renovations.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.Methods inherited from interface RenovationAdminSession
aliasRenovation, canCreateRenovations, canCreateRenovationWithRecordTypes, canDeleteRenovations, canManageRenovationAliases, canUpdateRenovations, createRenovation, deleteRenovation, getCampus, getCampusId, getRenovationFormForCreate, getRenovationFormForUpdate, updateRenovationModifier and TypeMethodDescriptionvoidaliasRenovation(Id renovationId, Id aliasId) Adds anIdto aRenovationfor the purpose of creating compatibility.booleanTests if this user can createRenovations.booleancanCreateRenovationWithRecordTypes(Type[] renovationRecordTypes) Tests if this user can create a singleRenovationusing the desired record types.booleanTests if this user can deleteRenovationsA return of true does not guarantee successful authorization.booleanTests if this user can manageIdaliases forRenovations.booleanTests if this user can updateRenovations.createRenovation(RenovationForm renovationForm) Creates a newRenovation.voiddeleteRenovation(Id renovationId) Deletes aRenovation.Gets theCampusassociated with this session.Gets theCampusIdassociated with this session.getRenovationFormForCreate(Type[] renovationRecordTypes) Gets the renovation form for creating new renovations.getRenovationFormForUpdate(Id renovationId) Gets the renovation form for updating an existing renovation.voidupdateRenovation(RenovationForm renovationForm) Updates an existing renovation.
-
Method Details
-
getRenovationFormsForCreate
RenovationBatchFormList getRenovationFormsForCreate(long number, Type[] renovationRecordTypes) throws OperationFailedException, PermissionDeniedException Gets the renovation forms for creating a bunch of new renovations.- Parameters:
number- the number of forms to retrieverenovationRecordTypes- array of renovation record types to be included in each create operation or an empty list if none- Returns:
- the renovation forms
- Throws:
NullArgumentException-renovationRecordTypesisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException- unable to request forms with given record types- Compliance:
mandatory- This method must be implemented.
-
createRenovations
CreateResponseList createRenovations(RenovationBatchFormList renovationForms) throws OperationFailedException, PermissionDeniedException Creates a new set ofRenovations. This method returns an error if the entire operation fails. Otherwise, the status of an individual create operation is indicated in theBatchCreateResponse.- Parameters:
renovationForms- the renovation forms- Returns:
- the create responses
- Throws:
NullArgumentException-renovationFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRenovationFormsForUpdate
RenovationBatchFormList getRenovationFormsForUpdate(IdList renovationIds) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the renovation forms for updating an existing set of renovations. A new renovation form should be requested for each update transaction.- Parameters:
renovationIds- theIdsof theRenovation- Returns:
- the renovation form
- Throws:
NotFoundException- arenovationIdis not foundNullArgumentException-renovationIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
updateRenovations
UpdateResponseList updateRenovations(RenovationBatchFormList renovationForms) throws OperationFailedException, PermissionDeniedException Updates existing renovations. This method returns an error if the entire operation fails. Otherwise, the status of an individual update operation is indicated in theBatchCreateResponse.- Parameters:
renovationForms- the form containing the elements to be updated- Returns:
- the update responses
- Throws:
NullArgumentException-renovationFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteAllRenovations
DeleteResponseList deleteAllRenovations() throws OperationFailedException, PermissionDeniedExceptionDeletes allRenovationsin thisCampus.- Returns:
- the delete responses
- Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteRenovations
DeleteResponseList deleteRenovations(IdList renovationIds) throws OperationFailedException, PermissionDeniedException Deletes renovations for the givenIds.- Parameters:
renovationIds- theIdsof the renovations to delete- Returns:
- the delete responses
- Throws:
NullArgumentException-renovationIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteIneffectiveRenovationsByDate
DeleteResponseList deleteIneffectiveRenovationsByDate(DateTime date) throws OperationFailedException, PermissionDeniedException Deletes renovations 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.
-
aliasRenovations
AliasResponseList aliasRenovations(AliasRequestList aliasRequests) throws OperationFailedException, PermissionDeniedException Adds anIdto aRenovationfor the purpose of creating compatibility. The primaryIdof theRenovationis determined by the provider. The newIdis an alias to the primaryId. If the alias is a pointer to another renovation, it is reassigned to the given entryId.- 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.
-