public interface BookBatchAdminSession extends BookAdminSession
This session creates, updates, and deletes Books 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
Book, an BookForm is requested using
getBookFormsForCreate() specifying the desired record Types
or none if no record Types are needed. Each of the
returned BookForms 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 BookForm is submiited to a
create operation, it cannot be reused with another create operation unless
the first operation was unsuccessful. Each BookForm
corresponds to an attempted transaction.
The BookForms returned from
getBookFormsForCreate() may be linked to the originating request
through the peer Ids of the BookForm. In the
case where there may be duplicates, any BookForm of the
same peer Ids may be used for a create operation.
Once a batch of BookForms are submitted for create, a
CreateResponse is returned for each BookForm,
although the ordering is not defined. Only errors that pertain to
the entire create operation are returned from createBooks(),
errors specific to an individual BookForm are
indicated in the corresponding CreateResponse.
CreateResponses may be linked to the originating BookForm
through the BookForm Id .
For updates, BookForms are requested to the Book
Id that is to be updated using
getBookFormsForUpdate() where the reference Id in
the BookForm may be used to link the request. Similarly,
the BookForm has metadata about the data that can be
updated and it can perform validation before submitting the update. The
BookForm can only be used once for a successful update and
cannot be reused.
Once a batch of BookForms are submitted for update, an
UpdateResponse is returned for each BookForm,
although the ordering is not defined. Only errors that pertain to
the entire update operation are returned from updateBooks(),
errors specific to an individual BookForm are
indicated in the corresponding UpdateResponse.
UpdateResponses may be linked to the originating BookForm
through the BookForm Id.
The delete operations delete Books in bulk. Bulk delete
operations return the results in DeleteResponses.
| Modifier and Type | Method and Description |
|---|---|
AliasResponseList |
aliasBooks(AliasRequestList aliasRequests)
Adds an
Id to an Book for the purpose of
creating compatibility. |
CreateResponseList |
createBooks(BookBatchFormList bookForms)
Creates a new set of
Books. |
DeleteResponseList |
deleteAllBooks()
Deletes all
Books. |
DeleteResponseList |
deleteBooks(IdList bookIds)
Deletes books for the given
Ids. |
BookBatchFormList |
getBookFormsForCreate(long number,
Type[] bookRecordTypes)
Gets the book forms for creating a bunch of new books.
|
BookBatchFormList |
getBookFormsForUpdate(IdList bookIds)
Gets the book forms for updating an existing set of books.
|
UpdateResponseList |
updateBooks(BookBatchFormList bookForms)
Updates existing books.
|
aliasBook, canCreateBooks, canCreateBookWithRecordTypes, canDeleteBooks, canManageBookAliases, canUpdateBooks, createBook, deleteBook, getBookFormForCreate, getBookFormForUpdate, updateBookgetAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatType, getLocale, isAuthenticated, startTransaction, supportsTransactionscloseBookBatchFormList getBookFormsForCreate(long number, Type[] bookRecordTypes) throws OperationFailedException, PermissionDeniedException
number - the number of forms to retrievebookRecordTypes - array of book record types to be included in
each create operation or an empty list if noneNullArgumentException - bookRecordTypes
is null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failureUnsupportedException - unable to request forms with
given record typesmandatory - This method must be implemented. CreateResponseList createBooks(BookBatchFormList bookForms) throws OperationFailedException, PermissionDeniedException
Books. This method returns an
error if the entire operation fails. Otherwise, the status of an
individual create operation is indicated in the
BatchCreateResponse .bookForms - the book formsNullArgumentException - bookForms is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. BookBatchFormList getBookFormsForUpdate(IdList bookIds) throws NotFoundException, OperationFailedException, PermissionDeniedException
bookIds - the Ids of the Book NotFoundException - an bookId is not
foundNullArgumentException - bookIds is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. UpdateResponseList updateBooks(BookBatchFormList bookForms) throws OperationFailedException, PermissionDeniedException
BatchCreateResponse .bookForms - the form containing the elements to be updatedNullArgumentException - bookForms is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. DeleteResponseList deleteAllBooks() throws OperationFailedException, PermissionDeniedException
Books. OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. DeleteResponseList deleteBooks(IdList bookIds) throws OperationFailedException, PermissionDeniedException
Ids. bookIds - the Ids of the books to deleteNullArgumentException - bookIds is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented. AliasResponseList aliasBooks(AliasRequestList aliasRequests) throws OperationFailedException, PermissionDeniedException
Id to an Book for the purpose of
creating compatibility. The primary Id of the
Book is determined by the provider. The new Id
is an alias to the primary Id. If the alias is a
pointer to another book, it is reassigned to the given entry
Id. aliasRequests - the alias requestsNullArgumentException - aliasRequests is
null OperationFailedException - unable to complete requestPermissionDeniedException - authorization failuremandatory - This method must be implemented.