public class CustomConnectionCreator extends AbstractConnectionCreator
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
SUBTYPE_THIRD_PARTY |
Constructor and Description |
---|
CustomConnectionCreator() |
Modifier and Type | Method and Description |
---|---|
protected boolean |
allowNullPassword()
Third party connections should allow null passwords as this is valid for drivers like
PostGresSQL
|
java.lang.String |
getConnectionURL(java.util.Properties props)
The default implementation on this abstract class return the
DatabaseProvider.DRIVER_CLASS_REFTYPE property.
|
java.lang.String |
getDriverClassName(java.util.Properties props)
The default implementation on this class returns the
DatabaseProvider.CUSTOM_URL_CLASS_REFTYPE property.
|
java.util.Collection<java.lang.String> |
listRequiredProperties()
Gets a list of the properties that are required for this creator to be
able to create a connection.
|
convertToJDBCParameterInfos, getBundle, getConnection, getDriver, getInvalidURLMessage, getJDBCProperties, getLogger, getPropertyOrThrow, hasLength, listAllowedProperties, listJDBCParameterInfos, loadDriver, setCustomProperties, shouldEncrypt, shouldPromptForPassword, throwMissingPropertyException
public static final java.lang.String SUBTYPE_THIRD_PARTY
public java.lang.String getConnectionURL(java.util.Properties props) throws java.sql.SQLException
AbstractConnectionCreator
getConnectionURL
in interface ConnectionCreator
getConnectionURL
in class AbstractConnectionCreator
props
- the properties from the underlying DatabaseProvider
connection definitionjava.sql.SQLException
- if a valid connection URL cannot be created with
the given props.public java.lang.String getDriverClassName(java.util.Properties props) throws java.sql.SQLException
AbstractConnectionCreator
getDriverClassName
in interface ConnectionCreator
getDriverClassName
in class AbstractConnectionCreator
java.sql.SQLException
protected boolean allowNullPassword()
allowNullPassword
in class AbstractConnectionCreator
AbstractConnectionCreator.listAllowedProperties()
public java.util.Collection<java.lang.String> listRequiredProperties()
ConnectionCreator
DatabaseProvider.SUBTYPE_CLASS_REFTYPE
is always implicitly
required, it does not need to be included in this list.
listRequiredProperties
in interface ConnectionCreator
listRequiredProperties
in class AbstractConnectionCreator
ConnectionCreator.listAllowedProperties()