Class DestinationConfiguration
- java.lang.Object
-
- org.wildfly.extension.messaging.activemq.jms.DestinationConfiguration
-
public class DestinationConfiguration extends Object
- Author:
- Emmanuel Hugonnet (c) 2018 Red Hat, inc.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDestinationConfiguration.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreateQueue(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String queueName)voidcreateTopic(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String topicName)voiddestroyQueue(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String queueName)voiddestroyTopic(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String topicName)org.jboss.msc.service.ServiceNamegetDestinationServiceName()javax.jms.QueuegetManagementQueue()StringgetName()StringgetResourceAdapter()StringgetSelector()booleanisDurable()
-
-
-
Method Detail
-
isDurable
public boolean isDurable()
-
getSelector
public String getSelector()
-
getName
public String getName()
-
getDestinationServiceName
public org.jboss.msc.service.ServiceName getDestinationServiceName()
-
getResourceAdapter
public String getResourceAdapter()
-
getManagementQueue
public javax.jms.Queue getManagementQueue()
-
createQueue
public void createQueue(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String queueName) throws javax.jms.JMSException, org.jboss.msc.service.StartException- Throws:
javax.jms.JMSExceptionorg.jboss.msc.service.StartException
-
destroyQueue
public void destroyQueue(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String queueName) throws javax.jms.JMSException- Throws:
javax.jms.JMSException
-
createTopic
public void createTopic(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String topicName) throws javax.jms.JMSException, org.jboss.msc.service.StartException- Throws:
javax.jms.JMSExceptionorg.jboss.msc.service.StartException
-
destroyTopic
public void destroyTopic(javax.jms.ConnectionFactory cf, javax.jms.Queue managementQueue, String topicName) throws javax.jms.JMSException- Throws:
javax.jms.JMSException
-
-