DoPaymentActionsPolicyCmdImplpublic class CheckPaymentAcceptCLCmdImpl extends BusinessPolicyCommandImpl implements CheckPaymentAcceptPolicyCmd
CheckPaymentAcceptPolicy business policy
command implementation class is the default implementation class
for checking if the payment previously authorized to use the CreditLine is still valid.
Parameters:
| Parameter Name | Type | Descriptions |
| abOrder | OrderAccessBean | The OrderAccessBean |
| dApproveAmount | BigDecimal | The approved amount to be checked |
| errorViewName | String | Optional error view name passed in by the Caller. |
Default Error View Name:
ErrorCodes:
PaymentConstants.ERR_CODE_CREDIT_LINE_NOT_AVAILABLE (1981)
- Credit Line not available or no longer active.
This command uses the following AccessBeans:
This command does not call other TaskCommand.
defaultCommandClassName, ERRTASK_NAME, NAME| Constructor and Description |
|---|
CheckPaymentAcceptCLCmdImpl()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getReturnCode()
Deprecated.
Returns the String return code indicating the payment approval status of the specified order.
|
boolean |
isReadyToCallExecute()
Deprecated.
This method is called by the Command Framework to check if all basic mandatory
parameters have been set for this command.
|
void |
performExecute()
Deprecated.
Performs the main business logic of the command.
|
void |
reset()
Deprecated.
Resets the instance variables of the command.
|
void |
setApproveAmount(java.math.BigDecimal approveAmount)
Deprecated.
Sets the approveAmount property of the command.
|
void |
setErrorViewName(java.lang.String sEVN)
Deprecated.
Sets the error view to be used to report error.
|
void |
setOrder(OrderAccessBean ab)
Deprecated.
Sets the order property of the command.
|
void |
setReturnCode(java.lang.String s)
Deprecated.
Sets the return code to be returned to the caller of the command.
|
getPolicyId, getRequestProperties, setPolicyId, setRequestPropertiesaccessControlCheck, checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, execute, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getObjectSize, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParametersexecuteFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, setObjectSize, unionDependencies, updateCachegetCommandTarget, getCommandTargetName, getTargetPolicy, hasOutputProperties, setCommandTarget, setCommandTargetName, setHasOutputProperties, setOutputProperties, setTargetPolicyequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetPolicyId, getRequestProperties, setPolicyId, setRequestPropertiesexecuteFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, updateCachegetCommandTarget, getCommandTargetName, hasOutputProperties, setCommandTarget, setCommandTargetName, setOutputPropertiescheckIsAllowed, checkResourcePermission, createCommandExecutionEvent, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameterspublic java.lang.String getReturnCode()
For this command implementation the possible return codes are:
PaymentConstants.APPROVAL_YES - The authorization is still valid and the Approved Amount is the same as the Order Amount.
PaymentConstants.APPROVAL_NO - The authorization is no longer valid. Re-authorization is not possible.
getReturnCode in interface CheckPaymentAcceptPolicyCmdpublic boolean isReadyToCallExecute()
isReadyToCallExecute in interface com.ibm.websphere.command.CommandisReadyToCallExecute in class AbstractECTargetableCommandpublic void performExecute()
throws ECException
performExecute in interface ECCommandperformExecute in interface com.ibm.websphere.command.TargetableCommandperformExecute in class AbstractECTargetableCommandECExceptionpublic void reset()
This is useful if the command instance is to be called multiple times with different command parameters.
reset in interface com.ibm.websphere.command.Commandreset in class AbstractECTargetableCommandpublic void setApproveAmount(java.math.BigDecimal approveAmount)
setApproveAmount in interface CheckPaymentAcceptPolicyCmdapproveAmount - the approved amount to be checkedpublic void setErrorViewName(java.lang.String sEVN)
setErrorViewName in interface CheckPaymentAcceptPolicyCmdsEVN - the Error View nameCheckPaymentAcceptPolicyCmd.ERRTASK_NAMEpublic void setOrder(OrderAccessBean ab)
setOrder in interface CheckPaymentAcceptPolicyCmdab - the OrderAccessBean representing the order for which the approved amount is to be checkedpublic void setReturnCode(java.lang.String s)
s - the return code stringgetReturnCode()