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

com.unzer.payment.marketplace.MarketplacePayment Maven / Gradle / Ivy

package com.unzer.payment.marketplace;

/*-
 * #%L
 * Unzer Java SDK
 * %%
 * Copyright (C) 2020 - 2021 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%
 */

import com.unzer.payment.AbstractPayment;
import com.unzer.payment.Unzer;
import com.unzer.payment.communication.HttpCommunicationException;
import com.unzer.payment.communication.json.JsonObject;
import com.unzer.payment.paymenttypes.PaymentType;

import java.util.List;

public class MarketplacePayment extends AbstractPayment {

	private List authorizationsList;
	private List chargesList;
	private List cancelList;
	
	public MarketplacePayment() {
		super();
	}

	public MarketplacePayment(Unzer unzer) {
		super(unzer);
	}

	@Override
	public String getTypeUrl() {
		return "marketplace/payments";
	}

	public List getChargesList() {
		return chargesList;
	}

	public MarketplaceCharge getCharge(String chargeId) {
		if (chargesList == null)
			return null;
		for (MarketplaceCharge charge : chargesList) {
			if (chargeId.equalsIgnoreCase(charge.getId())) {
				return charge;
			}
		}
		return null;
	}

	public MarketplaceCharge getCharge(int index) {
		return getChargesList().get(index);
	}

	public void setChargesList(List chargesList) {
		this.chargesList = chargesList;
	}

	public List getCancelList() {
		return cancelList;
	}

	public MarketplaceCancel getCancel(String cancelId) {
		if (getCancelList() == null)
			return null;
		for (MarketplaceCancel cancel : getCancelList()) {
			if (cancelId.equalsIgnoreCase(cancel.getId())) {
				return cancel;
			}
		}
		return null;
	}

	public void setCancelList(List cancelList) {
		this.cancelList = cancelList;
	}

	public List getAuthorizationsList() {
		return authorizationsList;
	}

	public MarketplaceAuthorization getAuthorization(String authorizeId) {
		if (authorizationsList == null)
			return null;
		for (MarketplaceAuthorization charge : authorizationsList) {
			if (authorizeId.equalsIgnoreCase(charge.getId())) {
				return charge;
			}
		}
		return null;
	}

	public MarketplaceAuthorization getAuthorization(int index) {
		return getAuthorizationsList().get(index);
	}

	public void setAuthorizationsList(List authorizationsList) {
		this.authorizationsList = authorizationsList;
	}

	@Override
	public PaymentType map(PaymentType paymentType, JsonObject jsonObject) {
		return null;
	}
	
	/**
	 * Fully cancel for Marketplace Authorization(s).
	 * Note:: amount will be ignored due to fully cancel. Only paymentReference is processed.
	 * 
	 * @param cancel must refer to sub type of MarketplaceCancel
	 * @return MarketplacePayment
	 * @throws HttpCommunicationException
	 */
	public MarketplacePayment marketplaceFullAuthorizeCancel(String paymentReference) throws HttpCommunicationException {
		MarketplaceCancel cancel = new MarketplaceCancel();
		cancel.setPaymentReference(paymentReference);
		return getUnzer().marketplaceFullAuthorizationsCancel(this.getId(), cancel);
	}
	
	/**
	 * Fully cancel for Marketplace Charge(s).
	 * Note:: amount will be ignored due to fully cancel. Only paymentReference is processed.
	 * 
	 * @param cancel must refer to sub type of MarketplaceCancel
	 * @return MarketplacePayment
	 * @throws HttpCommunicationException
	 */
	public MarketplacePayment marketplaceFullChargesCancel(String paymentReference) throws HttpCommunicationException {
		MarketplaceCancel cancel = new MarketplaceCancel();
		cancel.setPaymentReference(paymentReference);
		return getUnzer().marketplaceFullChargesCancel(this.getId(), cancel);
	}
	
	/**
	 * Fully charge for Marketplace Authorization(s).
	 * Note:: amount will be ignored due to fully charge. Only paymentReference is processed.
	 * 
	 * @return MarketplacePayment
	 * @throws HttpCommunicationException
	 */
	public MarketplacePayment fullChargeAuthorizations(String paymentReference) throws HttpCommunicationException {
		return getUnzer().marketplaceFullChargeAuthorizations(this.getId(), paymentReference);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy