Module org.firebirdsql.jaybird
Package org.firebirdsql.gds.ng
Class AbstractParameterConverter<D extends AbstractConnection<IConnectionProperties,?>,S extends AbstractConnection<IServiceProperties,?>>
java.lang.Object
org.firebirdsql.gds.ng.AbstractParameterConverter<D,S>
- All Implemented Interfaces:
ParameterConverter<D,
S>
- Direct Known Subclasses:
V10ParameterConverter
public abstract class AbstractParameterConverter<D extends AbstractConnection<IConnectionProperties,?>,S extends AbstractConnection<IServiceProperties,?>>
extends Object
implements ParameterConverter<D,S>
Abstract class for behavior common to
ParameterConverter
implementations.- Since:
- 3.0
- Author:
- Mark Rotteveel
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected DatabaseParameterBuffer
createDatabaseParameterBuffer
(D connection) protected ServiceParameterBuffer
createServiceParameterBuffer
(S connection) protected abstract void
populateAuthenticationProperties
(AbstractConnection<?, ?> connection, ConnectionParameterBuffer pb) Populates the authentication properties of the parameter buffer.protected void
populateDefaultProperties
(D connection, DatabaseParameterBuffer dpb) Populates the database parameter buffer with the standard Firebird properties explicitly supported throughIConnectionProperties
.protected void
populateDefaultProperties
(S connection, ServiceParameterBuffer spb) Populates the database parameter buffer with the standard Firebird properties explicitly supported throughIConnectionProperties
.final DatabaseParameterBuffer
toDatabaseParameterBuffer
(D connection) Builds aDatabaseParameterBuffer
from the supplied {code IConnectionProperties}.final ServiceParameterBuffer
toServiceParameterBuffer
(S connection) Builds aServiceParameterBuffer
from the supplied {code IServiceProperties}.
-
Constructor Details
-
AbstractParameterConverter
public AbstractParameterConverter()
-
-
Method Details
-
createDatabaseParameterBuffer
-
createServiceParameterBuffer
-
toDatabaseParameterBuffer
Description copied from interface:ParameterConverter
Builds aDatabaseParameterBuffer
from the supplied {code IConnectionProperties}.- Specified by:
toDatabaseParameterBuffer
in interfaceParameterConverter<D extends AbstractConnection<IConnectionProperties,
?>, S extends AbstractConnection<IServiceProperties, ?>> - Parameters:
connection
- Database connection- Returns:
- Database parameter buffer populated based on the connection properties
- Throws:
SQLException
- For errors
-
populateDefaultProperties
protected void populateDefaultProperties(D connection, DatabaseParameterBuffer dpb) throws SQLException Populates the database parameter buffer with the standard Firebird properties explicitly supported throughIConnectionProperties
.- Parameters:
connection
- Database connectiondpb
- Database parameter buffer to populate- Throws:
SQLException
- For errors generating authentication information
-
populateAuthenticationProperties
protected abstract void populateAuthenticationProperties(AbstractConnection<?, ?> connection, ConnectionParameterBuffer pb) throws SQLExceptionPopulates the authentication properties of the parameter buffer.- Parameters:
connection
- Database connectionpb
- Parameter buffer to populate- Throws:
SQLException
- For errors generating authentication information
-
toServiceParameterBuffer
Description copied from interface:ParameterConverter
Builds aServiceParameterBuffer
from the supplied {code IServiceProperties}.- Specified by:
toServiceParameterBuffer
in interfaceParameterConverter<D extends AbstractConnection<IConnectionProperties,
?>, S extends AbstractConnection<IServiceProperties, ?>> - Parameters:
connection
- Service connection- Returns:
- Service parameter buffer populated based on the service properties
- Throws:
SQLException
- For errors
-
populateDefaultProperties
protected void populateDefaultProperties(S connection, ServiceParameterBuffer spb) throws SQLException Populates the database parameter buffer with the standard Firebird properties explicitly supported throughIConnectionProperties
.- Parameters:
connection
- Service connectionspb
- Service parameter buffer to populate- Throws:
SQLException
- For errors generating authentication information
-