Interface PostEntryAdminSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
- All Known Subinterfaces:
PostEntryBatchAdminSession
This session creates, updates, and deletes PostEntries . The
data for create and update is provided by the consumer via the form.
OsidForms are requested for each create or update and may not be
reused.
Create and update operations differ in their usage. To create a
PostEntry , a PostEntryForm is requested using
getPostEntryFormForCreate() specifying the desired post and record
Types or none if no record Types are needed. The returned
PostEntryForm 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 PostEntryForm is submiited to a create operation, it
cannot be reused with another create operation unless the first operation
was unsuccessful. Each PostEntryForm corresponds to an attempted
transaction.
For updates, PostEntryForms are requested to the
PostEntry Id that is to be updated using
getPostEntryFormForUpdate() . Similarly, the PostEntryForm has
metadata about the data that can be updated and it can perform validation
before submitting the update. The PostEntryForm can only be used
once for a successful update and cannot be reused.
The delete operations delete PostEntryForms . To unmap a
PostEntry from the current Business , the
PostEntryBusinessAssignmentSession should be used. These delete
operations attempt to remove the PostEntryForm itself thus
removing it from all known Business catalogs.
This session includes an Id aliasing mechanism to assign an
external Id to an internally assigned Id.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaliasPostEntry(Id postEntryId, Id aliasId) Adds anIdto aPostEntryfor the purpose of creating compatibility.booleanTests if this user can createPostEntries.booleancanCreatePostEntryWithRecordTypes(Type[] postEntryRecordTypes) Tests if this user can create a singlePostEntryusing the desired record types.booleanTests if this user can deletePostEntries.booleanTests if this user can manageIdaliases forPostEntries.booleanTests if this user can updatePostEntries.createPostEntry(PostEntryForm entryForm) Creates a newPostEntry.voiddeletePostEntry(Id postEntryId) Deletes aPostEntry.Gets theBusinessassociated with this session.Gets theBusinessIdassociated with this session.getPostEntryFormForCreate(Id postId, Type[] postEntryRecordTypes) Gets the post entry form for creating new post entries.getPostEntryFormForUpdate(Id postEntryId) Gets the post entry form for updating an existing post entries.voidupdatePostEntry(PostEntryForm entryForm) Updates an existing post entries.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
-
getBusinessId
Id getBusinessId()Gets theBusinessIdassociated with this session.- Returns:
- the
Business Idassociated with this session - Compliance:
mandatory- This method must be implemented.
-
getBusiness
Gets theBusinessassociated with this session.- Returns:
- the business
- Throws:
OperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
canCreatePostEntries
boolean canCreatePostEntries()Tests if this user can createPostEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known creating aPostEntrywill 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:
falseifPostEntrycreation is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
canCreatePostEntryWithRecordTypes
Tests if this user can create a singlePostEntryusing the desired record types. WhileFinancialsPostingManager.getPostEntryRecordTypes()can be used to examine which records are supported, this method tests which record(s) are required for creating a specificPostEntry. Providing an empty array tests if aPostEntrycan be created with no records.- Parameters:
postEntryRecordTypes- array of post entry record types- Returns:
trueifPostEntrycreation using the specified recordTypesis supported,falseotherwise- Throws:
NullArgumentException-postEntryRecordTypesisnull- Compliance:
mandatory- This method must be implemented.
-
getPostEntryFormForCreate
PostEntryForm getPostEntryFormForCreate(Id postId, Type[] postEntryRecordTypes) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the post entry form for creating new post entries. A new form should be requested for each create transaction.- Parameters:
postId- a postIdpostEntryRecordTypes- array of post entry record types- Returns:
- the post entry form
- Throws:
NotFoundException-postIdis not foundNullArgumentException-postIdorpostEntryRecordTypesisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException- unable to get form for requested record types- Compliance:
mandatory- This method must be implemented.
-
createPostEntry
PostEntry createPostEntry(PostEntryForm entryForm) throws OperationFailedException, PermissionDeniedException Creates a newPostEntry.- Parameters:
entryForm- the form for thisPostEntry- Returns:
- the new
PostEntry - 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 fromgetPostEntryFormForCreate()- Compliance:
mandatory- This method must be implemented.
-
canUpdatePostEntries
boolean canUpdatePostEntries()Tests if this user can updatePostEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known updating aPostEntrywill 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:
falseifPostEntrymodification is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
getPostEntryFormForUpdate
PostEntryForm getPostEntryFormForUpdate(Id postEntryId) throws NotFoundException, OperationFailedException, PermissionDeniedException Gets the post entry form for updating an existing post entries. A new post entry form should be requested for each update transaction.- Parameters:
postEntryId- theIdof thePostEntry- Returns:
- the post entry form
- Throws:
NotFoundException-postEntryIdis not foundNullArgumentException-postEntryIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
updatePostEntry
void updatePostEntry(PostEntryForm entryForm) throws OperationFailedException, PermissionDeniedException Updates an existing post entries.- Parameters:
entryForm- the form containing the elements to be updated- Throws:
IllegalStateException-entryFormalready used in an update transactionInvalidArgumentException- the form contains an invalid valueNullArgumentException-entryFormisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failureUnsupportedException-entryFormdid not originate fromgetPostEntryFormForUpdate()- Compliance:
mandatory- This method must be implemented.
-
canDeletePostEntries
boolean canDeletePostEntries()Tests if this user can deletePostEntries. A return of true does not guarantee successful authorization. A return of false indicates that it is known deleting aPostEntrywill 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:
falseifPostEntrydeletion is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
deletePostEntry
void deletePostEntry(Id postEntryId) throws NotFoundException, OperationFailedException, PermissionDeniedException Deletes aPostEntry.- Parameters:
postEntryId- theIdof thePostEntryto remove- Throws:
NotFoundException-postEntryIdnot foundNullArgumentException-postEntryIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
canManagePostEntryAliases
boolean canManagePostEntryAliases()Tests if this user can manageIdaliases forPostEntries. 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:
falseifPostEntryaliasing is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
aliasPostEntry
void aliasPostEntry(Id postEntryId, Id aliasId) throws AlreadyExistsException, NotFoundException, OperationFailedException, PermissionDeniedException Adds anIdto aPostEntryfor the purpose of creating compatibility. The primaryIdof thePostEntryis deentryined by the provider. The newIdperforms as an alias to the primaryId. If the alias is a pointer to another post entry, it is reassigned to the given post entryId.- Parameters:
postEntryId- theIdof aPostEntryaliasId- the aliasId- Throws:
AlreadyExistsException-aliasIdis in use as a primaryIdNotFoundException-postEntryIdnot foundNullArgumentException-postEntryIdoraliasIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-