All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.authorize.api.controller.CreateCustomerProfileController Maven / Gradle / Ivy

Go to download

Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.

There is a newer version: 3.0.0
Show newest version
package net.authorize.api.controller;

import net.authorize.api.contract.v1.CreateCustomerProfileRequest;
import net.authorize.api.contract.v1.CreateCustomerProfileResponse;
import net.authorize.api.contract.v1.ValidationModeEnum;
import net.authorize.api.controller.base.ApiOperationBase;

public class CreateCustomerProfileController extends ApiOperationBase {

	public CreateCustomerProfileController(CreateCustomerProfileRequest apiRequest) {
		super(apiRequest);
	}

	
	@Override
	protected void validateRequest() {
		CreateCustomerProfileRequest request = this.getApiRequest();
		
		//validate required fields		
		if ( null == request.getProfile()) throw new NullPointerException("Profile cannot be null");
	}
	
	@Override
	protected Class getResponseType() {
		return CreateCustomerProfileResponse.class;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy