throw new RemoteException("APIException while processing AddressVerify API call", new APIException("AddressVerify API call is not supported."));
}
public BAUpdateResponseType billAgreementUpdate(BillAgreementUpdateReq billAgreementUpdateRequest) throws RemoteException {
PostMethod post = new PostMethod(getApiUrl().toExternalForm());
post.addParameters(billAgreementUpdateRequest.getBAUpdateRequest().getNVPFields(getCredentials()));
try {
client.executeMethod(post);
if (post.getStatusCode() == HttpStatus.SC_OK) {
return new BAUpdateResponseType(post.getResponseBodyAsStream());
}