Class RefundResult
- java.lang.Object
-
- de.hybris.platform.payment.commands.result.AbstractResult
-
- de.hybris.platform.payment.commands.result.RefundResult
-
public class RefundResult extends AbstractResult
Result for following commandsFollowOnRefundCommandandStandaloneRefundCommand
-
-
Constructor Summary
Constructors Constructor Description RefundResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.CurrencygetCurrency()java.lang.StringgetPaymentProvider()java.util.DategetRequestTime()java.math.BigDecimalgetTotalAmount()voidsetCurrency(java.util.Currency currency)voidsetPaymentProvider(java.lang.String paymentProvider)voidsetRequestTime(java.util.Date requestTime)voidsetTotalAmount(java.math.BigDecimal totalAmount)-
Methods inherited from class de.hybris.platform.payment.commands.result.AbstractResult
getMerchantTransactionCode, getReconciliationId, getRequestId, getRequestToken, getTransactionStatus, getTransactionStatusDetails, setMerchantTransactionCode, setReconciliationId, setRequestId, setRequestToken, setTransactionStatus, setTransactionStatusDetails
-
-
-
-
Method Detail
-
getPaymentProvider
public java.lang.String getPaymentProvider()
- Returns:
- the paymentProvider
-
setPaymentProvider
public void setPaymentProvider(java.lang.String paymentProvider)
- Parameters:
paymentProvider- the paymentProvider to set
-
getCurrency
public java.util.Currency getCurrency()
- Returns:
- the currency
-
setCurrency
public void setCurrency(java.util.Currency currency)
- Parameters:
currency- the currency to set
-
getTotalAmount
public java.math.BigDecimal getTotalAmount()
- Returns:
- the totalAmount
-
setTotalAmount
public void setTotalAmount(java.math.BigDecimal totalAmount)
- Parameters:
totalAmount- the totalAmount to set
-
getRequestTime
public java.util.Date getRequestTime()
- Returns:
- the requestTime
-
setRequestTime
public void setRequestTime(java.util.Date requestTime)
- Parameters:
requestTime- the requestTime to set
-
-