blob: fff9a1bce5645177aae0b1ab3bdcd93ba1ee44a0 [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.authn.LdapPrincipal;
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.server.core.invocation.InvocationStack;
import org.apache.directory.server.core.jndi.ServerContext;
import org.apache.directory.shared.ldap.name.LdapDN;
import javax.naming.Context;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.ldap.LdapContext;
import java.util.Iterator;
/**
* A easy-to-use implementation of {@link Interceptor}. All methods are
* implemented to pass the flow of control to next interceptor by defaults.
* Please override the methods you have concern in.
*
* @org.apache.xbean.XBean
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public abstract class BaseInterceptor implements Interceptor
{
/**
* default interceptor name is its class, preventing accidental duplication of interceptors by naming
* instances differently
* @return (default, class name) interceptor name
*/
public String getName()
{
return getClass().getName();
}
/**
* Returns {@link LdapPrincipal} of current context.
* @return the authenticated principal
*/
public static LdapPrincipal getPrincipal()
{
ServerContext ctx = ( ServerContext ) getContext();
return ctx.getPrincipal();
}
/**
* Returns the current JNDI {@link Context}.
* @return the context on the invocation stack
*/
public static LdapContext getContext()
{
return ( LdapContext ) InvocationStack.getInstance().peek().getCaller();
}
/**
* Creates a new instance.
*/
protected BaseInterceptor()
{
}
/**
* This method does nothing by default.
*/
public void init( DirectoryService directoryService ) throws NamingException
{
}
/**
* This method does nothing by default.
*/
public void destroy()
{
}
// ------------------------------------------------------------------------
// Interceptor's Invoke Method
// ------------------------------------------------------------------------
public void add( NextInterceptor next, AddOperationContext opContext ) throws NamingException
{
next.add( opContext );
}
public void delete( NextInterceptor next, DeleteOperationContext opContext ) throws NamingException
{
next.delete( opContext );
}
public LdapDN getMatchedName ( NextInterceptor next, GetMatchedNameOperationContext opContext ) throws NamingException
{
return next.getMatchedName( opContext );
}
public ServerEntry getRootDSE( NextInterceptor next, GetRootDSEOperationContext opContext ) throws NamingException
{
return next.getRootDSE( opContext );
}
public LdapDN getSuffix( NextInterceptor next, GetSuffixOperationContext opContext ) throws NamingException
{
return next.getSuffix( opContext );
}
public boolean hasEntry( NextInterceptor next, EntryOperationContext opContext ) throws NamingException
{
return next.hasEntry( opContext );
}
public NamingEnumeration<ServerSearchResult> list( NextInterceptor next, ListOperationContext opContext )
throws NamingException
{
return next.list( opContext );
}
public Iterator<String> listSuffixes ( NextInterceptor next, ListSuffixOperationContext opContext )
throws NamingException
{
return next.listSuffixes( opContext );
}
public ServerEntry lookup( NextInterceptor next, LookupOperationContext opContext ) throws NamingException
{
return next.lookup( opContext );
}
public void modify( NextInterceptor next, ModifyOperationContext opContext ) throws NamingException
{
next.modify( opContext );
}
public void rename( NextInterceptor next, RenameOperationContext opContext ) throws NamingException
{
next.rename( opContext );
}
public void moveAndRename( NextInterceptor next, MoveAndRenameOperationContext opContext )
throws NamingException
{
next.moveAndRename( opContext );
}
public void move( NextInterceptor next, MoveOperationContext opContext ) throws NamingException
{
next.move( opContext );
}
public NamingEnumeration<ServerSearchResult> search( NextInterceptor next, SearchOperationContext opContext ) throws NamingException
{
return next.search( opContext );
}
public void addContextPartition( NextInterceptor next, AddContextPartitionOperationContext opContext ) throws NamingException
{
next.addContextPartition( opContext );
}
public void removeContextPartition( NextInterceptor next, RemoveContextPartitionOperationContext opContext ) throws NamingException
{
next.removeContextPartition( opContext );
}
public boolean compare( NextInterceptor next, CompareOperationContext opContext ) throws NamingException
{
return next.compare( opContext );
}
public void bind( NextInterceptor next, BindOperationContext opContext ) throws NamingException
{
next.bind( opContext );
}
public void unbind( NextInterceptor next, UnbindOperationContext opContext ) throws NamingException
{
next.unbind( opContext );
}
}