Here you can find the source of removeTimerNotification(ObjectName timer, Integer id, MBeanServer server)
public static void removeTimerNotification(ObjectName timer, Integer id, MBeanServer server) throws JMException
//package com.java2s; //License from project: LGPL import javax.management.MBeanServer; import javax.management.ObjectName; import javax.management.JMException; public class Main { private static final String REMOVE_NOTIFICATION_OPERATION_NAME = "removeNotification"; private static final String[] REMOVE_NOTIFICATION_SIGNATURE = { Integer.class .getName() }; public static void removeTimerNotification(ObjectName timer, Integer id, MBeanServer server) throws JMException { server.invoke(timer, REMOVE_NOTIFICATION_OPERATION_NAME, new Object[] { id }, REMOVE_NOTIFICATION_SIGNATURE); }/*w w w. j a v a2 s . com*/ }