// 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[] ids = (String[]) request.getParams()[2];
NotificationListener proxy = null;
try {
for (int i=0; i < ids.length; i++) {
proxy = (NotificationListener)
notifyMgr.removeNotificationListener(objname, ids[i]);
mbsc.removeNotificationListener(objname, proxy);
}
} catch (Exception e) {
result = e;
isException = true;
}
return ( new MBeanServerResponseMessage(METHOD_ID, result, isException) );