PrivateClassLoader.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.management.loading; /** * This is a marker interface that should be implemented by classloaders that * do not wish to get added to the MBean server classloader repository when * they are registered to the server. * * @since JMX 1.2 * * @see javax.management.loading.ClassLoaderRepository * * @author <a href="mailto:jplindfo@helsinki.fi">Juha Lindfors</a>. * @version $Revision: 1.3 $ */ public interface PrivateClassLoader { }
PrivateClassLoader.java |