[Ejtools-cvs] CVS: applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model Server
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-05-17 07:21:35
|
Update of /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model In directory usw-pr-cvs1:/tmp/cvs-serv11940/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model Modified Files: Server.java Log Message: Remove the filter Index: Server.java =================================================================== RCS file: /cvsroot/ejtools/applications/jmx.browser/src/main/net/sourceforge/ejtools/jmxbrowser/model/Server.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Server.java 15 May 2002 20:56:51 -0000 1.4 --- Server.java 17 May 2002 07:21:30 -0000 1.5 *************** *** 37,42 **** protected String factory = "org.jnp.interfaces.NamingContextFactory"; /** Description of the Field */ - protected String filter = "*:*"; - /** Description of the Field */ protected Hashtable mbeans = new Hashtable(); /** Description of the Field */ --- 37,40 ---- *************** *** 91,95 **** // this.setCount(service.getMBeanCount().intValue()); ! Collection result = service.queryMBeans(new ObjectName(filter), null); int counter = result.size(); --- 89,93 ---- // this.setCount(service.getMBeanCount().intValue()); ! Collection result = service.queryMBeans(null, null); int counter = result.size(); |