Created
March 23, 2012 20:47
-
-
Save VantivSDK/2174863 to your computer and use it in GitHub Desktop.
Java SDK - Litle Auth Reversal 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.*; | |
public class AuthReversalExample { | |
public static void main(String[] args) { | |
AuthReversal authReversal = new AuthReversal(); | |
//litleTxnId contains the Litle Transaction Id returned on the auth | |
authReversal.setLitleTxnId(100000000000000001L); | |
AuthReversalResponse response = new LitleOnline().authReversal(authReversal); | |
//Display Results | |
System.out.println("Response: " + response.getResponse()); | |
System.out.println("Message: " + response.getMessage()); | |
System.out.println("Litle Transaction ID: " + response.getLitleTxnId()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment