Skip to content

Instantly share code, notes, and snippets.

@VantivSDK
Created March 20, 2012 19:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VantivSDK/2139880 to your computer and use it in GitHub Desktop.
Save VantivSDK/2139880 to your computer and use it in GitHub Desktop.
Java SDK - Litle Void Transaction
import com.litle.sdk.*;
import com.litle.sdk.generate.*;
public class VoidExample {
public static void main(String[] args) {
com.litle.sdk.generate.Void theVoid = new com.litle.sdk.generate.Void();
//litleTxnId contains the Litle Transaction Id returned on the deposit
theVoid.setLitleTxnId(100000000000000001L);
VoidResponse response = new LitleOnline().dovoid(theVoid);
//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