Package oracle.jdbc.spi
Interface OracleResourceProvider.Parameter
-
- Enclosing interface:
- OracleResourceProvider
public static interface OracleResourceProvider.ParameterA parameter that configures anOracleResourceProvider. Instances ofParametermay be queried by Oracle JDBC and database tools.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.CharSequencedefaultValue()Returns the default value of this parameter, if any.default java.lang.Stringdescription()Returns a human-readable description of this parameter.default booleanisRequired()Returnstrueif configuring this parameter is required, orfalseif it is optional.booleanisSensitive()Returnstrueif this parameter may set to a security sensitive value, such as a password.java.lang.Stringname()Returns the name of this parameter.
-
-
-
Method Detail
-
name
java.lang.String name()
Returns the name of this parameter. Names are case-insensitive.- Returns:
- The name of this parameter. Not null.
-
isSensitive
boolean isSensitive()
Returnstrueif this parameter may set to a security sensitive value, such as a password.- Returns:
trueif this parameter is security sensitive, orfalseif not.
-
description
default java.lang.String description()
Returns a human-readable description of this parameter. This method is intended for database tools to display information about this parameter to a user.- Returns:
- A description of this parameter. Not null.
-
isRequired
default boolean isRequired()
Returnstrueif configuring this parameter is required, orfalseif it is optional.- Returns:
trueif this is a required parameter, orfalseif not.
-
defaultValue
default java.lang.CharSequence defaultValue()
Returns the default value of this parameter, if any.- Returns:
- The default value of this parameter, or
nullif there is no default value.
-
-