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

org.wildfly.swarm.config.infinispan.ConsistentHashStrategy Maven / Gradle / Ivy

package org.wildfly.swarm.config.infinispan;
public enum ConsistentHashStrategy {
	INTER_CACHE("INTER_CACHE"), INTRA_CACHE("INTRA_CACHE");

	private final String allowedValue;

	/**
	 * Returns the allowed value for the management model.
	 * 
	 * @return the allowed model value
	 */
	public String getAllowedValue() {
		return allowedValue;
	}

	ConsistentHashStrategy(java.lang.String allowedValue) {
		this.allowedValue = allowedValue;
	}

	@Override
	public String toString() {
		return allowedValue;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy