コード例 #1
0
 public void getResponseAsync(HttpFormClient.Callback<RegisterResponse> callback) {
   HttpFormClient.requestAsync(SERVICE_URL, this, RegisterResponse.class, callback);
 }
コード例 #2
0
 public RegisterResponse getResponse() throws IOException {
   return HttpFormClient.request(SERVICE_URL, this, RegisterResponse.class);
 }