Like I said, you need to use the queryNames method to get all mbean names what 
match a wild card. For example:

ObjectName on = new ObjectName("jboss.web.deployment:war=file.war,*");
Set mv = server.queryNames(on, null);

Each entry in mv is an ObjectName of a matching mbean.  In this case, there 
should be at most one name in the set.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019063#4019063

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4019063
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to