Package com.azure.spring.keyvault
Enum KeyVaultProperties.Property
- java.lang.Object
-
- java.lang.Enum<KeyVaultProperties.Property>
-
- com.azure.spring.keyvault.KeyVaultProperties.Property
-
- All Implemented Interfaces:
Serializable,Comparable<KeyVaultProperties.Property>
- Enclosing class:
- KeyVaultProperties
public static enum KeyVaultProperties.Property extends Enum<KeyVaultProperties.Property>
enum Property
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHORITY_HOSTAuthority hostCASE_SENSITIVE_KEYSCase sensitive keysCERTIFICATE_PASSWORDCertificate passwordCERTIFICATE_PATHCertificate pathCLIENT_IDClient IDCLIENT_KEYClient keyENABLEDEnabledORDEROrderREFRESH_INTERVALRefresh intervalSECRET_KEYSSecret keysSECRET_SERVICE_VERSIONSecret service versionTENANT_IDTenant IDURIURI
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyVaultProperties.PropertyvalueOf(String name)Returns the enum constant of this type with the specified name.static KeyVaultProperties.Property[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASE_SENSITIVE_KEYS
public static final KeyVaultProperties.Property CASE_SENSITIVE_KEYS
Case sensitive keys
-
CERTIFICATE_PASSWORD
public static final KeyVaultProperties.Property CERTIFICATE_PASSWORD
Certificate password
-
AUTHORITY_HOST
public static final KeyVaultProperties.Property AUTHORITY_HOST
Authority host
-
SECRET_SERVICE_VERSION
public static final KeyVaultProperties.Property SECRET_SERVICE_VERSION
Secret service version
-
CERTIFICATE_PATH
public static final KeyVaultProperties.Property CERTIFICATE_PATH
Certificate path
-
CLIENT_ID
public static final KeyVaultProperties.Property CLIENT_ID
Client ID
-
CLIENT_KEY
public static final KeyVaultProperties.Property CLIENT_KEY
Client key
-
ENABLED
public static final KeyVaultProperties.Property ENABLED
Enabled
-
ORDER
public static final KeyVaultProperties.Property ORDER
Order
-
REFRESH_INTERVAL
public static final KeyVaultProperties.Property REFRESH_INTERVAL
Refresh interval
-
SECRET_KEYS
public static final KeyVaultProperties.Property SECRET_KEYS
Secret keys
-
TENANT_ID
public static final KeyVaultProperties.Property TENANT_ID
Tenant ID
-
URI
public static final KeyVaultProperties.Property URI
URI
-
-
Method Detail
-
values
public static KeyVaultProperties.Property[] 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 (KeyVaultProperties.Property c : KeyVaultProperties.Property.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyVaultProperties.Property 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
-
-