public void getResponseAsync(HttpFormClient.Callback<RegisterResponse> callback) { HttpFormClient.requestAsync(SERVICE_URL, this, RegisterResponse.class, callback); }
public RegisterResponse getResponse() throws IOException { return HttpFormClient.request(SERVICE_URL, this, RegisterResponse.class); }