com.ibm.commerce.edp.beans
Class EDPRefundInstructionsDataBean
- java.lang.Object
-
- com.ibm.commerce.edp.beans.AEDPDataBean
-
- com.ibm.commerce.edp.beans.EDPRefundInstructionsDataBean
-
- All Implemented Interfaces:
- CommandDataBean, DataBean, InputDataBean, java.io.Serializable
public class EDPRefundInstructionsDataBean extends AEDPDataBean
The databean gets Available Refund Instructions from Payment Rules, which gets the RefundInstructions as an ArrayList Object fromcom.ibm.commerce.edp.commands
data bean Command.- See Also:
com.ibm.commerce.edp.commands
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.String
COPYRIGHT
The IBM Copyright notice field.-
Fields inherited from interface com.ibm.commerce.beans.DataBean
emptyString
-
-
Constructor Summary
Constructors Constructor and Description EDPRefundInstructionsDataBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.String
getCommandInterfaceName()
This method gets the command interface name that populates this data bean.java.util.ArrayList
getRefundInstructions()
This method gets the list of available refund instructions of current RMA.TypedProperty
getRequestProperties()
This method gets the parameters passed as part of the URL if any.java.lang.Long
getRmaId()
This method gets the RMA(Return Merchandise Authorization) id, which represents the refund instructions of the RMA with the specified RMA ID.void
setCommandInterfaceName(java.lang.String ifname)
This method sets the command interface name.void
setRefundInstructions(java.util.ArrayList arefundInstructions)
This method sets the list of available refund instructions of current RMA.void
setRequestProperties(TypedProperty aRequestProperties)
This method sets the parameters passed as part of the URL if any.void
setRmaId(java.lang.Long armaId)
This method sets the RMA(Return Merchandise Authorization) id, which represents the refund instructions of the RMA with the specified RMA ID.
-
-
-
Field Detail
-
COPYRIGHT
public static final java.lang.String COPYRIGHT
The IBM Copyright notice field.- See Also:
- Constant Field Values
-
-
Method Detail
-
setCommandInterfaceName
public void setCommandInterfaceName(java.lang.String ifname)
This method sets the command interface name. The data can be got through the specified databean command.- Parameters:
ifname
- A String that specifies the command interface name to be set.
-
getCommandInterfaceName
public java.lang.String getCommandInterfaceName()
This method gets the command interface name that populates this data bean. The default command interfaceName iscom.ibm.commerce.edp.commands
.- Returns:
- A String that specifies the name of the command interface.
-
setRmaId
public void setRmaId(java.lang.Long armaId)
This method sets the RMA(Return Merchandise Authorization) id, which represents the refund instructions of the RMA with the specified RMA ID.- Parameters:
armaId
- A Long that specifies the RMA id.
-
getRmaId
public java.lang.Long getRmaId()
This method gets the RMA(Return Merchandise Authorization) id, which represents the refund instructions of the RMA with the specified RMA ID.- Returns:
- A Long that specifies the RMA id.
-
setRefundInstructions
public void setRefundInstructions(java.util.ArrayList arefundInstructions)
This method sets the list of available refund instructions of current RMA.- Parameters:
arefundInstructions
- An ArrayList that represents the list of available refund instructions.
-
getRefundInstructions
public java.util.ArrayList getRefundInstructions()
This method gets the list of available refund instructions of current RMA.- Returns:
- An ArrayList that represents the list of available refund instructions.
-
setRequestProperties
public void setRequestProperties(TypedProperty aRequestProperties)
This method sets the parameters passed as part of the URL if any.- Parameters:
aRequestProperties
- A TypedProperty that specifies the parameters passed as part of the URL if any.
-
getRequestProperties
public TypedProperty getRequestProperties()
This method gets the parameters passed as part of the URL if any.- Returns:
- A TypedProperty that specifies the parameters passed as part of the URL if any.
-
-