public class DelegatingConnectionFactory extends java.lang.Object implements ConnectionFactory, InitializingBean
ConnectionFactory
implementation that delegates all calls
to a given target ConnectionFactory
.
This class is meant to be subclassed, with subclasses overriding only
those methods (such as getConnection()
) that should not simply
delegate to the target ConnectionFactory
.
getConnection()
,
Serialized FormConstructor and Description |
---|
DelegatingConnectionFactory() |
Modifier and Type | Method and Description |
---|---|
void |
afterPropertiesSet()
Invoked by a BeanFactory after it has set all bean properties supplied
(and satisfied BeanFactoryAware and ApplicationContextAware).
|
Connection |
getConnection() |
Connection |
getConnection(ConnectionSpec connectionSpec) |
ResourceAdapterMetaData |
getMetaData() |
RecordFactory |
getRecordFactory() |
javax.naming.Reference |
getReference() |
ConnectionFactory |
getTargetConnectionFactory()
Return the target ConnectionFactory that this ConnectionFactory should delegate to.
|
protected ConnectionFactory |
obtainTargetConnectionFactory()
Obtain the target
ConnectionFactory for actual use (never null ). |
void |
setReference(javax.naming.Reference reference) |
void |
setTargetConnectionFactory(ConnectionFactory targetConnectionFactory)
Set the target ConnectionFactory that this ConnectionFactory should delegate to.
|
public void setTargetConnectionFactory(@Nullable ConnectionFactory targetConnectionFactory)
@Nullable public ConnectionFactory getTargetConnectionFactory()
protected ConnectionFactory obtainTargetConnectionFactory()
ConnectionFactory
for actual use (never null
).public void afterPropertiesSet()
InitializingBean
This method allows the bean instance to perform initialization only possible when all bean properties have been set and to throw an exception in the event of misconfiguration.
afterPropertiesSet
in interface InitializingBean
public Connection getConnection() throws ResourceException
getConnection
in interface ConnectionFactory
ResourceException
public Connection getConnection(ConnectionSpec connectionSpec) throws ResourceException
getConnection
in interface ConnectionFactory
ResourceException
public RecordFactory getRecordFactory() throws ResourceException
getRecordFactory
in interface ConnectionFactory
ResourceException
public ResourceAdapterMetaData getMetaData() throws ResourceException
getMetaData
in interface ConnectionFactory
ResourceException
public javax.naming.Reference getReference() throws javax.naming.NamingException
getReference
in interface javax.naming.Referenceable
javax.naming.NamingException
public void setReference(javax.naming.Reference reference)