| SOAPArrayDeserializerFactory.java |
/**
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.webservice.encoding.ser;
// $Id: SOAPArrayDeserializerFactory.java,v 1.1.4.1 2005/03/02 14:32:30 tdiesler Exp $
import org.jboss.axis.encoding.ser.BaseDeserializerFactory;
import javax.xml.namespace.QName;
/**
* DOCUMENT ME!
*
* @author thomas.diesler@jboss.org
*/
public class SOAPArrayDeserializerFactory extends BaseDeserializerFactory
{
public SOAPArrayDeserializerFactory(Class javaType, QName xmlType)
{
super(SOAPArrayDeserializer.class, xmlType, javaType);
}
}
| SOAPArrayDeserializerFactory.java |