Interface RepositoryBatchAdminSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession, RepositoryAdminSession
This session creates, updates, and deletes Repositories 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
Repository , a RepositoryForm is requested using
getRepositoryFormsForCreate() specifying the desired record Types
or none if no record Types are needed. Each of the returned
RepositoryForms 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 RepositoryForm is submiited to a create
operation, it cannot be reused with another create operation unless the
first operation was unsuccessful. Each RepositoryForm corresponds
to an attempted transaction.
The RepositoryForms returned from
getRepositoryFormsForCreate() may be linked to the originating request
through the peer Ids of the RepositoryForm . In the case
where there may be duplicates, any RepositoryForm of the same peer
Ids may be used for a create operation.
Once a batch of RepositoryForms are submitted for create, a
CreateResponse is returned for each RepositoryForm ,
although the ordering is not defined. Only errors that pertain to the
entire create operation are returned from createRepositories() ,
errors specific to an individual RepositoryForm are indicated in
the corresponding CreateResponse . CreateResponses may be
linked to the originating RepositoryForm through the
RepositoryForm Id .
For updates, RepositoryForms are requested to the
Repository Id that is to be updated using
getRepositoryFormsForUpdate() where the reference Id in the
RepositoryForm may be used to link the request. Similarly, the
RepositoryForm has metadata about the data that can be updated and
it can perform validation before submitting the update. The
RepositoryForm can only be used once for a successful update and cannot
be reused.
Once a batch of RepositoryForms are submitted for update, an
UpdateResponse is returned for each RepositoryForm ,
although the ordering is not defined. Only errors that pertain to the
entire update operation are returned from updateRepositories() ,
errors specific to an individual RepositoryForm are indicated in
the corresponding UpdateResponse . UpdateResponses may be
linked to the originating RepositoryForm through the
RepositoryForm Id .
The delete operations delete Repositories in bulk. Bulk delete
operations return the results in DeleteResponses .
-
Method Summary
Modifier and TypeMethodDescriptionaliasRepositories(AliasRequestList aliasRequests) Adds anIdto aRepositoryfor the purpose of creating compatibility.createRepositories(RepositoryBatchFormList repositoryForms) Creates a new set ofRepositories.Deletes allRepositories.deleteRepositories(IdList repositoryIds) Deletes repositories for the givenIds.getRepositoryFormsForCreate(long number, Type[] repositoryRecordTypes) Gets the repository forms for creating a bunch of new repositories.getRepositoryFormsForUpdate(IdList repositoryIds) Gets the repository forms for updating an existing set of repositories.updateRepositories(RepositoryBatchFormList repositoryForms) Updates existing repositories.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 RepositoryAdminSession
aliasRepository, canCreateRepositories, canCreateRepositoryWithRecordTypes, canDeleteRepositories, canManageRepositoryAliases, canUpdateRepositories, createRepository, deleteRepository, getRepositoryFormForCreate, getRepositoryFormForUpdate, updateRepositoryModifier and TypeMethodDescriptionvoidaliasRepository(Id repositoryId, Id aliasId) Adds anIdto aRepositoryfor the purpose of creating compatibility.booleanTests if this user can createRepositories.booleancanCreateRepositoryWithRecordTypes(Type[] repositoryRecordTypes) Tests if this user can create a singleRepositoryusing the desired record types.booleanTests if this user can deleteRepositories.booleanTests if this user can manageIdaliases for repositories.booleanTests if this user can updateRepositories.createRepository(RepositoryForm repositoryForm) Creates a newRepository.voiddeleteRepository(Id repositoryId) Deletes aRepository.getRepositoryFormForCreate(Type[] repositoryRecordTypes) Gets the repository form for creating new repositories.getRepositoryFormForUpdate(Id repositoryId) Gets the repository form for updating an existing repository.voidupdateRepository(RepositoryForm repositoryForm) Updates an existing repository.
-
Method Details
-
getRepositoryFormsForCreate
RepositoryBatchFormList getRepositoryFormsForCreate(long number, Type[] repositoryRecordTypes) throws OperationFailedException, PermissionDeniedException Gets the repository forms for creating a bunch of new repositories.- Parameters:
number- the number of forms to retrieverepositoryRecordTypes- array of repository record types to be included in each create operation or an empty list if none- Returns:
- the repository forms
- Throws:
NullArgumentException-repositoryRecordTypesisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException- unable to request forms with given record types- Compliance:
mandatory- This method must be implemented.
-
createRepositories
CreateResponseList createRepositories(RepositoryBatchFormList repositoryForms) throws OperationFailedException, PermissionDeniedException Creates a new set ofRepositories. This method returns an error if the entire operation fails. Otherwise, the status of an individual create operation is indicated in theBatchCreateResponse.- Parameters:
repositoryForms- the repository forms- Returns:
- the create responses
- Throws:
NullArgumentException-repositoryFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
getRepositoryFormsForUpdate
RepositoryBatchFormList getRepositoryFormsForUpdate(IdList repositoryIds) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the repository forms for updating an existing set of repositories. A new repository form should be requested for each update transaction.- Parameters:
repositoryIds- theIdsof theRepository- Returns:
- the repository form
- Throws:
NotFoundException- arepositoryIdis not foundNullArgumentException-repositoryIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
updateRepositories
UpdateResponseList updateRepositories(RepositoryBatchFormList repositoryForms) throws OperationFailedException, PermissionDeniedException Updates existing repositories. This method returns an error if the entire operation fails. Otherwise, the status of an individual update operation is indicated in theBatchCreateResponse.- Parameters:
repositoryForms- the form containing the elements to be updated- Returns:
- the update responses
- Throws:
NullArgumentException-repositoryFormsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteAllRepositories
DeleteResponseList deleteAllRepositories() throws OperationFailedException, PermissionDeniedExceptionDeletes allRepositories.- Returns:
- the delete responses
- Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
deleteRepositories
DeleteResponseList deleteRepositories(IdList repositoryIds) throws OperationFailedException, PermissionDeniedException Deletes repositories for the givenIds.- Parameters:
repositoryIds- theIdsof the repositories to delete- Returns:
- the delete responses
- Throws:
NullArgumentException-repositoryIdsisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
aliasRepositories
AliasResponseList aliasRepositories(AliasRequestList aliasRequests) throws OperationFailedException, PermissionDeniedException Adds anIdto aRepositoryfor the purpose of creating compatibility. The primaryIdof theRepositoryis determined by the provider. The newIdis an alias to the primaryId. If the alias is a pointer to another repository, it is reassigned to the given repositoryId.- 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.
-