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

com.unzer.payment.Paypage Maven / Gradle / Ivy

package com.unzer.payment;

/*-
 * #%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%
 */

import com.unzer.payment.communication.json.JsonObject;
import com.unzer.payment.paymenttypes.PaymentType;

import java.math.BigDecimal;
import java.net.URL;
import java.util.Currency;
import java.util.Map;

public class Paypage implements PaymentType {

	public enum Status {SUCCESS, PENDING, ERRROR}

	private String id;
	private BigDecimal amount;
	private Currency currency;
	private URL returnUrl;

	private String logoImage;
	private String fullPageImage;
	private String shopName;
	private String shopDescription;
	private String tagline;
	private Map css;
	private URL termsAndConditionUrl;
	private URL privacyPolicyUrl;
	private URL imprintUrl;
	private URL helpUrl;
	private URL contactUrl;
	private String invoiceId;
	private String orderId;
	private String card3ds;
	private String billingAddressRequired;
	private String shippingAddressRequired;
	private Map additionalAttributes;
	private String[] excludeTypes;
	private Status status;
	private String action;
	private String redirectUrl;
	
	private String customerId;
	private String metadataId;
	private String paymentId;
	private String basketId;

	public Paypage() {
		//default constructor
	}
	
	@Override
	public String getTypeUrl() {
		return "paypage/charge";
	}
	
	public BigDecimal getAmount() {
		return amount;
	}
	public void setAmount(BigDecimal amount) {
		this.amount = amount;
	}
	public Currency getCurrency() {
		return currency;
	}
	public void setCurrency(Currency currency) {
		this.currency = currency;
	}
	public URL getReturnUrl() {
		return returnUrl;
	}
	public void setReturnUrl(URL returnUrl) {
		this.returnUrl = returnUrl;
	}
	public String getLogoImage() {
		return logoImage;
	}
	public void setLogoImage(String logoImage) {
		this.logoImage = logoImage;
	}
	public String getFullPageImage() {
		return fullPageImage;
	}
	public void setFullPageImage(String fullPageImage) {
		this.fullPageImage = fullPageImage;
	}
	public String getShopName() {
		return shopName;
	}
	public void setShopName(String shopName) {
		this.shopName = shopName;
	}
	public URL getTermsAndConditionUrl() {
		return termsAndConditionUrl;
	}
	public void setTermsAndConditionUrl(URL termsAndConditionUrl) {
		this.termsAndConditionUrl = termsAndConditionUrl;
	}
	public URL getPrivacyPolicyUrl() {
		return privacyPolicyUrl;
	}
	public void setPrivacyPolicyUrl(URL privacyPolicyUrl) {
		this.privacyPolicyUrl = privacyPolicyUrl;
	}
	public URL getHelpUrl() {
		return helpUrl;
	}
	public void setHelpUrl(URL helpUrl) {
		this.helpUrl = helpUrl;
	}
	public URL getContactUrl() {
		return contactUrl;
	}
	public void setContactUrl(URL contactUrl) {
		this.contactUrl = contactUrl;
	}
	public String getOrderId() {
		return orderId;
	}
	public void setOrderId(String orderId) {
		this.orderId = orderId;
	}
	public String getCustomerId() {
		return customerId;
	}
	public void setCustomerId(String customerId) {
		this.customerId = customerId;
	}
	public String getMetadataId() {
		return metadataId;
	}
	public void setMetadataId(String metadataId) {
		this.metadataId = metadataId;
	}
	public String getPaymentId() {
		return paymentId;
	}
	public void setPaymentId(String paymentId) {
		this.paymentId = paymentId;
	}
	public String getBasketId() {
		return basketId;
	}
	public void setBasketId(String basketId) {
		this.basketId = basketId;
	}
	public Status getStatus() {
		return status;
	}
	public void setStatus(Status status) {
		this.status = status;
	}

	public String getRedirectUrl() {
		return redirectUrl;
	}

	public void setRedirectUrl(String redirectUrl) {
		this.redirectUrl = redirectUrl;
	}

	public String getId() {
		return id;
	}

	@Override
	public PaymentType map(PaymentType paymentType, JsonObject jsonObject) {
		return null;
	}

	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return the shopDescription
	 */
	public String getShopDescription() {
		return shopDescription;
	}

	/**
	 * @param shopDescription the shopDescription to set
	 */
	public void setShopDescription(String shopDescription) {
		this.shopDescription = shopDescription;
	}

	/**
	 * @return the tagline
	 */
	public String getTagline() {
		return tagline;
	}

	/**
	 * @param tagline the tagline to set
	 */
	public void setTagline(String tagline) {
		this.tagline = tagline;
	}

	/**
	 * @return the css
	 */
	public Map getCss() {
		return css;
	}

	/**
	 * @param css the css to set
	 */
	public void setCss(Map css) {
		this.css = css;
	}

	/**
	 * @return the imprintUrl
	 */
	public URL getImprintUrl() {
		return imprintUrl;
	}

	/**
	 * @param imprintUrl the imprintUrl to set
	 */
	public void setImprintUrl(URL imprintUrl) {
		this.imprintUrl = imprintUrl;
	}

	/**
	 * @return the invoiceId
	 */
	public String getInvoiceId() {
		return invoiceId;
	}

	/**
	 * @param invoiceId the invoiceId to set
	 */
	public void setInvoiceId(String invoiceId) {
		this.invoiceId = invoiceId;
	}

	/**
	 * @return the card3ds
	 */
	public String getCard3ds() {
		return card3ds;
	}

	/**
	 * @param card3ds the card3ds to set
	 */
	public void setCard3ds(String card3ds) {
		this.card3ds = card3ds;
	}

	/**
	 * @return the billingAddressRequired
	 */
	public String getBillingAddressRequired() {
		return billingAddressRequired;
	}

	/**
	 * @param billingAddressRequired the billingAddressRequired to set
	 */
	public void setBillingAddressRequired(String billingAddressRequired) {
		this.billingAddressRequired = billingAddressRequired;
	}

	/**
	 * @return the shippingAddressRequired
	 */
	public String getShippingAddressRequired() {
		return shippingAddressRequired;
	}

	/**
	 * @param shippingAddressRequired the shippingAddressRequired to set
	 */
	public void setShippingAddressRequired(String shippingAddressRequired) {
		this.shippingAddressRequired = shippingAddressRequired;
	}

	/**
	 * @return the additionalAttributes
	 */
	public Map getAdditionalAttributes() {
		return additionalAttributes;
	}

	/**
	 * @param additionalAttributes the additionalAttributes to set
	 */
	public void setAdditionalAttributes(Map additionalAttributes) {
		this.additionalAttributes = additionalAttributes;
	}

	/**
	 * @return the excludeTypes
	 */
	public String[] getExcludeTypes() {
		return excludeTypes;
	}

	/**
	 * @param excludeTypes the excludeTypes to set
	 */
	public void setExcludeTypes(String[] excludeTypes) {
		this.excludeTypes = excludeTypes;
	}

	/**
	 * @return the action
	 */
	public String getAction() {
		return action;
	}

	/**
	 * @param action the action to set
	 */
	public void setAction(String action) {
		this.action = action;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy