// IMPLEMENTATION OF DynamicMBean // public Object getAttribute(String inString) throws javax.management.AttributeNotFoundException, javax.management.MBeanException { return getAttribute(getClass(), inString); } public javax.management.AttributeList getAttributes(String[] inSA) { return getAttributes(getClass(), inSA); } public javax.management.MBeanInfo getMBeanInfo() { return getMBeanInfo(getClass()); } public Object invoke(String inString, Object[] inParams, String[] inSign) throws javax.management.MBeanException { return invoke(getClass(), inString, inParams, inSign); } public void setAttribute(javax.management.Attribute inAttribute) throws javax.management.AttributeNotFoundException, javax.management.MBeanException { setAttribute(getClass(), inAttribute); } public javax.management.AttributeList setAttributes( javax.management.AttributeList inAL) { return setAttributes(getClass(), inAL); }