1 25 package org.objectweb.jonas.mejb; 26 27 import java.rmi.Remote ; 28 import java.rmi.RemoteException ; 29 30 import javax.management.Notification ; 32 import javax.management.NotificationListener ; 33 import javax.management.NotificationFilter ; 34 35 public interface ListenerProxy extends Remote { 36 37 public void handleNotification(Notification notification, Object handback) 38 throws RemoteException ; 39 40 public void addNotificationListener(NotificationListener listener, NotificationFilter filter) throws RemoteException ; 41 public void removeNotificationListener(NotificationListener listener) throws RemoteException ; 42 } 43 | Popular Tags |