Interface PaymentBusinessAssignmentSession
- All Superinterfaces:
AutoCloseable, Closeable, OsidSession, OsidSession
This session provides methods to re-assign Payments to
Businesses. A Payment may appear in multiple Businesses
and removing the last reference to a Payment is the equivalent of
deleting it. Each Business may have its own authorizations
governing who is allowed to operate on it.
Adding a reference of a Payment to another Business is
not a copy operation (eg: does not change its Id).
Like all OsidSessions,
PaymentBusinessAssignmentSessions are dedicated to single processing
threads and a single authenticated user.
-
Method Summary
Modifier and TypeMethodDescriptionvoidassignPaymentToBusiness(Id paymentId, Id businessId) Adds an existingPaymentto aBusiness.booleanTests if this user can alter payment/business mappings.booleancanAssignPaymentToBusiness(Id businessId) Tests if this user can alter payment/business mappings.getAssignableBusinessIds(Id businessId) Gets a list of businesses including and under the given business node in which any payment can be assigned.getAssignableBusinessIdsForPayment(Id businessId, Id paymentId) Gets a list of businesses including and under the given business node in which a specific payment can be assigned.voidreassignPaymentToBusiness(Id paymentId, Id fromBusinessId, Id toBusinessId) Moves aPaymentfrom oneBusinessto another.voidunassignPaymentFromBusiness(Id paymentId, Id businessId) Removes aPaymentfrom aBusiness.Methods inherited from interface OsidSession
closeMethods inherited from interface OsidSession
getAuthenticatedAgent, getAuthenticatedAgentId, getClockRate, getDate, getEffectiveAgent, getEffectiveAgentId, getFormatTypes, getLocales, isAuthenticated, startTransaction, supportsTransactions
-
Method Details
-
canAssignPayments
boolean canAssignPayments()Tests if this user can alter payment/business mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known mapping methods in this session will result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer assignment operations to unauthorized users.- Returns:
falseif mapping is not authorized,trueotherwise- Compliance:
mandatory- This method must be implemented.
-
canAssignPaymentToBusiness
Tests if this user can alter payment/business mappings. A return of true does not guarantee successful authorization. A return of false indicates that it is known mapping methods in this session will result in aPERMISSION_DENIED. This is intended as a hint to an application that may opt not to offer lookup operations to unauthorized users.- Parameters:
businessId- theIdof theBusiness- Returns:
falseif mapping is not authorized,trueotherwise- Throws:
NullArgumentException-businessIdisnull- Compliance:
mandatory- This method must be implemented.
-
getAssignableBusinessIds
Gets a list of businesses including and under the given business node in which any payment can be assigned.- Parameters:
businessId- theIdof theBusiness- Returns:
- list of assignable business
Ids - Throws:
NullArgumentException-businessIdisnullOperationFailedException- unable to complete request- Compliance:
mandatory- This method must be implemented.
-
getAssignableBusinessIdsForPayment
IdList getAssignableBusinessIdsForPayment(Id businessId, Id paymentId) throws OperationFailedException Gets a list of businesses including and under the given business node in which a specific payment can be assigned.- Parameters:
businessId- theIdof theBusinesspaymentId- theIdof thePayment- Returns:
- list of assignable business
Ids - Throws:
NullArgumentException-businessIdorpaymentIdisnullOperationFailedException- unable to complete request- Compliance:
mandatory- This method must be implemented.
-
assignPaymentToBusiness
void assignPaymentToBusiness(Id paymentId, Id businessId) throws AlreadyExistsException, NotFoundException, OperationFailedException, PermissionDeniedException Adds an existingPaymentto aBusiness.- Parameters:
paymentId- theIdof thePaymentbusinessId- theIdof theBusiness- Throws:
AlreadyExistsException-paymentIdis already assigned tobusinessIdNotFoundException-paymentIdorbusinessIdnot foundNullArgumentException-paymentIdorbusinessIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
unassignPaymentFromBusiness
void unassignPaymentFromBusiness(Id paymentId, Id businessId) throws NotFoundException, OperationFailedException, PermissionDeniedException Removes aPaymentfrom aBusiness.- Parameters:
paymentId- theIdof thePaymentbusinessId- theIdof theBusiness- Throws:
NotFoundException-paymentIdorbusinessIdnot found orpaymentIdnot assigned tobusinessIdNullArgumentException-paymentIdorbusinessIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-
reassignPaymentToBusiness
void reassignPaymentToBusiness(Id paymentId, Id fromBusinessId, Id toBusinessId) throws AlreadyExistsException, NotFoundException, OperationFailedException, PermissionDeniedException Moves aPaymentfrom oneBusinessto another. Mappings to otherBusinessesare unaffected.- Parameters:
paymentId- theIdof thePaymentfromBusinessId- theIdof the currentBusinesstoBusinessId- theIdof the destinationBusiness- Throws:
AlreadyExistsException-paymentIdalready assigned totoBusinessIdNotFoundException-paymentId, fromBusinessId, ortoBusinessIdnot found orpaymentIdnot mapped tofromBusinessIdNullArgumentException-paymentId, fromBusinessId, ortoBusinessIdisnullOperationFailedException- unable to complete requestPermissionDeniedException- authorization failure- Compliance:
mandatory- This method must be implemented.
-