KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > juddi > handler > HostingRedirectorHandler


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

16 package org.apache.juddi.handler;
17
18 import org.apache.juddi.datatype.RegistryObject;
19 import org.apache.juddi.datatype.binding.HostingRedirector;
20 import org.apache.juddi.util.xml.XMLUtils;
21 import org.w3c.dom.Element JavaDoc;
22
23 /**
24  * "Knows about the creation and populating of HostingRedirector objects.
25  * Returns HostingRedirector."
26  *
27  * @author Steve Viens (sviens@apache.org)
28  */

29 public class HostingRedirectorHandler extends AbstractHandler
30 {
31   public static final String JavaDoc TAG_NAME = "hostingRedirector";
32
33   private HandlerMaker maker = null;
34
35   protected HostingRedirectorHandler(HandlerMaker maker)
36   {
37     this.maker = maker;
38   }
39
40   public RegistryObject unmarshal(Element JavaDoc element)
41   {
42     HostingRedirector obj = new HostingRedirector();
43
44     // Attributes
45
obj.setBindingKey(element.getAttribute("bindingKey"));
46
47     // Text Node Value
48
// {none}
49

50     // Child Elements
51
// {none}
52

53     return obj;
54   }
55
56   public void marshal(RegistryObject object,Element JavaDoc parent)
57   {
58     HostingRedirector redirector = (HostingRedirector)object;
59     Element JavaDoc element = parent.getOwnerDocument().createElementNS(null,TAG_NAME);
60
61     String JavaDoc bindingKey = redirector.getBindingKey();
62     if (bindingKey != null)
63       element.setAttribute("bindingKey",bindingKey);
64
65     parent.appendChild(element);
66   }
67
68
69   /***************************************************************************/
70   /***************************** TEST DRIVER *********************************/
71   /***************************************************************************/
72
73
74   public static void main(String JavaDoc args[])
75     throws Exception JavaDoc
76   {
77     HandlerMaker maker = HandlerMaker.getInstance();
78     AbstractHandler handler = maker.lookup(HostingRedirectorHandler.TAG_NAME);
79
80     Element JavaDoc parent = XMLUtils.newRootElement();
81     Element JavaDoc child = null;
82
83     HostingRedirector redirector = new HostingRedirector();
84     redirector.setBindingKey("92658289-0bd7-443c-8948-0bb4460b44c0");
85
86     System.out.println();
87
88     RegistryObject regObject = redirector;
89     handler.marshal(regObject,parent);
90     child = (Element JavaDoc)parent.getFirstChild();
91     parent.removeChild(child);
92     XMLUtils.writeXML(child,System.out);
93
94     System.out.println();
95
96     regObject = handler.unmarshal(child);
97     handler.marshal(regObject,parent);
98     child = (Element JavaDoc)parent.getFirstChild();
99     parent.removeChild(child);
100     XMLUtils.writeXML(child,System.out);
101
102     System.out.println();
103   }
104 }
Popular Tags