Created
March 28, 2012 21:23
-
-
Save VantivSDK/2230712 to your computer and use it in GitHub Desktop.
Java SDK - Litle AVS Only Transaction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.litle.sdk.*; | |
import com.litle.sdk.generate.*; | |
//AVS Only | |
public class AvsOnlyExample { | |
public static void main(String[] args) { | |
Authorization auth = new Authorization(); | |
auth.setOrderId("1"); | |
auth.amount(0L); | |
auth.setOrderSource(OrderSourceType.ECOMMERCE); | |
Contact billToAddress = new Contact(); | |
billToAddress.setName("John Smith"); | |
billToAddress.setAddressLine1("1 Main St."); | |
billToAddress.setCity("Burlington"); | |
billToAddress.setState("MA"); | |
billToAddress.setCountry(CountryTypeEnum.US); | |
billToAddress.setZip("01803-3747"); | |
auth.setBillToAddress(billToAddress); | |
CardType card = new CardType(); | |
card.setNumber("375001010000003"); | |
card.setExpDate("0112"); | |
card.setCardValidationNum("349"); | |
card.setType(MethodOfPaymentTypeEnum.AX); | |
auth.setCard(card); | |
AuthorizationResponse response = new LitleOnline().authorize(authorization); | |
//Display Results | |
System.out.println("Response: " + response.getResponse()); | |
System.out.println("Message: " + response.getMessage()); | |
System.out.println("Litle Transaction ID: " + response.getLitleTxnId()); | |
System.out.println("AVS Result: " + response.getFraudResult().getAvsResult()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment