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

net.minidev.ovh.api.ip.OvhLoadBalancingSslEnum Maven / Gradle / Ivy

package net.minidev.ovh.api.ip;

/**
 * Possible values for ssl state
 */
public enum OvhLoadBalancingSslEnum {
	customer("customer"),
	none("none"),
	ovh("ovh");

	final String value;

	OvhLoadBalancingSslEnum(String s) {
		this.value = s;
	}

	public String toString() {
		return this.value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy