* @return
*/
public static boolean register(Object obj, String strObjectname) {
MBeanServer server = getMBeanServer();
ObjectName objectname = null;
CMbean annotation = obj.getClass().getAnnotation(CMbean.class);
if (annotation != null) {
try {
objectname = new ObjectName(
CommonUtils.getStrObjectName(strObjectname));
} catch (MalformedObjectNameException e) {