Created
August 31, 2016 17:40
-
-
Save tao-qian/8e2bb27feb43be55a2b4d23e131d9705 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class V1Api { | |
@Inject V1ApiService delegate; | |
@GET | |
@Path("/v1/account") | |
public AccountInfo getAccountInfo(@ApiParam(required=true) @QueryParam("account_id") String accountId, @ApiParam(required=false) @QueryParam("account_type") String accountType) { | |
return delegate.getAccountInfo(accountId); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment