163164165166167168169170171172173
{ return this.configuration.getInterceptorChain().getMatchedName( dn, normalized ); } finally { stack.pop(); } } public Name getSuffix( Name dn, boolean normalized) throws NamingException
186187188189190191192193194195196
{ return this.configuration.getInterceptorChain().getSuffix( dn, normalized ); } finally { stack.pop(); } } public Iterator listSuffixes( boolean normalized ) throws NamingException
209210211212213214215216217218219
{ return this.configuration.getInterceptorChain().listSuffixes( normalized ); } finally { stack.pop(); } } public boolean compare( Name name, String oid, Object value ) throws NamingException
231232233234235236237238239240241
{ return this.configuration.getInterceptorChain().compare( name, oid, value ); } finally { stack.pop(); } } public void delete( Name name ) throws NamingException
253254255256257258259260261262263
{ this.configuration.getInterceptorChain().delete( name ); } finally { stack.pop(); } } public void add( String upName, Name normName, Attributes entry ) throws NamingException
275276277278279280281282283284285
{ this.configuration.getInterceptorChain().add( upName, normName, entry ); } finally { stack.pop(); } } public void modify( Name name, int modOp, Attributes mods ) throws NamingException
314315316317318319320321322323324
{ this.configuration.getInterceptorChain().modify( name, modOp, mods ); } finally { stack.pop(); } } public void modify( Name name, ModificationItem[] mods ) throws NamingException
336337338339340341342343344345346
{ this.configuration.getInterceptorChain().modify( name, mods ); } finally { stack.pop(); } } public NamingEnumeration list( Name base ) throws NamingException
358359360361362363364365366367368
{ return this.configuration.getInterceptorChain().list( base ); } finally { stack.pop(); } } public NamingEnumeration search( Name base, Map env, ExprNode filter, SearchControls searchCtls )
382383384385386387388389390391392
{ return this.configuration.getInterceptorChain().search( base, env, filter, searchCtls ); } finally { stack.pop(); } } public Attributes lookup( Name name ) throws NamingException