1 package example;2 3 /**4 * Interface for the ListenerMBean.5 */6 public interface ListenerMBean {7 /**8 * Returns the count of notifications received.9 */10 public int getNotificationCount();11 }12