KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > servicemix > jms > JmsExternalEndpoint


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */

17 package org.apache.servicemix.jms;
18
19 import javax.jbi.servicedesc.ServiceEndpoint;
20 import javax.xml.namespace.QName JavaDoc;
21 import javax.xml.parsers.DocumentBuilderFactory JavaDoc;
22
23 import org.w3c.dom.Document JavaDoc;
24 import org.w3c.dom.DocumentFragment JavaDoc;
25 import org.w3c.dom.Element JavaDoc;
26 import org.w3c.dom.Text JavaDoc;
27
28 public class JmsExternalEndpoint implements ServiceEndpoint {
29
30     private JmsEndpoint endpoint;
31     
32     public JmsExternalEndpoint(JmsEndpoint endpoint) {
33         this.endpoint = endpoint;
34     }
35
36     public DocumentFragment JavaDoc getAsReference(QName JavaDoc operationName) {
37         try {
38             DocumentBuilderFactory JavaDoc dbf = DocumentBuilderFactory.newInstance();
39             dbf.setNamespaceAware(true);
40             Document JavaDoc doc = dbf.newDocumentBuilder().newDocument();
41             DocumentFragment JavaDoc df = doc.createDocumentFragment();
42             Element JavaDoc e = doc.createElementNS(JmsResolvedEndpoint.EPR_URI, JmsResolvedEndpoint.EPR_NAME);
43             Text JavaDoc t = doc.createTextNode(endpoint.getService() + "#" + endpoint.getEndpoint());
44             e.appendChild(t);
45             df.appendChild(e);
46             return df;
47         } catch (Exception JavaDoc e) {
48             throw new RuntimeException JavaDoc("Could not create reference", e);
49         }
50     }
51
52     public String JavaDoc getEndpointName() {
53         return endpoint.getEndpoint();
54     }
55
56     public QName JavaDoc[] getInterfaces() {
57         if (endpoint.getInterfaceName() != null) {
58             return new QName JavaDoc[] { endpoint.getInterfaceName() };
59         }
60         return null;
61     }
62
63     public QName JavaDoc getServiceName() {
64         return endpoint.getService();
65     }
66
67 }
68
Popular Tags