public class DebitAccountCmdImpl extends TaskCommandImpl implements DebitAccountCmd
DebitAccountCmdImpl
Task Command implementation class is called
to debit the customer account through an external accounting system.
This sample implementation class only generates an Order XML with information about the order and stores the XML as a String in the ORDPAYMTHD table. It is intended for third-parties to extend and write implementation code for integration with an external accounting system.
defaultCommandClassName, ERRTASK_NAME, NAME
Constructor and Description |
---|
DebitAccountCmdImpl() |
Modifier and Type | Method and Description |
---|---|
boolean |
isReadyToCallExecute()
This method is called by the Command Framework to check if all basic mandatory
parameters have been set for this command.
|
void |
performExecute()
Performs the main business logic of the command.
|
void |
reset()
Resets the instance variables of the command.
|
void |
setDepositAmount(java.math.BigDecimal depositAmount)
Sets the amount to be deposited in the currency of the order.
|
void |
setErrorViewName(java.lang.String sEVN)
Sets the error view to be used to report error.
|
void |
setOrder(OrderAccessBean ab)
Sets the order for which payment is to be deposited.
|
accessControlCheck, checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, execute, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getObjectSize, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
executeFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, setObjectSize, unionDependencies, updateCache
getCommandTarget, getCommandTargetName, getTargetPolicy, hasOutputProperties, setCommandTarget, setCommandTargetName, setHasOutputProperties, setOutputProperties, setTargetPolicy
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
executeFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, updateCache
getCommandTarget, getCommandTargetName, hasOutputProperties, setCommandTarget, setCommandTargetName, setOutputProperties
checkIsAllowed, checkResourcePermission, createCommandExecutionEvent, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParameters
public boolean isReadyToCallExecute()
isReadyToCallExecute
in interface com.ibm.websphere.command.Command
isReadyToCallExecute
in class AbstractECTargetableCommand
public void performExecute() throws ECException
performExecute
in interface ECCommand
performExecute
in interface com.ibm.websphere.command.TargetableCommand
performExecute
in class AbstractECTargetableCommand
ECException
public 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.Command
reset
in class AbstractECTargetableCommand
public void setDepositAmount(java.math.BigDecimal depositAmount)
setDepositAmount
in interface DebitAccountCmd
depositAmount
- the deposit amountpublic void setErrorViewName(java.lang.String sEVN)
setErrorViewName
in interface DebitAccountCmd
sEVN
- the Error View nameDebitAccountCmd.ERRTASK_NAME
public void setOrder(OrderAccessBean ab)
setOrder
in interface DebitAccountCmd
ab
- the OrderAccessBean of the order