// final Object result = new UnsupportedOperationException("" + METHOD_ID);
Object result = null;
boolean isException = false;
ObjectName objname = (ObjectName) request.getParams()[0];
String cid = (String) request.getParams()[1];
String id = (String) request.getParams()[2];
if (id != null) {
NotificationListener proxy =
(NotificationListener) notifyMgr.removeNotificationListener(objname, id);
try {
mbsc.removeNotificationListener(objname, proxy);
} catch (Exception e) {
result = e;
isException = true;
}
}
return ( new MBeanServerResponseMessage(METHOD_ID, result, isException) );