1 23 24 29 package com.sun.appserv.management.util.jmx; 30 31 import javax.management.NotificationListener ; 32 import javax.management.NotificationFilter ; 33 34 35 38 public class NotificationListenerInfo 39 { 40 private final NotificationListener mListener; 41 private final NotificationFilter mFilter; 42 private final Object mHandback; 43 44 public NotificationListenerInfo( 45 NotificationListener listener, 46 NotificationFilter filter, 47 Object handback ) 48 { 49 mListener = listener; 50 mFilter = filter; 51 mHandback = handback; 52 } 53 54 public NotificationListener getListener() { return mListener; } 55 public NotificationFilter getFilter() { return mFilter; } 56 public Object getHandback() { return mHandback; } 57 58 } 59 | Popular Tags |