Package net.webpdf.wsclient.openapi
Enum ApplicationConfigKeystore.TypeEnum
- java.lang.Object
-
- java.lang.Enum<ApplicationConfigKeystore.TypeEnum>
-
- net.webpdf.wsclient.openapi.ApplicationConfigKeystore.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ApplicationConfigKeystore.TypeEnum>
- Enclosing class:
- ApplicationConfigKeystore
public static enum ApplicationConfigKeystore.TypeEnum extends Enum<ApplicationConfigKeystore.TypeEnum>
The format of the keystore file. * NONE = Keystore not defined. * JKS = A Java keystore (file based with an extension like \".jks\"). * PKCS11 = A PKCS11 keystore (Smart cards, USB keys/token and hardware security modules (HSMs)). * PKCS12 = A PKCS12 keystore (file based with the extensions like \".p12\" or \".pfx\").
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JKSNONEPKCS11PKCS12WINDOWS_MACHINEWINDOWS_USER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ApplicationConfigKeystore.TypeEnumfromValue(String value)StringgetValue()StringtoString()static ApplicationConfigKeystore.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ApplicationConfigKeystore.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ApplicationConfigKeystore.TypeEnum NONE
-
JKS
public static final ApplicationConfigKeystore.TypeEnum JKS
-
PKCS11
public static final ApplicationConfigKeystore.TypeEnum PKCS11
-
PKCS12
public static final ApplicationConfigKeystore.TypeEnum PKCS12
-
WINDOWS_MACHINE
public static final ApplicationConfigKeystore.TypeEnum WINDOWS_MACHINE
-
WINDOWS_USER
public static final ApplicationConfigKeystore.TypeEnum WINDOWS_USER
-
-
Method Detail
-
values
public static ApplicationConfigKeystore.TypeEnum[] 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 (ApplicationConfigKeystore.TypeEnum c : ApplicationConfigKeystore.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplicationConfigKeystore.TypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ApplicationConfigKeystore.TypeEnum>
-
fromValue
public static ApplicationConfigKeystore.TypeEnum fromValue(String value)
-
-