KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mx4j > tools > remote > soap > axis > ser > AttributeSer


1 /*
2  * Copyright (C) The MX4J Contributors.
3  * All rights reserved.
4  *
5  * This software is distributed under the terms of the MX4J License version 1.0.
6  * See the terms of the MX4J License in the documentation provided with this software.
7  */

8
9 package mx4j.tools.remote.soap.axis.ser;
10
11 import java.io.IOException JavaDoc;
12 import javax.management.Attribute JavaDoc;
13 import javax.xml.namespace.QName JavaDoc;
14
15 import org.apache.axis.encoding.SerializationContext;
16 import org.apache.axis.encoding.XMLType;
17 import org.apache.axis.wsdl.fromJava.Types;
18 import org.w3c.dom.Element JavaDoc;
19 import org.xml.sax.Attributes JavaDoc;
20
21 /**
22  * @version $Revision: 1.8 $
23  */

24 public class AttributeSer extends AxisSerializer
25 {
26    static final String JavaDoc TYPE = "Attribute";
27    static final String JavaDoc NAME = "name";
28    static final String JavaDoc VALUE = "value";
29    private static final QName JavaDoc NAME_QNAME = new QName JavaDoc("", NAME);
30    private static final QName JavaDoc VALUE_QNAME = new QName JavaDoc("", VALUE);
31
32    public void serialize(QName JavaDoc name, Attributes JavaDoc attributes, Object JavaDoc value, SerializationContext context) throws IOException JavaDoc
33    {
34       Attribute JavaDoc attribute = (Attribute JavaDoc)value;
35       context.startElement(name, attributes);
36       context.serialize(NAME_QNAME, null, attribute.getName());
37       context.serialize(VALUE_QNAME, null, attribute.getValue());
38       context.endElement();
39    }
40
41    public Element JavaDoc writeSchema(Class JavaDoc aClass, Types types) throws Exception JavaDoc
42    {
43       Element JavaDoc complexType = types.createElement(SCHEMA_COMPLEX_TYPE);
44       complexType.setAttribute("name", TYPE);
45       Element JavaDoc allElement = types.createElement(SCHEMA_ALL);
46       complexType.appendChild(allElement);
47
48       Element JavaDoc nameElement = types.createElement(SCHEMA_ELEMENT);
49       nameElement.setAttribute("name", NAME);
50       nameElement.setAttribute("type", XMLType.XSD_STRING.getLocalPart());
51       allElement.appendChild(nameElement);
52
53       Element JavaDoc valueElement = types.createElement(SCHEMA_ELEMENT);
54       valueElement.setAttribute("name", VALUE);
55       valueElement.setAttribute("type", XMLType.XSD_ANYTYPE.getLocalPart());
56       allElement.appendChild(valueElement);
57
58       return complexType;
59    }
60 }
61
Popular Tags