Vantiv eCommerce Java SDK
Vantiv eCommerce powers the payment processing engines for leading companies that sell directly to consumers through internet retail, direct response marketing (TV, radio and telephone), and online services. Vantiv eCommerce is the leading authority in card-not-present (CNP) commerce, transaction processing and merchant services.
The Vantiv eCommerce Java SDK is a Java implementation of the Vantiv eCommerce XML API. This SDK was created to make it as easy as possible to process your payments with Vantiv eCommerce. This SDK utilizes the HTTPS protocol to securely connect to Vantiv eCommerce. Using the SDK requires coordination with the Vantiv eCommerce team in order to be provided with credentials for accessing our systems.
Each Java SDK release supports all of the functionality present in the associated Vantiv eCommerce XML version (e.g., SDK v12.19.1 supports Vantiv eCommerce XML v12.0). Please see the online copy of our XSD for Vantiv eCommerce XML to get more details on what the Vantiv eCommerce payments engine supports.
This SDK was implemented to support the Java programming language and was created by Vantiv eCommerce. Its intended use is for online and batch transaction processing utilizing your account on the Vantiv eCommerce payments engine.
See LICENSE file for details on using this software.
Please contact Vantiv eCommerce to receive valid merchant credentials in order to run tests successfully or if you require assistance in any way. We are reachable at sdksupport@fisglobal.com
Add MavenCentral repository to your Maven or Gradle build:
mavenCentral()
to your repositories { ... }
Add the dependency
For Maven:
<dependency>
<groupId>io.github.vantiv</groupId>
<artifactId>cnp-sdk-for-java</artifactId>
<version>12.19.1</version>
</dependency>
For Gradle:
compile(group: 'io.github.vantiv', name: 'cnp-sdk-for-java', version: '12.19.1')
Create your configuration file with one of the following
java -jar /path/to/cnp-sdk-for-java.jar
and answer the questions, or.cnp_SDK_config.properties
to your home directory with the correct properties in itUse it:
import io.github.vantiv.sdk.*;
public class SampleCnpTxn {
public static void main(String[] args) {
// Visa $10 Sale
Sale sale = new Sale();
sale.setReportGroup("Planets");
sale.setOrderId("12344");
sale.setAmount(1000L);
sale.setOrderSource(OrderSourceType.ECOMMERCE);
CardType card = new CardType();
card.setType(MethodOfPaymentTypeEnum.VI);
card.setNumber("4100000000000002");
card.setExpDate("1210");
sale.setCard(card);
// Peform the transaction on the Vantiv eCommerce Platform
SaleResponse response = new CnpOnline().sale(sale);
// display result
System.out.println("Message: " + response.getMessage());
System.out.println("Vantiv eCommerce Transaction ID: " + response.getCnpTxnId());
}
}
Add JCenter repository to your Maven or Gradle build:
jcenter()
to your repositories { ... }
Add the dependency
For Maven:
<dependency>
<groupId>com.cnp</groupId>
<artifactId>cnp-sdk-for-java</artifactId>
<version>12.0.3</version>
</dependency>
For Gradle:
compile(group: 'com.cnp', name: 'cnp-sdk-for-java', version: '12.0.3')
Create your configuration file with one of the following
java -jar /path/to/cnp-sdk-for-java.jar
and answer the questions, or.cnp_SDK_config.properties
to your home directory with the correct properties in itUse it:
import com.cnp.sdk.*;
import com.cnp.sdk.generate.*;
public class SampleCnpTxn {
public static void main(String[] args) {
// Visa $10 Sale
Sale sale = new Sale();
sale.setReportGroup("Planets");
sale.setOrderId("12344");
sale.setAmount(1000L);
sale.setOrderSource(OrderSourceType.ECOMMERCE);
CardType card = new CardType();
card.setType(MethodOfPaymentTypeEnum.VI);
card.setNumber("4100000000000002");
card.setExpDate("1210");
sale.setCard(card);
// Peform the transaction on the Vantiv eCommerce Platform
SaleResponse response = new CnpOnline().sale(sale);
// display result
System.out.println("Message: " + response.getMessage());
System.out.println("Vantiv eCommerce Transaction ID: " + response.getCnpTxnId());
}
}
More examples can be found here Java Gists