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

net.authorize.data.arb.Profile Maven / Gradle / Ivy

Go to download

A Java implementation of a KillBill Payment Plugin that uses Authorize.Net as a payment gateway

There is a newer version: 2.8.196
Show newest version
package net.authorize.data.arb;

import javax.xml.bind.annotation.XmlRootElement;
import java.io.Serializable;

@XmlRootElement
public class Profile implements Serializable {
	private static final long serialVersionUID = 1L;

	protected String customerProfileId;
    protected String customerPaymentProfileId;
    protected String customerAddressId;

    private Profile() { }

    /**
     * Create a new CustomerProfile object
     *
     * @return Profile
     */
    public static Profile createProfile() {
    	return new Profile();
    }

	/**
     * Get the customer profile id.
     *
	 * @return the id
	 */
	public String getCustomerProfileId() {
		return customerProfileId;
	}

	/**
	 * Set the customer profile id.
	 *
	 * @param id the id to set
	 */
	public void setCustomerProfileId(String id) {
		this.customerProfileId = id;
	}

	/**
	 * Get the customer payment profile id.
	 *
	 * @return the id
	 */
	public String getCustomerPaymentProfileId() {
		return customerPaymentProfileId;
	}

	/**
	 * Set the customer payment profile id.
	 *
	 * @param id the id to set
	 */
	public void setCustomerPaymentProfileId(String id) {
		this.customerPaymentProfileId = id;
	}

	/**
	 * Get the customer payment profile id.
	 *
	 * @return the id
	 */
	public String getCustomerAddressId() {
		return customerAddressId;
	}

	/**
	 * Set the customer payment profile id.
	 *
	 * @param id the id to set
	 */
	public void setCustomerAddressId(String id) {
		this.customerAddressId = id;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy