public class MockConfiguration extends Object implements Configuration
This Configuration
wraps a delegate Configuration
and
wraps all ConnectionProvider
references in
MockConnectionProvider
.
Constructor and Description |
---|
MockConfiguration(Configuration delegate,
MockDataProvider provider) |
Modifier and Type | Method and Description |
---|---|
ConnectionProvider |
connectionProvider()
Get this configuration's underlying connection provider.
|
ConverterProvider |
converterProvider()
Get the configured
ConverterProvider from this
configuration. |
Map<Object,Object> |
data()
Get all custom data from this
Configuration . |
Object |
data(Object key)
Get some custom data from this
Configuration . |
Object |
data(Object key,
Object value)
Set some custom data to this
Configuration . |
Configuration |
derive()
Create a derived configuration from this one, without changing any
properties.
|
Configuration |
derive(Connection newConnection)
Create a derived configuration from this one, with a new connection
wrapped in a
DefaultConnectionProvider . |
Configuration |
derive(ConnectionProvider newConnectionProvider)
Create a derived configuration from this one, with a new connection
provider.
|
Configuration |
derive(ConverterProvider newConverterProvider)
Create a derived configuration from this one, with new converter
provider.
|
Configuration |
derive(DataSource newDataSource)
Create a derived configuration from this one, with a new data source
wrapped in a
DataSourceConnectionProvider . |
Configuration |
derive(ExecuteListenerProvider... newExecuteListenerProviders)
Create a derived configuration from this one, with new execute listener
providers.
|
Configuration |
derive(ExecutorProvider newExecutorProvider)
Create a derived configuration from this one, with a new executor
provider.
|
Configuration |
derive(RecordListenerProvider... newRecordListenerProviders)
Create a derived configuration from this one, with new record listener
providers.
|
Configuration |
derive(RecordMapperProvider newRecordMapperProvider)
Create a derived configuration from this one, with a new record mapper
provider.
|
Configuration |
derive(Settings newSettings)
Create a derived configuration from this one, with new settings.
|
Configuration |
derive(SQLDialect newDialect)
Create a derived configuration from this one, with a new dialect.
|
Configuration |
derive(TransactionProvider newTransactionProvider)
Create a derived configuration from this one, with a new transaction
provider.
|
Configuration |
derive(VisitListenerProvider... newVisitListenerProviders)
Create a derived configuration from this one, with new visit listener
providers.
|
SQLDialect |
dialect()
Retrieve the configured dialect.
|
ExecuteListenerProvider[] |
executeListenerProviders()
Get the configured
ExecuteListenerProvider s from this
configuration. |
ExecutorProvider |
executorProvider()
Get this configuration's underlying executor provider.
|
SQLDialect |
family()
Retrieve the family of the configured dialect.
|
RecordListenerProvider[] |
recordListenerProviders()
Get the configured
RecordListenerProvider s from this
configuration. |
RecordMapperProvider |
recordMapperProvider()
Get this configuration's underlying record mapper provider.
|
SchemaMapping |
schemaMapping()
Retrieve the configured schema mapping.
|
Configuration |
set(Connection newConnection)
Change this configuration to hold a new connection wrapped in a
DefaultConnectionProvider . |
Configuration |
set(ConnectionProvider newConnectionProvider)
Change this configuration to hold a new connection provider.
|
Configuration |
set(ConverterProvider newConverterProvider)
Change this configuration to hold a new converter provider.
|
Configuration |
set(DataSource newDataSource)
Change this configuration to hold a new data source wrapped in a
DataSourceConnectionProvider . |
Configuration |
set(ExecuteListenerProvider... newExecuteListenerProviders)
Change this configuration to hold a new execute listener providers.
|
Configuration |
set(ExecutorProvider newExecutorProvider)
Change this configuration to hold a new executor provider.
|
Configuration |
set(RecordListenerProvider... newRecordListenerProviders)
Change this configuration to hold a new record listener providers.
|
Configuration |
set(RecordMapperProvider newRecordMapperProvider)
Change this configuration to hold a new record mapper provider.
|
Configuration |
set(Settings newSettings)
Change this configuration to hold a new settings.
|
Configuration |
set(SQLDialect newDialect)
Change this configuration to hold a new dialect.
|
Configuration |
set(TransactionProvider newTransactionProvider)
Change this configuration to hold a new transaction provider.
|
Configuration |
set(VisitListenerProvider... newVisitListenerProviders)
Change this configuration to hold a new visit listener providers.
|
Settings |
settings()
Retrieve the runtime configuration settings.
|
TransactionProvider |
transactionProvider()
Get this configuration's underlying transaction provider.
|
VisitListenerProvider[] |
visitListenerProviders()
TODO [#2667]
|
public MockConfiguration(Configuration delegate, MockDataProvider provider)
public Map<Object,Object> data()
Configuration
Configuration
.
This is custom data that was previously set to the configuration using
Configuration.data(Object, Object)
. Use custom data if you want to pass data
to your custom QueryPart
or ExecuteListener
objects to be
made available at render, bind, execution, fetch time.
See ExecuteListener
for more details.
data
in interface Configuration
null
ExecuteListener
public Object data(Object key)
Configuration
Configuration
.
This is custom data that was previously set to the configuration using
Configuration.data(Object, Object)
. Use custom data if you want to pass data
to your custom QueryPart
or ExecuteListener
objects to be
made available at render, bind, execution, fetch time.
See ExecuteListener
for more details.
data
in interface Configuration
key
- A key to identify the custom datanull
if no such data is contained
in this Configuration
ExecuteListener
public Object data(Object key, Object value)
Configuration
Configuration
.
Use custom data if you want to pass data to your custom QueryPart
or ExecuteListener
objects to be made available at render, bind,
execution, fetch time.
Be sure that your custom data implements Serializable
if you want
to serialise this Configuration
or objects referencing this
Configuration
, e.g. your Record
types.
See ExecuteListener
for more details.
data
in interface Configuration
key
- A key to identify the custom datavalue
- The custom datanull
if no data
was previously set for the given keyExecuteListener
public ConnectionProvider connectionProvider()
Configuration
connectionProvider
in interface Configuration
public ExecutorProvider executorProvider()
Configuration
Asynchronous operations will call back to this SPI to obtain an executor.
This applies, for example, to ResultQuery.fetchAsync()
.
The following logic is applied when resolving the appropriate
executor
:
Configuration.executorProvider()
does not return
null
, then ExecutorProvider.provide()
is called to
obtain an Executor
for the asynchronous task.ForkJoinPool.commonPool()
is
used if ForkJoinPool.getCommonPoolParallelism()
> 1
Executor
is used in any
other case.
The SPI will not be called if an asynchronous operation explicitly
overrides the Executor
, e.g. as is the case for
ResultQuery.fetchAsync(Executor)
.
executorProvider
in interface Configuration
public TransactionProvider transactionProvider()
Configuration
If no explicit transaction provider was specified, and if
Configuration.connectionProvider()
is a DefaultConnectionProvider
,
then this will return a DefaultTransactionProvider
.
transactionProvider
in interface Configuration
public RecordMapperProvider recordMapperProvider()
Configuration
recordMapperProvider
in interface Configuration
public RecordListenerProvider[] recordListenerProviders()
Configuration
RecordListenerProvider
s from this
configuration.
This method allows for retrieving the configured
RecordListenerProvider
from this configuration. The
providers will provide jOOQ with RecordListener
instances. These
instances receive record manipulation notification events every time jOOQ
executes queries. jOOQ makes no assumptions about the internal state of
these listeners, i.e. listener instances may
Configuration
's lifecycle (i.e. that of a
JDBC Connection
, or that of a transaction)RecordContext
(i.e. that of a
single record manipulation)recordListenerProviders
in interface Configuration
RecordListenerProvider
,
RecordListener
,
RecordContext
public ExecuteListenerProvider[] executeListenerProviders()
Configuration
ExecuteListenerProvider
s from this
configuration.
This method allows for retrieving the configured
ExecuteListenerProvider
from this configuration. The
providers will provide jOOQ with ExecuteListener
instances. These
instances receive execution lifecycle notification events every time jOOQ
executes queries. jOOQ makes no assumptions about the internal state of
these listeners, i.e. listener instances may
Configuration
's lifecycle (i.e. that of a
JDBC Connection
, or that of a transaction)ExecuteContext
(i.e. that of a
single query execution)
Note, depending on your Settings.isExecuteLogging()
, some
additional listeners may be prepended to this list, internally. Those
listeners will never be exposed through this method, though.
executeListenerProviders
in interface Configuration
ExecuteListenerProvider
,
ExecuteListener
,
ExecuteContext
public VisitListenerProvider[] visitListenerProviders()
Configuration
visitListenerProviders
in interface Configuration
public ConverterProvider converterProvider()
Configuration
ConverterProvider
from this
configuration.converterProvider
in interface Configuration
public SchemaMapping schemaMapping()
Configuration
schemaMapping
in interface Configuration
public SQLDialect dialect()
Configuration
dialect
in interface Configuration
public SQLDialect family()
Configuration
family
in interface Configuration
public Settings settings()
Configuration
settings
in interface Configuration
public Configuration set(ConnectionProvider newConnectionProvider)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newConnectionProvider
- The new connection provider to be contained
in the changed configuration.public Configuration set(Connection newConnection)
Configuration
DefaultConnectionProvider
.
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newConnection
- The new connection to be contained in the changed
configuration.public Configuration set(DataSource newDataSource)
Configuration
DataSourceConnectionProvider
.
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
public Configuration set(ExecutorProvider newExecutorProvider)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newExecutorProvider
- The new executor provider to be contained in
the changed configuration.public Configuration set(TransactionProvider newTransactionProvider)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newTransactionProvider
- The new transaction provider to be
contained in the changed configuration.public Configuration set(RecordMapperProvider newRecordMapperProvider)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newRecordMapperProvider
- The new record mapper provider to be
contained in the changed configuration.public Configuration set(RecordListenerProvider... newRecordListenerProviders)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newRecordListenerProviders
- The new record listener providers to
be contained in the changed configuration.public Configuration set(ExecuteListenerProvider... newExecuteListenerProviders)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newExecuteListenerProviders
- The new execute listener providers to
be contained in the changed configuration.public Configuration set(VisitListenerProvider... newVisitListenerProviders)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newVisitListenerProviders
- The new visit listener providers to
be contained in the changed configuration.public Configuration set(ConverterProvider newConverterProvider)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newConverterProvider
- The new converter provider to be contained in
the changed configuration.public Configuration set(SQLDialect newDialect)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newDialect
- The new dialect to be contained in the changed
configuration.public Configuration set(Settings newSettings)
Configuration
This method is not thread-safe and should not be used in globally
available Configuration
objects.
set
in interface Configuration
newSettings
- The new settings to be contained in the changed
configuration.public Configuration derive()
Configuration
derive
in interface Configuration
public Configuration derive(ConnectionProvider newConnectionProvider)
Configuration
derive
in interface Configuration
newConnectionProvider
- The new connection provider to be contained
in the derived configuration.public Configuration derive(ExecutorProvider newExecutorProvider)
Configuration
derive
in interface Configuration
newExecutorProvider
- The new executor provider to be contained in
the derived configuration.public Configuration derive(Connection newConnection)
Configuration
DefaultConnectionProvider
.derive
in interface Configuration
newConnection
- The new connection to be contained in the derived
configuration.public Configuration derive(DataSource newDataSource)
Configuration
DataSourceConnectionProvider
.derive
in interface Configuration
newDataSource
- The new data source to be contained in the derived
configuration.public Configuration derive(TransactionProvider newTransactionProvider)
Configuration
derive
in interface Configuration
newTransactionProvider
- The new transaction provider to be
contained in the derived configuration.public Configuration derive(RecordMapperProvider newRecordMapperProvider)
Configuration
derive
in interface Configuration
newRecordMapperProvider
- The new record mapper provider to be
contained in the derived configuration.public Configuration derive(RecordListenerProvider... newRecordListenerProviders)
Configuration
derive
in interface Configuration
newRecordListenerProviders
- The new record listener providers to
be contained in the derived configuration.public Configuration derive(ExecuteListenerProvider... newExecuteListenerProviders)
Configuration
derive
in interface Configuration
newExecuteListenerProviders
- The new execute listener providers to
be contained in the derived configuration.public Configuration derive(VisitListenerProvider... newVisitListenerProviders)
Configuration
derive
in interface Configuration
newVisitListenerProviders
- The new visit listener providers to
be contained in the derived configuration.public Configuration derive(ConverterProvider newConverterProvider)
Configuration
derive
in interface Configuration
newConverterProvider
- The new converter provider to be contained in
the derived configuration.public Configuration derive(SQLDialect newDialect)
Configuration
derive
in interface Configuration
newDialect
- The new dialect to be contained in the derived
configuration.public Configuration derive(Settings newSettings)
Configuration
derive
in interface Configuration
newSettings
- The new settings to be contained in the derived
configuration.Copyright © 2016. All Rights Reserved.