Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
2,031
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /**
  2. * Invokes a custom API using POST HTTP method
  3. * @param apiName The API name
  4. * @param callback The callback to invoke after the API execution
  5. */
  6. public void invokeApi(String apiName, ApiJsonOperationCallback callback) {
  7. invokeApi(apiName, null, callback);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement