Advertisement
Guest User

Untitled

a guest
Aug 31st, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 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. assertNotNull(accountId); // null check generated for all required parameters
  9. return delegate.getAccountInfo(accountId);
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement