
com.braintreegateway.ExternalVault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of braintree-java Show documentation
Show all versions of braintree-java Show documentation
Java Client Library for Braintree Payments Gateway
package com.braintreegateway;
public class ExternalVault {
private ExternalVault() {
}
public enum Status {
WILL_VAULT("will_vault"),
VAULTED("vaulted");
private final String name;
Status(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy