1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.net.jmx.adaptor;8 9 import org.jboss.axis.encoding.ser.BaseSerializerFactory;10 11 import javax.xml.namespace.QName ;12 13 /**14 * An AttributeSerFactory Factory15 *16 * @author <a HREF="mailto:a_taherkordi@users.sourceforge.net">Alireza Taherkordi</a>17 * @version $Revision: 1.4.8.2 $18 */19 public class AttributeSerFactory extends BaseSerializerFactory20 {21 22 public AttributeSerFactory(Class javaType, QName xmlType)23 {24 super(AttributeSer.class, xmlType, javaType);25 }26 27 }28