KickJava   Java API By Example, From Geeks To Geeks.

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


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.MBeanNotificationInfo 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.5 $
23  */

24 public class MBeanNotificationInfoSer extends AxisSerializer
25 {
26    static final String JavaDoc TYPE = "MBeanNotificationInfo";
27    static final String JavaDoc NAME = "name";
28    static final String JavaDoc DESCRIPTION = "description";
29    static final String JavaDoc NOTIFICATION_TYPES = "notificationTypes";
30    private static final QName JavaDoc NAME_QNAME = new QName JavaDoc("", NAME);
31    private static final QName JavaDoc DESCRIPTION_QNAME = new QName JavaDoc("", DESCRIPTION);
32    private static final QName JavaDoc NOTIFICATION_TYPES_QNAME = new QName JavaDoc("", NOTIFICATION_TYPES);
33
34    public void serialize(QName JavaDoc name, Attributes JavaDoc attributes, Object JavaDoc value, SerializationContext context) throws IOException JavaDoc
35    {
36       MBeanNotificationInfo JavaDoc info = (MBeanNotificationInfo JavaDoc)value;
37       context.startElement(name, attributes);
38       context.serialize(NAME_QNAME, null, info.getName());
39       context.serialize(DESCRIPTION_QNAME, null, info.getDescription());
40       context.serialize(NOTIFICATION_TYPES_QNAME, null, info.getNotifTypes());
41       context.endElement();
42    }
43
44    public Element JavaDoc writeSchema(Class JavaDoc javaType, Types types) throws Exception JavaDoc
45    {
46       Element JavaDoc complexType = types.createElement(SCHEMA_COMPLEX_TYPE);
47       complexType.setAttribute("name", TYPE);
48       Element JavaDoc allElement = types.createElement(SCHEMA_ALL);
49       complexType.appendChild(allElement);
50
51       Element JavaDoc nameElement = types.createElement(SCHEMA_ELEMENT);
52       nameElement.setAttribute("name", NAME);
53       nameElement.setAttribute("type", XMLType.XSD_STRING.getLocalPart());
54       allElement.appendChild(nameElement);
55
56       Element JavaDoc descrElement = types.createElement(SCHEMA_ELEMENT);
57       descrElement.setAttribute("name", DESCRIPTION);
58       descrElement.setAttribute("type", XMLType.XSD_STRING.getLocalPart());
59       allElement.appendChild(descrElement);
60
61       Element JavaDoc typesElement = types.createElement(SCHEMA_ELEMENT);
62       typesElement.setAttribute("name", NOTIFICATION_TYPES);
63       typesElement.setAttribute("type", XMLType.SOAP_ARRAY.getLocalPart());
64       allElement.appendChild(typesElement);
65
66       return complexType;
67    }
68 }
69
Popular Tags