Enum CAConnectorType
- java.lang.Object
-
- java.lang.Enum<CAConnectorType>
-
- de.trustable.ca3s.core.domain.enumeration.CAConnectorType
-
- All Implemented Interfaces:
Serializable,Comparable<CAConnectorType>
public enum CAConnectorType extends Enum<CAConnectorType>
The CAConnectorType enumeration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADCSADCS_CERTIFICATE_INVENTORYCMPDIRECTORYEJBCA_INVENTORYINTERNALVAULTVAULT_INVENTORY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CAConnectorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CAConnectorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNAL
public static final CAConnectorType INTERNAL
-
CMP
public static final CAConnectorType CMP
-
ADCS
public static final CAConnectorType ADCS
-
ADCS_CERTIFICATE_INVENTORY
public static final CAConnectorType ADCS_CERTIFICATE_INVENTORY
-
DIRECTORY
public static final CAConnectorType DIRECTORY
-
VAULT
public static final CAConnectorType VAULT
-
VAULT_INVENTORY
public static final CAConnectorType VAULT_INVENTORY
-
EJBCA_INVENTORY
public static final CAConnectorType EJBCA_INVENTORY
-
-
Method Detail
-
values
public static CAConnectorType[] 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 (CAConnectorType c : CAConnectorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CAConnectorType 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
-
-