01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.com
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package org.huihoo.jfox.jmx.loading;
09:
10: import javax.management.loading.ClassLoaderRepository;
11:
12: /**
13: * extend the javax.management.ClassLoaderRepository ,make it can add & remove classloader
14: * @author <a href="mailto:young_yy@hotmail.com">Young Yang</a>
15: */
16:
17: public interface ExtendedClassLoaderRepository extends
18: ClassLoaderRepository {
19:
20: public void addClassLoader(ClassLoader classloader);
21:
22: public void removeClassLoader(ClassLoader classloader);
23:
24: }
|