AttributeSerFactory.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.net.jmx.adaptor; import org.jboss.axis.encoding.ser.BaseSerializerFactory; import javax.xml.namespace.QName; /** * An AttributeSerFactory Factory * * @author <a href="mailto:a_taherkordi@users.sourceforge.net">Alireza Taherkordi</a> * @version $Revision: 1.4.8.2 $ */ public class AttributeSerFactory extends BaseSerializerFactory { public AttributeSerFactory(Class javaType, QName xmlType) { super(AttributeSer.class, xmlType, javaType); } }
AttributeSerFactory.java |