Enum Class SecretsStoreCollectionProperty
java.lang.Object
java.lang.Enum<SecretsStoreCollectionProperty>
org.odpi.openmetadata.frameworks.connectors.controls.SecretsStoreCollectionProperty
- All Implemented Interfaces:
Serializable
,Comparable<SecretsStoreCollectionProperty>
,Constable
SecretsStoreConfigurationProperty provides definitions for typical properties used with the secrets store collections.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA password used to prove a user's identity - in clear text.A password used to prove a user's identity - encrypted.The time interval in minutes that tokens should be kept.An encrypted token to provide access to a remote digital resource.A URL to retrieve an access token.The name used to identify the collection of properties that a particular connector is using. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn the data type for the configuration property.Return the description of the configuration property.Return an example of the configuration property to help users understand how to set it up.getName()
Return the name of the request parameter.toString()
Output of this enum class and main value.Returns the enum constant of this class with the specified name.static SecretsStoreCollectionProperty[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REFRESH_TIME_INTERVAL
The time interval in minutes that tokens should be kept. -
USER_ID
The name used to identify the collection of properties that a particular connector is using. -
CLEAR_PASSWORD
A password used to prove a user's identity - in clear text. -
ENCRYPTED_PASSWORD
A password used to prove a user's identity - encrypted. -
TOKEN
An encrypted token to provide access to a remote digital resource. -
TOKEN_URL
A URL to retrieve an access token.
-
-
Field Details
-
name
-
description
-
dataType
-
example
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
Return the name of the request parameter.- Returns:
- string name
-
getDescription
Return the description of the configuration property.- Returns:
- text
-
getDataType
Return the data type for the configuration property.- Returns:
- data type name
-
getExample
Return an example of the configuration property to help users understand how to set it up.- Returns:
- example
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<SecretsStoreCollectionProperty>
- Returns:
- string showing enum value
-