Class NetworkTransactionReference
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.payments.NetworkTransactionReference
-
- All Implemented Interfaces:
Serializable
public class NetworkTransactionReference extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NetworkTransactionReference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDate()
The date that the transaction was authorized by the scheme.String
getId()
Transaction reference id returned by the scheme.String
getNetwork()
Name of the card network through which the transaction was routed.void
setDate(String date)
The date that the transaction was authorized by the scheme.void
setId(String id)
Transaction reference id returned by the scheme.void
setNetwork(String network)
Name of the card network through which the transaction was routed.
-
-
-
Method Detail
-
setId
public void setId(String id)
Transaction reference id returned by the scheme. For Visa and Amex, this is the "Tran id" field in response. For MasterCard, this is the "BankNet reference id" field in response. For Discover, this is the "NRID" field in response.
-
setNetwork
public void setNetwork(String network)
Name of the card network through which the transaction was routed. The possible values are: "VISA". Visa card. "MASTERCARD". Mastecard card. "DISCOVER". Discover card. "AMEX". American Express card. "SOLO". Solo debit card. "JCB". Japan Credit Bureau card. "STAR". Military Star card. "DELTA". Delta Airlines card. "SWITCH". Switch credit card. "MAESTRO". Maestro credit card. "CB_NATIONALE". Carte Bancaire (CB) credit card. "CONFIGOGA". Configoga credit card. "CONFIDIS". Confidis credit card. "ELECTRON". Visa Electron credit card. "CETELEM". Cetelem credit card. "CHINA_UNION_PAY". China union pay credit card.
-
setDate
public void setDate(String date)
The date that the transaction was authorized by the scheme. For MasterCard, this is the "BankNet reference date" field in response.
-
getId
public String getId()
Transaction reference id returned by the scheme. For Visa and Amex, this is the "Tran id" field in response. For MasterCard, this is the "BankNet reference id" field in response. For Discover, this is the "NRID" field in response.
-
getNetwork
public String getNetwork()
Name of the card network through which the transaction was routed. The possible values are: "VISA". Visa card. "MASTERCARD". Mastecard card. "DISCOVER". Discover card. "AMEX". American Express card. "SOLO". Solo debit card. "JCB". Japan Credit Bureau card. "STAR". Military Star card. "DELTA". Delta Airlines card. "SWITCH". Switch credit card. "MAESTRO". Maestro credit card. "CB_NATIONALE". Carte Bancaire (CB) credit card. "CONFIGOGA". Configoga credit card. "CONFIDIS". Confidis credit card. "ELECTRON". Visa Electron credit card. "CETELEM". Cetelem credit card. "CHINA_UNION_PAY". China union pay credit card.
-
getDate
public String getDate()
The date that the transaction was authorized by the scheme. For MasterCard, this is the "BankNet reference date" field in response.
-
-