1 22 package org.jboss.mx.notification; 23 24 import javax.management.NotificationFilter ; 25 import javax.management.NotificationListener ; 26 27 36 public class DefaultListenerRegistrationFactory 37 implements ListenerRegistrationFactory 38 { 39 public ListenerRegistration create(NotificationListener listener, 40 NotificationFilter filter, 41 Object handback) 42 { 43 return new DefaultListenerRegistration(listener, filter, handback); 44 } 45 } 46 | Popular Tags |