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

net.authorize.api.controller.CreateCustomerProfileTransactionController 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.CreateCustomerProfileTransactionRequest;
import net.authorize.api.contract.v1.CreateCustomerProfileTransactionResponse;
import net.authorize.api.controller.base.ApiOperationBase;

public class CreateCustomerProfileTransactionController extends ApiOperationBase {

	public CreateCustomerProfileTransactionController(CreateCustomerProfileTransactionRequest apiRequest) {
		super(apiRequest);
	}
	
	@Override
	protected void validateRequest() {
		CreateCustomerProfileTransactionRequest request = this.getApiRequest();
		
		//validate required fields		
		if ( null == request.getMerchantAuthentication()) throw new NullPointerException("The request's merchantAuthentication field cannot be null");
		if ( null == request.getTransaction()) throw new NullPointerException("The request's transaction field cannot be null");
		
		//validate not-required fields		
		//creditCardOne.setCardCode("");
	}

	@Override
	protected Class getResponseType() {
		return CreateCustomerProfileTransactionResponse.class;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy