summaryrefslogtreecommitdiffstats
path: root/sandbox/rajith/binding.jms/src/main/java/org/apache/tuscany/binding/jms/JMSBindingLoader.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/rajith/binding.jms/src/main/java/org/apache/tuscany/binding/jms/JMSBindingLoader.java')
-rw-r--r--sandbox/rajith/binding.jms/src/main/java/org/apache/tuscany/binding/jms/JMSBindingLoader.java119
1 files changed, 119 insertions, 0 deletions
diff --git a/sandbox/rajith/binding.jms/src/main/java/org/apache/tuscany/binding/jms/JMSBindingLoader.java b/sandbox/rajith/binding.jms/src/main/java/org/apache/tuscany/binding/jms/JMSBindingLoader.java
new file mode 100644
index 0000000000..c419df81f0
--- /dev/null
+++ b/sandbox/rajith/binding.jms/src/main/java/org/apache/tuscany/binding/jms/JMSBindingLoader.java
@@ -0,0 +1,119 @@
+/**
+ *
+ * Copyright 2006 The Apache Software Foundation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.tuscany.binding.jms;
+
+import javax.xml.namespace.QName;
+import javax.xml.stream.XMLStreamException;
+import javax.xml.stream.XMLStreamReader;
+
+import org.osoa.sca.annotations.Scope;
+
+import org.apache.axiom.om.OMAbstractFactory;
+import org.apache.axiom.om.OMElement;
+import org.apache.axiom.om.OMXMLParserWrapper;
+import org.apache.axiom.om.impl.llom.factory.OMXMLBuilderFactory;
+import org.apache.tuscany.spi.annotation.Autowire;
+import org.apache.tuscany.spi.component.CompositeComponent;
+import org.apache.tuscany.spi.deployer.DeploymentContext;
+import org.apache.tuscany.spi.extension.LoaderExtension;
+import org.apache.tuscany.spi.loader.LoaderException;
+import org.apache.tuscany.spi.loader.LoaderRegistry;
+import org.apache.tuscany.spi.loader.LoaderUtil;
+
+/**
+ * Loader for handling <binding.jms> elements.
+ *
+ * @version $Rev$ $Date$
+ */
+@Scope("MODULE")
+public class JMSBindingLoader extends LoaderExtension<JMSBinding> {
+ public static final QName BINDING_JMS = new QName(
+ "http://tuscany.apache.org/xmlns/binding/jms/1.0-SNAPSHOT", "binding.jms");
+
+ public JMSBindingLoader(@Autowire LoaderRegistry registry) {
+ super(registry);
+ }
+
+ public QName getXMLType() {
+ return BINDING_JMS;
+ }
+
+ public JMSBinding load(CompositeComponent parent,
+ XMLStreamReader reader,
+ DeploymentContext deploymentContext) throws XMLStreamException, LoaderException {
+
+ OMXMLParserWrapper builder = OMXMLBuilderFactory.createStAXOMBuilder(OMAbstractFactory.getOMFactory(), reader);
+ OMElement omElement = builder.getDocumentElement();
+
+ OMElement connectionOM = omElement.getFirstChildWithName(new QName("connection.jms"));
+
+ String activationSpecName = connectionOM.getAttributeValue(new QName("activationSpecName"));
+ String destinationName = connectionOM.getAttributeValue(new QName("destinationName"));
+ String connectionFactoryName = connectionOM.getAttributeValue(new QName("connectionFactoryName")) ;
+ String initialContextFactoryName = connectionOM.getAttributeValue(new QName("initialContextFactoryName")) ;
+ String jNDIProviderURL = connectionOM.getAttributeValue(new QName("providerURL")) ;
+ String deliveryMode = connectionOM.getAttributeValue(new QName(null, "deliveryMode")) ;
+ String timeToLive = connectionOM.getAttributeValue(new QName(null, "timeToLive")) ;
+ String priority = connectionOM.getAttributeValue(new QName(null, "priority")) ;
+ String replyTo = connectionOM.getAttributeValue(new QName(null, "replyTo")) ;
+ String jmsResourceFactoryName = connectionOM.getAttributeValue(new QName(null, "jmsResourceFactory")) ;
+
+ OMElement opSecOM = omElement.getFirstChildWithName(new QName("operationSelector"));
+ String operationSelector = opSecOM.getAttributeValue(new QName("name"));
+ OMElement opSecPropertyOM = opSecOM.getFirstChildWithName(new QName("property"));
+ String jmsOpSecPropertyName = opSecPropertyOM.getText();
+
+ LoaderUtil.skipToEndElement(reader);
+
+ JMSBinding binding = new JMSBinding();
+ binding.setActivationSpecName(activationSpecName);
+ binding.setConnectionFactoryName(connectionFactoryName);
+ binding.setDestinationName(destinationName);
+ binding.setInitialContextFactoryName(initialContextFactoryName);
+ binding.setJNDIProviderURL(jNDIProviderURL);
+ binding.setReplyTo(replyTo);
+ binding.setJmsResourceFactoryName(jmsResourceFactoryName);
+ binding.setOperationSelectorName(operationSelector);
+ binding.setOperationSelectorPropertyName(jmsOpSecPropertyName);
+
+ if (deliveryMode != null && deliveryMode.trim().equals("")){
+ try{
+ binding.setDeliveryMode(Integer.parseInt(deliveryMode));
+ }catch (Exception e){
+
+ }
+ }
+
+ if (priority != null && priority.trim().equals("")){
+ try{
+ binding.setPriority(Integer.parseInt(priority));
+ }catch (Exception e){
+
+ }
+ }
+
+ if (timeToLive != null && timeToLive.trim().equals("")){
+ try{
+ binding.setTimeToLive(Integer.parseInt(timeToLive));
+ }catch (Exception e){
+
+ }
+ }
+
+ return binding;
+ }
+}