public interface CSRDisplayRefundPaymentInfoCmd extends BusinessPolicyCommand
Usage:
CSRReturnSummaryDataBean| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
COPYRIGHT
IBM copyright notice field.
|
static java.lang.String |
defaultCommandClassName
Default implementation of this command.
|
static java.lang.String |
NAME
Name of this command.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.Vector |
getCreditAccountInformation()
Gets refund mechanism information for the set RMA.
|
void |
populateCreditAccountInformation()
Populates the object's data structure with refund mechanism dependent information.
|
void |
setRMA(RMAAccessBean abRMA)
Sets the RMA for which to get refund mechanism information.
|
getPolicyId, getRequestProperties, setPolicyId, setRequestPropertiesexecuteFromCache, getCaller, getEntryInfo, getId, getSharingPolicy, postExecute, preExecute, setCaller, updateCachegetCommandTarget, getCommandTargetName, hasOutputProperties, performExecute, setCommandTarget, setCommandTargetName, setOutputPropertiescheckIsAllowed, checkResourcePermission, createCommandExecutionEvent, getAccCheck, getCommandContext, getCommandIfName, getCommandName, getCommandStoreId, getDefaultProperties, getExceptionInvokeParameters, getPostInvokeParameters, getPreInvokeParameters, getResources, getStoreId, getUser, getUserId, performExecute, setAccCheck, setCommandContext, setCommandIfName, setCommandStoreId, setDefaultProperties, validateParametersstatic final java.lang.String COPYRIGHT
static final java.lang.String NAME
static final java.lang.String defaultCommandClassName
java.util.Vector getCreditAccountInformation()
Vector creditInfo = getCreditAccountInformation()
if ( creditInfo != null && creditInfo.size() != 0 )
{
for (int i = 0; i < creditInfo.size(); i++ )
{
Hashtable ht1 = (Hashtable) creditInfo.elementAt(i);
Enumeration enum = ht1.elements();
Hashtable ht2 = (Hashtable) enum.nextElement(); // only 1 element in this hashtable
String labelKey = (String) ht2.get("LABEL_KEY"); // gets the label key from the ReturnNLS.properties file
String value = (String) ht2.get("VALUE"); // gets the value
}
}
void populateCreditAccountInformation()
throws java.lang.Exception
java.lang.Exceptionvoid setRMA(RMAAccessBean abRMA)
abRMA - RMA access bean to use