| java.lang.Object org.springframework.jca.support.ResourceAdapterFactoryBean
Method Summary | |
public void | afterPropertiesSet() Builds the BootstrapContext and starts the ResourceAdapter with it. | public void | destroy() Stops the ResourceAdapter. | public Object | getObject() | public Class | getObjectType() | public boolean | isSingleton() | public void | setBootstrapContext(BootstrapContext bootstrapContext) Specify the JCA BootstrapContext to use for starting the ResourceAdapter. | public void | setResourceAdapter(ResourceAdapter resourceAdapter) Specify the target JCA ResourceAdapter, passed in as configured instance
which hasn't been started yet. | public void | setResourceAdapterClass(Class resourceAdapterClass) Specify the target JCA ResourceAdapter as class, to be instantiated
with its default configuration. | public void | setWorkManager(WorkManager workManager) Specify the JCA WorkManager to use for bootstrapping the ResourceAdapter. | public void | setXaTerminator(XATerminator xaTerminator) Specify the JCA XATerminator to use for bootstrapping the ResourceAdapter. |
afterPropertiesSet | public void afterPropertiesSet() throws ResourceException(Code) | | Builds the BootstrapContext and starts the ResourceAdapter with it.
See Also: javax.resource.spi.ResourceAdapter.start(javax.resource.spi.BootstrapContext) |
destroy | public void destroy()(Code) | | Stops the ResourceAdapter.
See Also: javax.resource.spi.ResourceAdapter.stop |
isSingleton | public boolean isSingleton()(Code) | | |
setResourceAdapter | public void setResourceAdapter(ResourceAdapter resourceAdapter)(Code) | | Specify the target JCA ResourceAdapter, passed in as configured instance
which hasn't been started yet. This will typically happen as an
inner bean definition, configuring the ResourceAdapter instance
through its vendor-specific bean properties.
|
setResourceAdapterClass | public void setResourceAdapterClass(Class resourceAdapterClass)(Code) | | Specify the target JCA ResourceAdapter as class, to be instantiated
with its default configuration.
Alternatively, specify a pre-configured ResourceAdapter instance
through the "resourceAdapter" property.
See Also: ResourceAdapterFactoryBean.setResourceAdapter |
|
|