Enum Class PostgresConfigurationProperty
java.lang.Object
java.lang.Enum<PostgresConfigurationProperty>
org.odpi.openmetadata.adapters.connectors.postgres.controls.PostgresConfigurationProperty
- All Implemented Interfaces:
Serializable
,Comparable<PostgresConfigurationProperty>
,Constable
PostgresConfigurationProperty provides definitions for the configuration properties used with the postgres connectors.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionProvides a list of database names that should not be catalogued.The name of the database being catalogued.The password to store in the clearPassword attribute of the connection.The userId to store in the userId attribute of the connection.Provides a list of database names that should not be catalogued.The host IP address or domain name of the database server.Provides a list of databases that should be catalogued.The number of the port to use to connect to the database server.The name of the database schema being catalogued.The name of the database server being catalogued.The name of the database table being catalogued. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturn a summary of this enum to use in a connector provider.static List<ConfigurationPropertyType>
Retrieve all the defined configuration propertiesReturn 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.static List<ConfigurationPropertyType>
Retrieve the defined configuration properties for theGet recognizedConfigurationProperties for the PostgreSQLServer Integration connector.boolean
Return whether this value is also used as a placeholder property.toString()
Output of this enum class and main value.Returns the enum constant of this class with the specified name.static PostgresConfigurationProperty[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HOST_IDENTIFIER
The host IP address or domain name of the database server. -
PORT_NUMBER
The number of the port to use to connect to the database server. -
SERVER_NAME
The name of the database server being catalogued. -
DATABASE_NAME
The name of the database being catalogued. -
DATABASE_USER_ID
The userId to store in the userId attribute of the connection. -
DATABASE_PASSWORD
The password to store in the clearPassword attribute of the connection. -
SCHEMA_NAME
The name of the database schema being catalogued. -
TABLE_NAME
The name of the database table being catalogued. -
DATABASE_CATALOG_TEMPLATE_QUALIFIED_NAME
Provides a list of database names that should not be catalogued. -
EXCLUDE_DATABASE_LIST
Provides a list of database names that should not be catalogued. -
INCLUDE_DATABASE_LIST
Provides a list of databases that should be catalogued. If not set, or null, or *, all databases except the excluded databases are catalogued.
-
-
Field Details
-
name
-
description
-
dataType
-
example
-
isPlaceholder
public final boolean isPlaceholder
-
-
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
-
isPlaceholder
public boolean isPlaceholder()Return whether this value is also used as a placeholder property.- Returns:
- boolean
-
getPostgresServerIntegrationConnectorNames
Get recognizedConfigurationProperties for the PostgreSQLServer Integration connector.- Returns:
- list of property names
-
getPostgresServerConfigurationPropertyTypes
Retrieve the defined configuration properties for the- Returns:
- list of configuration property types
-
getConfigurationPropertyTypes
Retrieve all the defined configuration properties- Returns:
- list of configuration property types
-
getConfigurationPropertyType
Return a summary of this enum to use in a connector provider.- Returns:
- request parameter type
-
toString
Output of this enum class and main value.- Overrides:
toString
in classEnum<PostgresConfigurationProperty>
- Returns:
- string showing enum value
-