blob: 02dfa6e7ea835ac9104ed16ebb588987fb3816f5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.core.interceptor;
import org.apache.directory.server.core.DirectoryService;
import org.apache.directory.server.core.entry.ServerEntry;
import org.apache.directory.server.core.entry.ServerSearchResult;
import org.apache.directory.server.core.interceptor.context.AddContextPartitionOperationContext;
import org.apache.directory.server.core.interceptor.context.AddOperationContext;
import org.apache.directory.server.core.interceptor.context.BindOperationContext;
import org.apache.directory.server.core.interceptor.context.CompareOperationContext;
import org.apache.directory.server.core.interceptor.context.DeleteOperationContext;
import org.apache.directory.server.core.interceptor.context.EntryOperationContext;
import org.apache.directory.server.core.interceptor.context.GetMatchedNameOperationContext;
import org.apache.directory.server.core.interceptor.context.GetRootDSEOperationContext;
import org.apache.directory.server.core.interceptor.context.GetSuffixOperationContext;
import org.apache.directory.server.core.interceptor.context.ListOperationContext;
import org.apache.directory.server.core.interceptor.context.ListSuffixOperationContext;
import org.apache.directory.server.core.interceptor.context.LookupOperationContext;
import org.apache.directory.server.core.interceptor.context.ModifyOperationContext;
import org.apache.directory.server.core.interceptor.context.MoveAndRenameOperationContext;
import org.apache.directory.server.core.interceptor.context.MoveOperationContext;
import org.apache.directory.server.core.interceptor.context.RemoveContextPartitionOperationContext;
import org.apache.directory.server.core.interceptor.context.RenameOperationContext;
import org.apache.directory.server.core.interceptor.context.SearchOperationContext;
import org.apache.directory.server.core.interceptor.context.UnbindOperationContext;
import org.apache.directory.shared.ldap.name.LdapDN;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import java.util.Iterator;
public class MockInterceptor implements Interceptor
{
InterceptorChainTest test;
String name;
public void setName( String name )
{
this.name = name;
}
public void setTest( InterceptorChainTest test )
{
this.test = test;
}
public String getName()
{
return this.name;
}
public void init( DirectoryService directoryService )
throws NamingException
{
}
public void destroy()
{
}
public ServerEntry getRootDSE( NextInterceptor next, GetRootDSEOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.getRootDSE( opContext );
}
public LdapDN getMatchedName ( NextInterceptor next, GetMatchedNameOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.getMatchedName( opContext );
}
public LdapDN getSuffix ( NextInterceptor next, GetSuffixOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.getSuffix( opContext );
}
public Iterator listSuffixes ( NextInterceptor next, ListSuffixOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.listSuffixes( opContext );
}
public void addContextPartition( NextInterceptor next, AddContextPartitionOperationContext opContext )
throws NamingException
{
test.interceptors.add( this );
next.addContextPartition( opContext );
}
public void removeContextPartition( NextInterceptor next, RemoveContextPartitionOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
next.removeContextPartition( opContext );
}
public boolean compare( NextInterceptor next, CompareOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.compare( opContext );
}
public void delete( NextInterceptor next, DeleteOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
next.delete( opContext );
}
public void add( NextInterceptor next, AddOperationContext opContext )
throws NamingException
{
test.interceptors.add( this );
next.add( opContext );
}
public void modify( NextInterceptor next, ModifyOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
next.modify( opContext );
}
public NamingEnumeration list( NextInterceptor next, ListOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.list( opContext );
}
public NamingEnumeration<ServerSearchResult> search( NextInterceptor next, SearchOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.search( opContext );
}
public ServerEntry lookup( NextInterceptor next, LookupOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.lookup( opContext );
}
public boolean hasEntry( NextInterceptor next, EntryOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
return next.hasEntry( opContext );
}
public void rename( NextInterceptor next, RenameOperationContext opContext )
throws NamingException
{
test.interceptors.add( this );
next.rename( opContext );
}
public void move( NextInterceptor next, MoveOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
next.move( opContext );
}
public void moveAndRename( NextInterceptor next, MoveAndRenameOperationContext opContext )
throws NamingException
{
test.interceptors.add( this );
next.moveAndRename( opContext );
}
public void bind( NextInterceptor next, BindOperationContext opContext )
throws NamingException
{
test.interceptors.add( this );
next.bind( opContext );
}
public void unbind( NextInterceptor next, UnbindOperationContext opContext ) throws NamingException
{
test.interceptors.add( this );
next.unbind( opContext );
}
public String toString()
{
return name;
}
}