blob: 9d3bc905e56b5b03eafc682e269b0c97eb3e86f3 [file] [log] [blame]
/*
* Copyright 2004 The Apache Software Foundation
*
* Licensed 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.ldap.server.invocation;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Collection;
import javax.naming.Context;
import org.apache.ldap.server.partition.DirectoryPartitionNexus;
import org.apache.ldap.server.partition.DirectoryPartitionNexusProxy;
/**
* Represents a call from JNDI {@link Context} to {@link DirectoryPartitionNexus}.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class Invocation
{
private final Context caller;
private final String name;
private final List parameters;
private final Collection bypassed;
private final DirectoryPartitionNexusProxy proxy;
/**
* Creates a new instance that represents an invocation without parameters.
*
* @param caller the JNDI {@link Context} that made this invocation
* @param name the name of the called method
*/
public Invocation( DirectoryPartitionNexusProxy proxy, Context caller, String name )
{
this( proxy, caller, name, null, Collections.EMPTY_SET );
}
/**
* Creates a new instance.
*
* @param caller the JNDI {@link Context} that made this invocation
* @param name the name of the called method
* @param parameters the array of parameters passed to the called method
*/
public Invocation( DirectoryPartitionNexusProxy proxy, Context caller, String name, Object[] parameters )
{
this( proxy, caller, name, parameters, Collections.EMPTY_SET );
}
/**
* Creates a new instance.
*
* @param caller the JNDI {@link Context} that made this invocation
* @param name the name of the called method
* @param parameters the array of parameters passed to the called method
* @param bypassed the set of bypassed Interceptor names
*/
public Invocation( DirectoryPartitionNexusProxy proxy, Context caller, String name, Object[] parameters,
Collection bypassed )
{
if( proxy == null )
{
throw new NullPointerException( "proxy" );
}
if( caller == null )
{
throw new NullPointerException( "caller" );
}
if( name == null )
{
throw new NullPointerException( "name" );
}
if( parameters == null )
{
parameters = new Object[ 0 ];
}
if ( bypassed == null )
{
this.bypassed = Collections.EMPTY_SET;
}
else
{
this.bypassed = Collections.unmodifiableCollection( bypassed );
}
this.proxy = proxy;
this.caller = caller;
this.name = name;
List paramList = new ArrayList();
for( int i = 0; i < parameters.length; i++ )
{
paramList.add( parameters[ i ] );
}
this.parameters = Collections.unmodifiableList( paramList );
}
/**
* Returns the proxy object to the {@link DirectoryPartitionNexus}.
*/
public DirectoryPartitionNexusProxy getProxy()
{
return proxy;
}
/**
* Returns the JNDI {@link Context} which made this invocation.
*/
public Context getCaller()
{
return caller;
}
/**
* Returns the name of the called method.
*/
public String getName()
{
return name;
}
/**
* Returns the list of parameters parameters passed to the called method.
*/
public List getParameters()
{
return parameters;
}
/**
* Checks to see if an interceptor is bypassed.
*
* @param interceptorName the interceptorName of the interceptor to check for bypass
* @return true if the interceptor should be bypassed, false otherwise
*/
public boolean isBypassed( String interceptorName )
{
return bypassed.contains( interceptorName );
}
/**
* Checks to see if any interceptors are bypassed by this Invocation.
*
* @return true if at least one bypass exists
*/
public boolean hasBypass()
{
return !bypassed.isEmpty();
}
}