public static enum CmsLetsEncryptConfiguration.Mode extends java.lang.Enum<CmsLetsEncryptConfiguration.Mode>
Enum Constant and Description |
---|
all
Use both site domains and workplace domains in certificate configuration.
|
disabled
Do not generate the certificate configuration.
|
sites
Only use site domains in certificate configuration.
|
workplace
Only use workplace domains in certificate configuration.
|
Modifier and Type | Method and Description |
---|---|
static CmsLetsEncryptConfiguration.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsLetsEncryptConfiguration.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsLetsEncryptConfiguration.Mode all
public static final CmsLetsEncryptConfiguration.Mode disabled
public static final CmsLetsEncryptConfiguration.Mode sites
public static final CmsLetsEncryptConfiguration.Mode workplace
public static CmsLetsEncryptConfiguration.Mode[] values()
for (CmsLetsEncryptConfiguration.Mode c : CmsLetsEncryptConfiguration.Mode.values()) System.out.println(c);
public static CmsLetsEncryptConfiguration.Mode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null