Interface EntryAdminSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
- All Known Subinterfaces:
EntryBatchAdminSession
This session creates, updates, and deletes Entries . 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
Entry , an EntryForm is requested using
getEntryFormForCreate() specifying the desired record Types or
none if no record Types are needed. The returned EntryForm
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 the
EntryForm is submiited to a create operation, it cannot be reused
with another create operation unless the first operation was unsuccessful.
Each EntryForm corresponds to an attempted transaction.
For updates, EntryForms are requested to the Entry
Id that is to be updated using getEntryFormForUpdate() .
Similarly, the EntryForm has metadata about the data that can be
updated and it can perform validation before submitting the update. The
EntryForm can only be used once for a successful update and cannot
be reused.
The delete operations delete Entries . To unmap an
Entry from the current Blog , the
EntryBlogAssignmentSession should be used. These delete operations
attempt to remove the Bid itself thus removing it from all known
Blog catalogs.
This session includes an Id aliasing mechanism to assign an
external Id to an internally assigned Id.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaliasEntry(Id entryId, Id aliasId) Adds anIdto anEntryfor the purpose of creating compatibility.booleanTests if this user can createEntries.booleancanCreateEntryWithRecordTypes(Type[] entryRecordTypes) Tests if this user can create a singleEntryusing the desired record types.booleanTests if this user can deleteEntries.booleanTests if this user can manageIdaliases forEntries.booleanTests if this user can updateEntries.createEntry(EntryForm entryForm) Creates a newEntry.voiddeleteEntry(Id entryId) Deletes anEntry.getBlog()Gets theBlogassociated with this session.Gets theBlogIdassociated with this session.getEntryFormForCreate(Type[] entryRecordTypes) Gets the entry form for creating new entries.getEntryFormForUpdate(Id entryId) Gets the entry form for updating an existing entry.voidupdateEntry(EntryForm entryForm) Updates an existing entry.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
-
getBlogId
Id getBlogId()Gets theBlogIdassociated with this session.- Returns:
- the
Blog Idassociated with this session - Compliance:
mandatory- This method must be implemented.
-
getBlog
Gets theBlogassociated with this session.- Returns:
- the
Blogassociated with this session - Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
canCreateEntries
boolean canCreateEntries()Tests if this user can createEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known creating anEntrywill result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer create operations to an unauthorized user.- Returns:
falseifEntrycreation is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
canCreateEntryWithRecordTypes
Tests if this user can create a singleEntryusing the desired record types. WhileBloggingManager.getEntryRecordTypes()can be used to examine which records are supported, this method tests which record(s) are required for creating a specificEntry. Providing an empty array tests if anEntrycan be created with no records.- Parameters:
entryRecordTypes- array of entry record types- Returns:
trueifEntrycreation using the specifiedTypesis supported,falseotherwise- Throws:
NullArgumentException-entryRecordTypesisnull- Compliance:
mandatory- This method must be implemented.
-
getEntryFormForCreate
EntryForm getEntryFormForCreate(Type[] entryRecordTypes) throws OperationFailedException, PermissionDeniedException Gets the entry form for creating new entries. A new form should be requested for each create transaction.- Parameters:
entryRecordTypes- array of entry record types- Returns:
- the entry form
- Throws:
NullArgumentException-entryRecordTypesisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException- unable to get form for requested record types- Compliance:
mandatory- This method must be implemented.
-
createEntry
Creates a newEntry.- Parameters:
entryForm- the form for thisEntry- Returns:
- the new
Entry - Throws:
IllegalStateException-entryFormalready used in a create transactionInvalidArgumentException- one or more of the form elements is invalidNullArgumentException-entryFormisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException-entryFormdid not originate fromgetEntryFormForCreate()- Compliance:
mandatory- This method must be implemented.
-
canUpdateEntries
boolean canUpdateEntries()Tests if this user can updateEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known updating anEntrywill result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer update operations to an unauthorized user.- Returns:
falseifEntrymodification is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
getEntryFormForUpdate
EntryForm getEntryFormForUpdate(Id entryId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the entry form for updating an existing entry. A new entry form should be requested for each update transaction.- Parameters:
entryId- theIdof theEntry- Returns:
- the entry form
- Throws:
NotFoundException-entryIdis not foundNullArgumentException-entryIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
updateEntry
Updates an existing entry.- Parameters:
entryForm- the form containing the elements to be updated- Throws:
IllegalStateException-entryFormalready used in an update transactionInvalidArgumentException- the form contains an invalid valueNullArgumentException-entryIdorentryFormisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException-entryFormdid not originate fromgetEntryFormForUpdate()- Compliance:
mandatory- This method must be implemented.
-
canDeleteEntries
boolean canDeleteEntries()Tests if this user can deleteEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known deleting anEntrywill result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer delete operations to an unauthorized user.- Returns:
falseifEntrydeletion is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
deleteEntry
void deleteEntry(Id entryId) throws NotFoundException, OperationFailedException, PermissionDeniedException Deletes anEntry.- Parameters:
entryId- theIdof theEntryto remove- Throws:
NotFoundException-entryIdnot foundNullArgumentException-entryIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
canManageEntryAliases
boolean canManageEntryAliases()Tests if this user can manageIdaliases forEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known changing an alias will result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer alias operations to an unauthorized user.- Returns:
falseifEntryaliasing is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
aliasEntry
void aliasEntry(Id entryId, Id aliasId) throws AlreadyExistsException, NotFoundException, OperationFailedException, PermissionDeniedException Adds anIdto anEntryfor the purpose of creating compatibility. The primaryIdof theEntryis determined by the provider. The newIdis an alias to the primaryId. If the alias is a pointer to another entry, it is reassigned to the given entryId.- Parameters:
entryId- theIdof anEntryaliasId- the aliasId- Throws:
AlreadyExistsException-aliasIdis in use as a primaryIdNotFoundException-entryIdnot foundNullArgumentException-aliasIdorentryIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-