MBeanConstructorInfoSerFactory.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ // $Id: MBeanConstructorInfoSerFactory.java,v 1.4.8.1 2005/03/02 14:19:55 tdiesler Exp $ package org.jboss.net.jmx.adaptor; import org.jboss.axis.encoding.ser.BaseSerializerFactory; import javax.xml.namespace.QName; /** * MBeanConstructorInfo Serializer Factory * * @author <a href="mailto:a_taherkordi@users.sourceforge.net">Alireza Taherkordi</a> * @version $Revision: 1.4.8.1 $ */ public class MBeanConstructorInfoSerFactory extends BaseSerializerFactory { public MBeanConstructorInfoSerFactory(Class javaType, QName xmlType) { super(MBeanConstructorInfoSer.class, xmlType, javaType); } }
MBeanConstructorInfoSerFactory.java |