Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class V1Api {
  2.  
  3. @Inject V1ApiService delegate;
  4.  
  5. @GET
  6. @Path("/v1/account")
  7. public AccountInfo getAccountInfo(@ApiParam(required=true) @QueryParam("account_id") String accountId) {
  8. return delegate.getAccountInfo(accountId);
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement