MBeanInfoSerFactory.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ // $Id: MBeanInfoSerFactory.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; /** * MBeanInfo Serializer Factory * * @author <a href="mailto:a_taherkordi@users.sourceforge.net">Alireza Taherkordi</a> * @version $Revision: 1.4.8.1 $ */ public class MBeanInfoSerFactory extends BaseSerializerFactory { public MBeanInfoSerFactory(Class javaType, QName xmlType) { super(MBeanInfoSer.class, xmlType, javaType); } }
MBeanInfoSerFactory.java |