KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > webservice > encoding > ser > HexBinaryArraySerializer


1 /**
2  * JBoss, the OpenSource J2EE webOS
3  *
4  * Distributable under LGPL license.
5  * See terms of license at gnu.org.
6  */

7 package org.jboss.webservice.encoding.ser;
8
9 // $Id: HexBinaryArraySerializer.java,v 1.1.4.1 2005/03/02 14:32:29 tdiesler Exp $
10

11 import org.jboss.axis.Constants;
12 import org.jboss.axis.encoding.ser.ArraySerializer;
13
14 import javax.xml.namespace.QName JavaDoc;
15
16 /**
17  * DOCUMENT ME!
18  *
19  * @author thomas.diesler@jboss.org
20  */

21 public class HexBinaryArraySerializer extends ArraySerializer
22 {
23    public HexBinaryArraySerializer()
24    {
25       addComponentTypeMapping(byte[].class, new QName JavaDoc(Constants.URI_2001_SCHEMA_XSD, "hexBinary"));
26    }
27 }
28
Popular Tags