MBeanAttributeInfoSerFactory.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; /** * MBeanAttributeInfo Serializer Factory * * @author <a href="mailto:a_taherkordi@users.sourceforge.net">Alireza Taherkordi</a> * @version $Revision: 1.4.8.2 $ */ public class MBeanAttributeInfoSerFactory extends BaseSerializerFactory { public MBeanAttributeInfoSerFactory(Class javaType, QName xmlType) { super(MBeanAttributeInfoSer.class, xmlType, javaType); } }
MBeanAttributeInfoSerFactory.java |