0N/A/*
2362N/A * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage javax.management;
0N/A
0N/Aimport javax.management.loading.ClassLoaderRepository;
0N/A
0N/A/**
0N/A * <p>Keeps the list of Class Loaders registered in the MBean Server.
0N/A * It provides the necessary methods to load classes using the registered
0N/A * Class Loaders.</p>
0N/A *
0N/A * <p>This deprecated class is maintained for compatibility. In
0N/A * previous versions of the JMX API, there was one
0N/A * <code>DefaultLoaderRepository</code> shared by all MBean servers.
0N/A * As of version 1.2 of the JMX API, that functionality is
0N/A * approximated by using {@link MBeanServerFactory#findMBeanServer} to
0N/A * find all known MBean servers, and consulting the {@link
0N/A * ClassLoaderRepository} of each one. It is strongly recommended
0N/A * that code referencing <code>DefaultLoaderRepository</code> be
0N/A * rewritten.</p>
0N/A *
0N/A * @deprecated Use
0N/A * {@link javax.management.MBeanServer#getClassLoaderRepository()}
0N/A * instead.
0N/A *
0N/A * @since 1.5
0N/A */
0N/A@Deprecated
0N/Apublic class DefaultLoaderRepository {
0N/A /**
0N/A * Go through the list of class loaders and try to load the requested class.
0N/A * The method will stop as soon as the class is found. If the class
0N/A * is not found the method will throw a <CODE>ClassNotFoundException</CODE>
0N/A * exception.
0N/A *
0N/A * @param className The name of the class to be loaded.
0N/A *
0N/A * @return the loaded class.
0N/A *
0N/A * @exception ClassNotFoundException The specified class could not be found.
0N/A */
686N/A public static Class<?> loadClass(String className)
0N/A throws ClassNotFoundException {
0N/A return javax.management.loading.DefaultLoaderRepository.loadClass(className);
0N/A }
0N/A
0N/A
0N/A /**
0N/A * Go through the list of class loaders but exclude the given class loader, then try to load
0N/A * the requested class.
0N/A * The method will stop as soon as the class is found. If the class
0N/A * is not found the method will throw a <CODE>ClassNotFoundException</CODE>
0N/A * exception.
0N/A *
0N/A * @param className The name of the class to be loaded.
0N/A * @param loader The class loader to be excluded.
0N/A *
0N/A * @return the loaded class.
0N/A *
0N/A * @exception ClassNotFoundException The specified class could not be found.
0N/A */
686N/A public static Class<?> loadClassWithout(ClassLoader loader,String className)
0N/A throws ClassNotFoundException {
0N/A return javax.management.loading.DefaultLoaderRepository.loadClassWithout(loader, className);
0N/A }
0N/A
0N/A }