Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. interface Account {
  2. public void withdraw(double amt);
  3. }
  4.  
  5. Account acc = RestClient.create("http://example.com/", Account.class);
  6. acc.withdraw(5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement