net.minidev.ovh.api.price.hosting.web.OvhSslEnum Maven / Gradle / Ivy
package net.minidev.ovh.api.price.hosting.web;
/**
* Enum of Ssls
*/
public enum OvhSslEnum {
HOSTEDSSL("HOSTEDSSL");
final String value;
OvhSslEnum(String s) {
this.value = s;
}
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy