[Ejtools-cvs] libraries/common/src/main/org/ejtools/jmx MBeanAccessor.java,1.6,1.7 MBeanInvokeAccess
Brought to you by:
letiemble
Update of /cvsroot/ejtools/libraries/common/src/main/org/ejtools/jmx In directory sc8-pr-cvs1:/tmp/cvs-serv20661/common/src/main/org/ejtools/jmx Modified Files: MBeanAccessor.java MBeanInvokeAccessor.java MBeanServerProxy.java ObjectNameFinder.java Log Message: Adjust Eclipse build files Adjust some Javadoc Integrate Persistence framework Integrate Image export as PNG Index: MBeanAccessor.java =================================================================== RCS file: /cvsroot/ejtools/libraries/common/src/main/org/ejtools/jmx/MBeanAccessor.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MBeanAccessor.java 21 Feb 2003 22:41:00 -0000 1.6 --- MBeanAccessor.java 15 Sep 2003 22:23:45 -0000 1.7 *************** *** 17,21 **** * * @author Laurent Etiemble - * @created 11 avril 2002 * @version $Revision$ * @todo JavaDoc to complete --- 17,20 ---- Index: MBeanInvokeAccessor.java =================================================================== RCS file: /cvsroot/ejtools/libraries/common/src/main/org/ejtools/jmx/MBeanInvokeAccessor.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MBeanInvokeAccessor.java 21 Feb 2003 22:41:00 -0000 1.1 --- MBeanInvokeAccessor.java 15 Sep 2003 22:23:45 -0000 1.2 *************** *** 3,7 **** * * Distributable under LGPL license. ! * See terms of license at gnu.org. */ package org.ejtools.jmx; --- 3,7 ---- * * Distributable under LGPL license. ! * See terms of license at www.gnu.org. */ package org.ejtools.jmx; *************** *** 12,16 **** * * @author Laurent Etiemble - * @created 11 avril 2002 * @version $Revision$ * @todo JavaDoc to complete --- 12,15 ---- Index: MBeanServerProxy.java =================================================================== RCS file: /cvsroot/ejtools/libraries/common/src/main/org/ejtools/jmx/MBeanServerProxy.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** MBeanServerProxy.java 8 Jan 2003 21:18:04 -0000 1.6 --- MBeanServerProxy.java 15 Sep 2003 22:23:45 -0000 1.7 *************** *** 16,21 **** * A proxy for object that provides MBeanServer fonctionnality * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 4 septembre 2002 * @version $Revision$ */ --- 16,20 ---- * A proxy for object that provides MBeanServer fonctionnality * ! * @author Laurent Etiemble * @version $Revision$ */ *************** *** 58,62 **** if (m != null) { ! return m.invoke(this.object, args); } return null; --- 57,71 ---- if (m != null) { ! ClassLoader ctxLoader = Thread.currentThread().getContextClassLoader(); ! ! try ! { ! Thread.currentThread().setContextClassLoader(this.clazz.getClassLoader()); ! return m.invoke(this.object, args); ! } ! finally ! { ! Thread.currentThread().setContextClassLoader(ctxLoader); ! } } return null; Index: ObjectNameFinder.java =================================================================== RCS file: /cvsroot/ejtools/libraries/common/src/main/org/ejtools/jmx/ObjectNameFinder.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ObjectNameFinder.java 21 Dec 2002 22:09:07 -0000 1.5 --- ObjectNameFinder.java 15 Sep 2003 22:23:45 -0000 1.6 *************** *** 3,7 **** * * Distributable under LGPL license. ! * See terms of license at gnu.org. */ package org.ejtools.jmx; --- 3,7 ---- * * Distributable under LGPL license. ! * See terms of license at www.gnu.org. */ package org.ejtools.jmx; *************** *** 11,16 **** * Interface implemented by structure that allows ObjectName search by canonical string. * ! * @author <a href="mailto:let...@us...">Laurent Etiemble</a> ! * @created 11 avril 2002 * @version $Revision$ */ --- 11,15 ---- * Interface implemented by structure that allows ObjectName search by canonical string. * ! * @author Laurent Etiemble * @version $Revision$ */ |