Package io.quarkus.vault.pki
Enum CertificateExtendedKeyUsage
- java.lang.Object
-
- java.lang.Enum<CertificateExtendedKeyUsage>
-
- io.quarkus.vault.pki.CertificateExtendedKeyUsage
-
- All Implemented Interfaces:
Serializable,Comparable<CertificateExtendedKeyUsage>
public enum CertificateExtendedKeyUsage extends Enum<CertificateExtendedKeyUsage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ClientAuthCodeSigningEmailProtectionIPSECEndSystemIPSECTunnelIPSECUserMicrosoftCommercialCodeSigningMicrosoftKernelCodeSigningMicrosoftServerGatedCryptoNetscapeServerGatedCryptoOCSPSigningServerAuthTimeStamping
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CertificateExtendedKeyUsagevalueOf(String name)Returns the enum constant of this type with the specified name.static CertificateExtendedKeyUsage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ServerAuth
public static final CertificateExtendedKeyUsage ServerAuth
-
ClientAuth
public static final CertificateExtendedKeyUsage ClientAuth
-
CodeSigning
public static final CertificateExtendedKeyUsage CodeSigning
-
EmailProtection
public static final CertificateExtendedKeyUsage EmailProtection
-
IPSECEndSystem
public static final CertificateExtendedKeyUsage IPSECEndSystem
-
IPSECTunnel
public static final CertificateExtendedKeyUsage IPSECTunnel
-
IPSECUser
public static final CertificateExtendedKeyUsage IPSECUser
-
TimeStamping
public static final CertificateExtendedKeyUsage TimeStamping
-
OCSPSigning
public static final CertificateExtendedKeyUsage OCSPSigning
-
MicrosoftServerGatedCrypto
public static final CertificateExtendedKeyUsage MicrosoftServerGatedCrypto
-
NetscapeServerGatedCrypto
public static final CertificateExtendedKeyUsage NetscapeServerGatedCrypto
-
MicrosoftCommercialCodeSigning
public static final CertificateExtendedKeyUsage MicrosoftCommercialCodeSigning
-
MicrosoftKernelCodeSigning
public static final CertificateExtendedKeyUsage MicrosoftKernelCodeSigning
-
-
Method Detail
-
values
public static CertificateExtendedKeyUsage[] 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 (CertificateExtendedKeyUsage c : CertificateExtendedKeyUsage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CertificateExtendedKeyUsage 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
-
-