Package org.forgerock.audit.handlers.jms
Interface JmsContextManager
- 
public interface JmsContextManagerInterface for retrieving aJMS topicand aJMS connection factory. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.jms.ConnectionFactorygetConnectionFactory()Gets aJMS connection factory.javax.jms.TopicgetTopic()Gets aJMS topic. 
 - 
 
- 
- 
Method Detail
- 
getTopic
javax.jms.Topic getTopic() throws InternalServerErrorExceptionGets aJMS topic.- Returns:
 - a 
JMS topic. - Throws:
 InternalServerErrorException- if an error occurs getting theJMS topic.
 
- 
getConnectionFactory
javax.jms.ConnectionFactory getConnectionFactory() throws InternalServerErrorExceptionGets aJMS connection factory.- Returns:
 - a 
JMS connection factory. - Throws:
 InternalServerErrorException- if an error occurs getting theJMS connection factory.
 
 - 
 
 -