1 24 package javax.jcr.observation; 25 26 import javax.jcr.RepositoryException; 27 28 40 public interface ObservationManager { 41 42 92 public void addEventListener(long eventTypes, String absPath, int depth, EventListener listener, boolean noLocal, EventSelector selector) 93 throws RepositoryException; 94 95 128 public void addVetoableEventListener(long eventTypes, String absPath, int depth, VetoableEventListener listener, boolean noLocal, EventSelector selector) throws RepositoryException; 129 130 143 public void removeEventListener(EventListener listener) throws RepositoryException; 144 145 158 public void removeVetoableEventListener(VetoableEventListener listener) throws RepositoryException; 159 } 160 | Popular Tags |