KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > loading > PrivateClassLoader


1 /*
2  * @(#)PrivateClassLoader.java 1.12 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.management.loading;
9
10 import javax.management.MBeanServer JavaDoc; // for Javadoc
11
import javax.management.ObjectName JavaDoc; // for Javadoc
12

13 /**
14  * Marker interface indicating that a ClassLoader should not be added
15  * to the {@link ClassLoaderRepository}. When a ClassLoader is
16  * registered as an MBean in the MBean server, it is added to the
17  * MBean server's ClassLoaderRepository unless it implements this
18  * interface.
19  *
20  * @since 1.5
21  * @since.unbundled JMX 1.2
22  */

23 public interface PrivateClassLoader {}
24
Popular Tags