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

net.authorize.PaymentMethod 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;

/**
 * The method of payment for the transaction.
 * CC (credit card) or ECHECK (electronic check).
 */
public enum PaymentMethod {
	CREDIT_CARD("CC"),
	E_CHECK("ECHECK"),
	UNKNOWN("UNKNOWN");

	private final String method;

	private PaymentMethod(String method) {
		this.method = method;
	}

	/**
	 * @return the method
	 */
	public String getMethod() {
		return method;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy