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 StringgetAvsCode()The address verification code for Visa, Discover, Mastercard, or American Express transactions.StringgetCvvCode()The card verification value code for for Visa, Discover, Mastercard, or American Express.StringgetPaymentAdviceCode()The declined payment transactions might have payment advice codes.StringgetResponseCode()Processor response code for the non-PayPal payment processor errors.voidsetAvsCode(String avsCode)The address verification code for Visa, Discover, Mastercard, or American Express transactions.voidsetCvvCode(String cvvCode)The card verification value code for for Visa, Discover, Mastercard, or American Express.voidsetPaymentAdviceCode(String paymentAdviceCode)The declined payment transactions might have payment advice codes.voidsetResponseCode(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.
-
-