Class AcmeChallenge.Type
- java.lang.Object
-
- org.wildfly.security.x500.cert.acme.AcmeChallenge.Type
-
- Direct Known Subclasses:
AcmeChallenge.UnknownType
- Enclosing class:
- AcmeChallenge
public static class AcmeChallenge.Type extends Object
An Automatic Certificate Management Environment (ACME) challenge type.
-
-
Field Summary
Fields Modifier and Type Field Description static AcmeChallenge.TypeDNS_01static AcmeChallenge.TypeHTTP_01The various Automatic Certificate Management Environment (ACME) challenge types.static AcmeChallenge.TypeTLS_ALPN_01static AcmeChallenge.TypeTLS_SNI_01static AcmeChallenge.TypeTLS_SNI_02private Stringvalue
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) static AcmeChallenge.TypeforName(String name)StringgetValue()Get the string value of this challenge type.
-
-
-
Field Detail
-
HTTP_01
public static final AcmeChallenge.Type HTTP_01
The various Automatic Certificate Management Environment (ACME) challenge types.
-
DNS_01
public static final AcmeChallenge.Type DNS_01
-
TLS_SNI_01
public static final AcmeChallenge.Type TLS_SNI_01
-
TLS_SNI_02
public static final AcmeChallenge.Type TLS_SNI_02
-
TLS_ALPN_01
public static final AcmeChallenge.Type TLS_ALPN_01
-
value
private final String value
-
-
Constructor Detail
-
Type
Type(String value)
-
-
Method Detail
-
getValue
public String getValue()
Get the string value of this challenge type.- Returns:
- the string value of this challenge type
-
forName
static AcmeChallenge.Type forName(String name)
-
-