* @see org.xmatthew.spy2servers.jmx.ComponentViewMBean#viewComponentProperties()
*/
public String getComponentProperties() {
if (getComponent() != null) {
try {
Component component = getComponent();
Map properties = PropertyUtils.describe(component);
if (properties == null) {
return null;
}
Iterator iter = properties.entrySet().iterator();