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

com.ingenico.direct.domain.RedirectData Maven / Gradle / Ivy

/*
 * This class was auto-generated from the API references found at
 * https://support.direct.ingenico.com/documentation/api/reference
 */
package com.ingenico.direct.domain;

/**
 * Object containing all data needed to redirect the customer
 */
public class RedirectData {

	private String RETURNMAC = null;

	private String redirectURL = null;

	/**
	 * A Message Authentication Code (MAC) is used to authenticate the redirection back to merchant after the payment
	 */
	public String getRETURNMAC() {
		return RETURNMAC;
	}

	/**
	 * A Message Authentication Code (MAC) is used to authenticate the redirection back to merchant after the payment
	 */
	public void setRETURNMAC(String value) {
		this.RETURNMAC = value;
	}

	/**
	 * The URL that the customer should be redirected to. Be sure to redirect using the GET method
	 */
	public String getRedirectURL() {
		return redirectURL;
	}

	/**
	 * The URL that the customer should be redirected to. Be sure to redirect using the GET method
	 */
	public void setRedirectURL(String value) {
		this.redirectURL = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy