Package io.quarkiverse.cxf
Enum CxfClientConfig.WellKnownHostnameVerifier
- java.lang.Object
-
- java.lang.Enum<CxfClientConfig.WellKnownHostnameVerifier>
-
- io.quarkiverse.cxf.CxfClientConfig.WellKnownHostnameVerifier
-
- All Implemented Interfaces:
Serializable,Comparable<CxfClientConfig.WellKnownHostnameVerifier>
- Enclosing interface:
- CxfClientConfig
public static enum CxfClientConfig.WellKnownHostnameVerifier extends Enum<CxfClientConfig.WellKnownHostnameVerifier>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AllowAllHostnameVerifierHttpsURLConnectionDefaultHostnameVerifier
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidconfigure(org.apache.cxf.configuration.jsse.TLSClientParameters params)static Optional<CxfClientConfig.WellKnownHostnameVerifier>of(String name)static CxfClientConfig.WellKnownHostnameVerifiervalueOf(String name)Returns the enum constant of this type with the specified name.static CxfClientConfig.WellKnownHostnameVerifier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AllowAllHostnameVerifier
public static final CxfClientConfig.WellKnownHostnameVerifier AllowAllHostnameVerifier
-
HttpsURLConnectionDefaultHostnameVerifier
public static final CxfClientConfig.WellKnownHostnameVerifier HttpsURLConnectionDefaultHostnameVerifier
-
-
Method Detail
-
values
public static CxfClientConfig.WellKnownHostnameVerifier[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CxfClientConfig.WellKnownHostnameVerifier c : CxfClientConfig.WellKnownHostnameVerifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CxfClientConfig.WellKnownHostnameVerifier valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
configure
public abstract void configure(org.apache.cxf.configuration.jsse.TLSClientParameters params)
-
of
public static Optional<CxfClientConfig.WellKnownHostnameVerifier> of(String name)
-
-