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

net.authorize.api.controller.GetBatchStatisticsController 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.GetBatchStatisticsRequest;
import net.authorize.api.contract.v1.GetBatchStatisticsResponse;
import net.authorize.api.contract.v1.ValidationModeEnum;
import net.authorize.api.controller.base.ApiOperationBase;

public class GetBatchStatisticsController extends ApiOperationBase {

	public GetBatchStatisticsController(GetBatchStatisticsRequest apiRequest) {
		super(apiRequest);
	}
	
	@Override
	protected void validateRequest() {
		GetBatchStatisticsRequest request = this.getApiRequest();
		
		//validate required fields		
		if ( null == request.getBatchId()) throw new NullPointerException("BatchId cannot be null");
		
		//validate not-required fields		
		//creditCardOne.setCardCode("");
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy