| java.lang.Object org.springframework.jms.connection.DelegatingConnectionFactory
afterPropertiesSet | public void afterPropertiesSet()(Code) | | |
createConnection | public Connection createConnection() throws JMSException(Code) | | |
createConnection | public Connection createConnection(String username, String password) throws JMSException(Code) | | |
createQueueConnection | public QueueConnection createQueueConnection() throws JMSException(Code) | | |
createQueueConnection | public QueueConnection createQueueConnection(String username, String password) throws JMSException(Code) | | |
createTopicConnection | public TopicConnection createTopicConnection() throws JMSException(Code) | | |
createTopicConnection | public TopicConnection createTopicConnection(String username, String password) throws JMSException(Code) | | |
getTargetConnectionFactory | public ConnectionFactory getTargetConnectionFactory()(Code) | | Return the target ConnectionFactory that this ConnectionFactory delegates to.
|
setShouldStopConnections | public void setShouldStopConnections(boolean shouldStopConnections)(Code) | | Indicate whether Connections obtained from the target factory are supposed
to be stopped before closed ("true") or simply closed ("false").
The latter may be necessary for some connection pools that simply return
released connections to the pool, not stopping them while they sit in the pool.
Default is "false", simply closing Connections.
See Also: ConnectionFactoryUtils.releaseConnection |
setTargetConnectionFactory | public void setTargetConnectionFactory(ConnectionFactory targetConnectionFactory)(Code) | | Set the target ConnectionFactory that this ConnectionFactory should delegate to.
|
shouldStop | public boolean shouldStop(Connection con)(Code) | | |
|
|