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

net.minidev.ovh.api.license.OvhOrderableCpanelVersionEnum Maven / Gradle / Ivy

package net.minidev.ovh.api.license;

/**
 * All versions available for Cpanel products
 */
public enum OvhOrderableCpanelVersionEnum {
	VERSION_11_FOR_LINUX("VERSION_11_FOR_LINUX"),
	VERSION_11_FOR_VIRTUOZZO("VERSION_11_FOR_VIRTUOZZO"),
	VERSION_11_FOR_VPS("VERSION_11_FOR_VPS");

	final String value;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy