MBeanServer.java: Updated.

2007-02-20  Gary Benson  <gbenson@redhat.com>

	* javax/management/MBeanServer.java: Updated.
	* javax/management/MBeanServerConnection.java: Likewise.
	* javax/management/ObjectName.java: Likewise.
	* javax/management/StandardMBean.java: Likewise.

From-SVN: r122165
This commit is contained in:
Gary Benson 2007-02-20 15:02:38 +00:00 committed by Gary Benson
parent cc0c8dbc93
commit c7e576cf15
10 changed files with 102 additions and 82 deletions

View file

@ -533,7 +533,7 @@ public interface MBeanServerConnection
* @throws IOException if an I/O error occurred in communicating with
* the bean server.
*/
Set queryMBeans(ObjectName name, QueryExp query)
Set<ObjectInstance> queryMBeans(ObjectName name, QueryExp query)
throws IOException;
/**
@ -560,7 +560,7 @@ public interface MBeanServerConnection
* @throws IOException if an I/O error occurred in communicating with
* the bean server.
*/
Set queryNames(ObjectName name, QueryExp query)
Set<ObjectName> queryNames(ObjectName name, QueryExp query)
throws IOException;
/**