You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
596 B
38 lines
596 B
/*
|
|
* Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.management.loading;
|
|
|
|
/**
|
|
* Marker interface indicating that a ClassLoader should not be added
|
|
* to the {@link ClassLoaderRepository}. When a ClassLoader is
|
|
* registered as an MBean in the MBean server, it is added to the
|
|
* MBean server's ClassLoaderRepository unless it implements this
|
|
* interface.
|
|
*
|
|
* @since 1.5
|
|
*/
|
|
public interface PrivateClassLoader {}
|