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

com.unzer.payment.communication.UnzerRestCommunication Maven / Gradle / Ivy

package com.unzer.payment.communication;

/*-
 * #%L
 * Unzer Java SDK
 * %%
 * Copyright (C) 2020 Unzer E-Com GmbH
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

/**
 * Defines the rest-communication used by the {@code PaymentService}.
 * 
 * You should not implement this interface directly, the basic communication
 * flow is implemented in the {@code AbstractUnzerRestCommunication}.
 *
 */
public interface UnzerRestCommunication {

	/**
	 * Executes a GET Request to the given {@code url} authenticated with the given
	 * {@code privateKey}.
	 * 
	 * @param url
	 *            - the url to be called
	 * @param privateKey
	 *            - the private key of the key-pair to used
	 * @return - the Response as application/json, UTF-8
	 * 
	 * @throws HttpCommunicationException
	 *             - thrown for any problems occurring in http-communication
	 */
	String httpGet(String url, String privateKey) throws HttpCommunicationException;

	/**
	 * Executes a POST Request to the given {@code url} authenticated with the given
	 * {@code privateKey}.
	 * 
	 * @param url
	 *            - the url to be called
	 * @param privateKey
	 *            - the private key of the key-pair to used
	 * @param data - any data object as defined in the com.unzer.payment package
	 * @return - the Response as application/json, UTF-8
	 * 
	 * @throws HttpCommunicationException
	 *             - thrown for any problems occurring in http-communication
	 */
	String httpPost(String url, String privateKey, Object data) throws HttpCommunicationException;

	/**
	 * Executes a PUT Request to the given {@code url} authenticated with the given
	 * {@code privateKey}.
	 * 
	 * @param url
	 *            - the url to be called
	 * @param privateKey
	 *            - the private key of the key-pair to used
	 * @param data - any data object as defined in the com.unzer.payment package
	 * @return - the Response as application/json, UTF-8
	 * 
	 * @throws HttpCommunicationException
	 *             - thrown for any problems occurring in http-communication
	 */
	String httpPut(String url, String privateKey, Object data) throws HttpCommunicationException;

	/**
	 * Executes a DELETE Request to the given {@code url} authenticated with the given
	 * {@code privateKey}.
	 * 
	 * @param url
	 *            - the url to be called
	 * @param privateKey
	 *            - the private key of the key-pair to used
	 * @return - the Response as application/json, UTF-8
	 * 
	 * @throws HttpCommunicationException
	 *             - thrown for any problems occurring in http-communication
	 */
	String httpDelete(String url, String privateKey) throws HttpCommunicationException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy