1 7 8 package com.sun.jmx.remote.security; 9 10 import javax.management.Notification ; 11 import javax.management.ObjectName ; 12 import javax.security.auth.Subject ; 13 14 28 public interface NotificationAccessController { 29 30 44 public void addNotificationListener(String connectionId, 45 ObjectName name, 46 Subject subject) 47 throws SecurityException ; 48 49 65 public void removeNotificationListener(String connectionId, 66 ObjectName name, 67 Subject subject) 68 throws SecurityException ; 69 70 87 public void fetchNotification(String connectionId, 88 ObjectName name, 89 Notification notification, 90 Subject subject) 91 throws SecurityException ; 92 } 93 | Popular Tags |