blob: 61447a124bb15c6598d9042397fb972b469e0c10 [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.context;
import org.apache.directory.server.core.CoreSession;
import org.apache.directory.server.core.entry.ClonedServerEntry;
import org.apache.directory.server.core.entry.DefaultServerEntry;
import org.apache.directory.server.core.entry.ServerEntry;
import org.apache.directory.shared.ldap.message.InternalAddRequest;
import org.apache.directory.shared.ldap.message.MessageTypeEnum;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
/**
* A Add context used for Interceptors. It contains all the informations
* needed for the add operation, and used by all the interceptors
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class AddOperationContext extends AbstractChangeOperationContext
{
/**
* Creates a new instance of AddOperationContext.
*
* @param session the current Session
*/
public AddOperationContext( CoreSession session )
{
super( session );
}
/**
* Creates a new instance of AddOperationContext.
*
* @param session the current Session
* @param dn the name of the entry being added
*/
public AddOperationContext( CoreSession session, LdapDN dn )
{
super( session, dn );
}
/**
* Creates a new instance of AddOperationContext.
*
* @param session the current Session
* @param entry the entry being added
*/
public AddOperationContext( CoreSession session, ServerEntry entry )
{
super( session, entry.getDn() );
this.entry = new ClonedServerEntry( entry );
}
/**
* Creates a new instance of ModifyOperationContext.
*
* @param session the current Session
* @param dn the name of the entry being added
* @param entry the entry being added
*/
public AddOperationContext( CoreSession session, LdapDN dn, ServerEntry entry )
{
super( session, dn );
this.entry = new ClonedServerEntry( entry );
}
public AddOperationContext( CoreSession session, InternalAddRequest addRequest ) throws Exception
{
super( session );
entry = new ClonedServerEntry(
new DefaultServerEntry( session.getDirectoryService().getRegistries(), addRequest.getEntry() ) );
dn = addRequest.getEntry().getDn();
requestControls = addRequest.getControls();
if ( requestControls.containsKey( ManageDsaITControl.CONTROL_OID ) )
{
ignoreReferral();
}
else
{
throwReferral();
}
}
/**
* @return the operation name
*/
public String getName()
{
return MessageTypeEnum.ADD_REQUEST.name();
}
/**
* @see Object#toString()
*/
public String toString()
{
return "AddContext for DN '" + getDn().getUpName() + "'" + ", added entry: " + entry;
}
}