1 25 package org.objectweb.jonas.management; 26 27 import javax.management.NotificationListener ; 29 import javax.management.NotificationFilter ; 30 31 34 public class ListenerJavaBean { 35 NotificationListener theListener; 36 NotificationFilter theFilter; 37 java.lang.Object theHandback; 38 39 public ListenerJavaBean(NotificationListener listner, 40 NotificationFilter filter, 41 java.lang.Object handback) { 42 theListener = listner; 43 theFilter = filter; 44 theHandback = handback; 45 } 46 public NotificationListener getListener() { 47 return theListener; 48 } 49 public NotificationFilter getFilter() { 50 return theFilter; 51 } 52 public Object getHandback() { 53 return theHandback; 54 } 55 56 } 57 | Popular Tags |