Class ProcessorResponse
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.ProcessorResponse
-
- All Implemented Interfaces:
Serializable
public class ProcessorResponse extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProcessorResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAvsCode()
The address verification code for Visa, Discover, Mastercard, or American Express transactions.String
getCvvCode()
The card verification value code for for Visa, Discover, Mastercard, or American Express.String
getPaymentAdviceCode()
The declined payment transactions might have payment advice codes.String
getResponseCode()
Processor response code for the non-PayPal payment processor errors.void
setAvsCode(String avsCode)
The address verification code for Visa, Discover, Mastercard, or American Express transactions.void
setCvvCode(String cvvCode)
The card verification value code for for Visa, Discover, Mastercard, or American Express.void
setPaymentAdviceCode(String paymentAdviceCode)
The declined payment transactions might have payment advice codes.void
setResponseCode(String responseCode)
Processor response code for the non-PayPal payment processor errors.
-
-
-
Method Detail
-
setAvsCode
public void setAvsCode(String avsCode)
The address verification code for Visa, Discover, Mastercard, or American Express transactions.
-
setCvvCode
public void setCvvCode(String cvvCode)
The card verification value code for for Visa, Discover, Mastercard, or American Express.
-
setPaymentAdviceCode
public void setPaymentAdviceCode(String paymentAdviceCode)
The declined payment transactions might have payment advice codes. The card networks, like Visa and Mastercard, return payment advice codes.
-
setResponseCode
public void setResponseCode(String responseCode)
Processor response code for the non-PayPal payment processor errors.
-
getAvsCode
public String getAvsCode()
The address verification code for Visa, Discover, Mastercard, or American Express transactions.
-
getCvvCode
public String getCvvCode()
The card verification value code for for Visa, Discover, Mastercard, or American Express.
-
getPaymentAdviceCode
public String getPaymentAdviceCode()
The declined payment transactions might have payment advice codes. The card networks, like Visa and Mastercard, return payment advice codes.
-
getResponseCode
public String getResponseCode()
Processor response code for the non-PayPal payment processor errors.
-
-