Interface JMSServerConfigParser
-
public interface JMSServerConfigParser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JMSConfigurationparseConfiguration(InputStream stream)Parse the JMS Configuration XML as a JMSConfiguration objectJMSConfigurationparseConfiguration(Node rootnode)Parse the JMS Configuration XML as a JMSConfiguration objectJMSQueueConfigurationparseQueueConfiguration(Node node)Parse the Queue Configuration node as a QueueConfiguration objectTopicConfigurationparseTopicConfiguration(Node node)Parse the topic node as a TopicConfiguration object
-
-
-
Method Detail
-
parseConfiguration
JMSConfiguration parseConfiguration(InputStream stream) throws Exception
Parse the JMS Configuration XML as a JMSConfiguration object- Throws:
Exception
-
parseConfiguration
JMSConfiguration parseConfiguration(Node rootnode) throws Exception
Parse the JMS Configuration XML as a JMSConfiguration object- Throws:
Exception
-
parseTopicConfiguration
TopicConfiguration parseTopicConfiguration(Node node) throws Exception
Parse the topic node as a TopicConfiguration object- Parameters:
node-- Returns:
TopicConfigurationparsed from the node- Throws:
Exception
-
parseQueueConfiguration
JMSQueueConfiguration parseQueueConfiguration(Node node) throws Exception
Parse the Queue Configuration node as a QueueConfiguration object- Parameters:
node-- Returns:
JMSQueueConfigurationparsed from the node- Throws:
Exception
-
-