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. package javax.management.loading;
  8. import javax.management.MBeanServer; // for Javadoc
  9. import javax.management.ObjectName; // for Javadoc
  10. /**
  11. * Marker interface indicating that a ClassLoader should not be added
  12. * to the {@link ClassLoaderRepository}. When a ClassLoader is
  13. * registered as an MBean in the MBean server, it is added to the
  14. * MBean server's ClassLoaderRepository unless it implements this
  15. * interface.
  16. *
  17. * @since 1.5
  18. * @since.unbundled JMX 1.2
  19. */
  20. public interface PrivateClassLoader {}