Feature Requests item #558735, was opened at 2002-05-21 08:44
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=376688&aid=558735&group_id=22866

Category: JBossMX
Group: v3.0 Rabbit Hole
Status: Open
Priority: 7
Submitted By: Andreas Schaefer (schaefera)
Assigned to: Nobody/Anonymous (nobody)
Summary: Pattern Object Name Creation w. Hashtabl

Initial Comment:
The Pattern Object Name (to search for MBeans) should 
be created by a Hashtable for the properties the same 
way as with a String.
Therefore a pattern ObjectName should work the same 
way for:
   new ObjectName( "jboss:name=Hello,*" );
and
   Hashtable properties = new Hashtable();
   properties.put( "name", "Hello" );
   properties.put( "*", "*" );
   new ObjectName( "jboss", properties );

Currently it does not do this.

Suggestion: allow a key in the properties Hashtable to 
be of "*", allow it, take it out and set 
isPropertyPattern() to true.

Reason: the ObjectNameConverter allows people also to 
convert a property value with a comma ",". But this 
only works with a Hashtable otherwise parsing fails.

Andy

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=376688&aid=558735&group_id=22866

_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to