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