public class ActionResults
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
ActionResults() |
Modifier and Type | Method and Description |
---|---|
ActionData |
getActionData()
This method returns the
ActionData object of the action
this action result belongs to. |
java.lang.String |
getActionName()
This method gets the current action name.
|
java.math.BigDecimal |
getAmount()
This method returns the current amount of the action.
|
int |
getAvsCode()
This method gets the AVS code of current action.
|
PluginException |
getPluginException()
This method returns the exception coming from the plugin.
|
EDPException |
getPPCException()
This method returns the exception coming from the payment plug-in controller.
|
int |
getStatus()
This method returns the status of the action in this result.
|
void |
setActionData(ActionData data)
This method sets the
ActionData object of the action this
action result belongs to. |
void |
setActionName(java.lang.String actionName)
This method sets the current action name.
|
void |
setAmount(java.math.BigDecimal localAmount)
This method sets the current amount of the action.
|
void |
setAvsCode(int avsCode)
This method sets the AVS(Address Verification Service) code of current action.
|
void |
setPluginException(PluginException exception)
This method sets the exception coming from the plugin.
|
void |
setPPCException(EDPException exception)
This method sets the exception coming from the payment plug-in controller.
|
void |
setStatus(int localStatus)
This method sets the status of the action in this result.
|
java.lang.String |
toString()
This method returns a readable form of the ActionResults object.
|
public void setActionName(java.lang.String actionName)
actionName
- The action namepublic java.lang.String getActionName()
public void setAmount(java.math.BigDecimal localAmount)
localAmount
- The amount to setpublic java.math.BigDecimal getAmount()
public void setAvsCode(int avsCode)
avsCode
- The AVS code of current actionpublic int getAvsCode()
public void setPPCException(EDPException exception)
exception
- The exception coming from the payment plug-in controllerpublic EDPException getPPCException()
public void setPluginException(PluginException exception)
exception
- The exception coming from the pluginpublic PluginException getPluginException()
public void setStatus(int localStatus)
localStatus
- The status to setpublic int getStatus()
public java.lang.String toString()
This method returns a readable form of the ActionResults object.
Warning: not localized, for debugging purposes only!
toString
in class java.lang.Object
public ActionData getActionData()
ActionData
object of the action
this action result belongs to.public void setActionData(ActionData data)
ActionData
object of the action this
action result belongs to.data
- The action data of the action