net.authorize.api.controller.ValidateCustomerPaymentProfileController Maven / Gradle / Ivy
package net.authorize.api.controller;
import net.authorize.api.contract.v1.ValidateCustomerPaymentProfileRequest;
import net.authorize.api.contract.v1.ValidateCustomerPaymentProfileResponse;
import net.authorize.api.contract.v1.ValidationModeEnum;
import net.authorize.api.controller.base.ApiOperationBase;
public class ValidateCustomerPaymentProfileController extends ApiOperationBase {
public ValidateCustomerPaymentProfileController(ValidateCustomerPaymentProfileRequest apiRequest) {
super(apiRequest);
}
@Override
protected void validateRequest() {
ValidateCustomerPaymentProfileRequest request = this.getApiRequest();
//validate required fields
if ( null == request.getCustomerProfileId()) throw new NullPointerException("CustomerProfileId cannot be null");
if ( null == request.getCardCode()) throw new NullPointerException("CardCode cannot be null");
if ( null == request.getCustomerPaymentProfileId()) throw new NullPointerException("CustomerPaymentProfileId cannot be null");
if ( null == request.getCustomerShippingAddressId()) throw new NullPointerException("CustomerShippingAddressId cannot be null");
//validate not-required fields
//creditCardOne.setCardCode("");
}
@Override
protected Class getResponseType() {
return ValidateCustomerPaymentProfileResponse.class;
}
}