org.wildfly.swarm.config.infinispan.Mode Maven / Gradle / Ivy
The newest version!
package org.wildfly.swarm.config.infinispan;
public enum Mode {
SYNC("SYNC"), ASYNC("ASYNC");
private final String allowedValue;
/**
* Returns the allowed value for the management model.
*
* @return the allowed model value
*/
public String getAllowedValue() {
return allowedValue;
}
Mode(java.lang.String allowedValue) {
this.allowedValue = allowedValue;
}
@Override
public String toString() {
return allowedValue;
}
}