1 17 package org.apache.ldap.server.interceptor; 18 19 20 import org.apache.ldap.server.BackingStore; 21 import org.apache.ldap.server.invocation.Invocation; 22 23 import javax.naming.NamingException ; 24 25 26 93 public interface Interceptor 94 { 95 102 void init( InterceptorContext context ) throws NamingException ; 103 104 105 109 void destroy(); 110 111 112 121 void process( NextInterceptor nextInterceptor, Invocation invocation ) throws NamingException ; 122 } 123 | Popular Tags |