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

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

package net.authorize.api.controller;

import net.authorize.api.contract.v1.SendCustomerTransactionReceiptRequest;
import net.authorize.api.contract.v1.SendCustomerTransactionReceiptResponse;
import net.authorize.api.contract.v1.ValidationModeEnum;
import net.authorize.api.controller.base.ApiOperationBase;

public class SendCustomerTransactionReceiptController extends ApiOperationBase {

	public SendCustomerTransactionReceiptController(SendCustomerTransactionReceiptRequest apiRequest) {
		super(apiRequest);
	}
	
	@Override
	protected void validateRequest() {
		SendCustomerTransactionReceiptRequest request = this.getApiRequest();
		
		//validate required fields		
		if ( null == request.getTransId()) throw new NullPointerException("TransId cannot be null");
		if ( null == request.getCustomerEmail()) throw new NullPointerException("CustomerEmail cannot be null");
		if ( null == request.getEmailSettings()) throw new NullPointerException("EmailSettings cannot be null");
		
		//validate not-required fields		
		//creditCardOne.setCardCode("");
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy