com.braintreegateway.CreditCardVerification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.braintree-java
Show all versions of org.apache.servicemix.bundles.braintree-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.braintreegateway;
import com.braintreegateway.Transaction.GatewayRejectionReason;
import com.braintreegateway.util.EnumUtils;
import com.braintreegateway.util.NodeWrapper;
import java.math.BigDecimal;
import java.util.Calendar;
public class CreditCardVerification {
public enum Status {
FAILED, GATEWAY_REJECTED, PROCESSOR_DECLINED, UNRECOGNIZED, VERIFIED
}
private BigDecimal amount;
private String aniFirstNameResponseCode;
private String aniLastNameResponseCode;
private String avsErrorResponseCode;
private String avsPostalCodeResponseCode;
private String avsStreetAddressResponseCode;
private Address billingAddress;
private Calendar createdAt;
private CreditCard creditCard;
private String currencyIsoCode;
private String cvvResponseCode;
private GatewayRejectionReason gatewayRejectionReason;
private String graphqlId;
private String id;
private String merchantAccountId;
private String networkResponseCode;
private String networkResponseText;
private String networkTransactionId;
private String processorResponseCode;
private String processorResponseText;
private ProcessorResponseType processorResponseType;
private RiskData riskData;
private Status status;
private ThreeDSecureInfo threeDSecureInfo;
public CreditCardVerification(NodeWrapper node) {
this.amount = node.findBigDecimal("amount");
this.aniFirstNameResponseCode = node.findString("ani-first-name-response-code");
this.aniLastNameResponseCode = node.findString("ani-last-name-response-code");
this.avsErrorResponseCode = node.findString("avs-error-response-code");
this.avsPostalCodeResponseCode = node.findString("avs-postal-code-response-code");
this.avsStreetAddressResponseCode = node.findString("avs-street-address-response-code");
this.currencyIsoCode = node.findString("currency-iso-code");
this.cvvResponseCode = node.findString("cvv-response-code");
this.gatewayRejectionReason = EnumUtils.findByName(GatewayRejectionReason.class, node.findString("gateway-rejection-reason"), GatewayRejectionReason.UNRECOGNIZED);
this.processorResponseCode = node.findString("processor-response-code");
this.processorResponseText = node.findString("processor-response-text");
this.processorResponseType = EnumUtils.findByName(ProcessorResponseType.class, node.findString("processor-response-type"), ProcessorResponseType.UNRECOGNIZED);
this.networkResponseCode = node.findString("network-response-code");
this.networkResponseText = node.findString("network-response-text");
this.networkTransactionId = node.findString("network-transaction-id");
this.merchantAccountId = node.findString("merchant-account-id");
this.status = EnumUtils.findByName(Status.class, node.findString("status"), Status.UNRECOGNIZED);
this.graphqlId = node.findString("global-id");
this.id = node.findString("id");
NodeWrapper riskDataNode = node.findFirst("risk-data");
if (riskDataNode != null) {
this.riskData = new RiskData(riskDataNode);
}
NodeWrapper threeDSecureInfoNode = node.findFirst("three-d-secure-info");
if (threeDSecureInfoNode != null && !threeDSecureInfoNode.isBlank()) {
threeDSecureInfo = new ThreeDSecureInfo(threeDSecureInfoNode);
}
NodeWrapper creditCardNode = node.findFirst("credit-card");
if (creditCardNode != null) {
this.creditCard = new CreditCard(creditCardNode);
}
NodeWrapper billingAddressNode = node.findFirst("billing");
if (billingAddressNode != null) {
this.billingAddress = new Address(billingAddressNode);
}
this.createdAt = node.findDateTime("created-at");
}
public BigDecimal getAmount() {
return amount;
}
public String getAniFirstNameResponseCode() {
return aniFirstNameResponseCode;
}
public String getAniLastNameResponseCode() {
return aniLastNameResponseCode;
}
public String getAvsErrorResponseCode() {
return avsErrorResponseCode;
}
public String getAvsPostalCodeResponseCode() {
return avsPostalCodeResponseCode;
}
public String getAvsStreetAddressResponseCode() {
return avsStreetAddressResponseCode;
}
public Address getBillingAddress() {
return billingAddress;
}
public Calendar getCreatedAt() {
return createdAt;
}
public CreditCard getCreditCard() {
return creditCard;
}
public String getCurrencyIsoCode() {
return currencyIsoCode;
}
public String getCvvResponseCode() {
return cvvResponseCode;
}
public String getId() {
return id;
}
public String getGraphQLId() {
return graphqlId;
}
public RiskData getRiskData() {
return riskData;
}
public ThreeDSecureInfo getThreeDSecureInfo() {
return threeDSecureInfo;
}
public GatewayRejectionReason getGatewayRejectionReason() {
return gatewayRejectionReason;
}
public String getProcessorResponseCode() {
return processorResponseCode;
}
public String getProcessorResponseText() {
return processorResponseText;
}
public ProcessorResponseType getProcessorResponseType() {
return processorResponseType;
}
public String getNetworkResponseCode() {
return networkResponseCode;
}
public String getNetworkResponseText() {
return networkResponseText;
}
public String getNetworkTransactionId() {
return networkTransactionId;
}
public String getMerchantAccountId() {
return merchantAccountId;
}
public Status getStatus() {
return status;
}
}