com.braintreegateway.test.CreditCardDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.braintree-java
Show all versions of org.apache.servicemix.bundles.braintree-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.braintreegateway.test;
public enum CreditCardDefaults {
IssuingBank("NETWORK ONLY"),
CountryOfIssuance("USA");
private final String value;
public String getValue() {
return value;
}
private CreditCardDefaults(String value) {
this.value = value;
}
}