blob: f16ab60a25e05445bf8d0e4f44b09a6a10410ad3 [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.shared.ldap.message.MessageTypeEnum;
import org.apache.directory.shared.ldap.message.InternalModifyDnRequest;
import org.apache.directory.shared.ldap.message.control.ManageDsaITControl;
import org.apache.directory.shared.ldap.name.LdapDN;
/**
* A Move context used for Interceptors. It contains all the informations
* needed for the modify DN operation, and used by all the interceptors
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class MoveOperationContext extends AbstractChangeOperationContext
{
/** The parent DN */
private LdapDN parent;
/**
* Creates a new instance of MoveOperationContext.
*/
public MoveOperationContext( CoreSession session )
{
super( session );
}
/**
* Creates a new instance of MoveOperationContext.
*/
public MoveOperationContext( CoreSession session, LdapDN oldDn, LdapDN parent )
{
super( session, oldDn );
this.parent = parent;
}
public MoveOperationContext( CoreSession session, InternalModifyDnRequest modifyDnRequest )
{
super( session, modifyDnRequest.getName() );
this.parent = modifyDnRequest.getNewSuperior();
if ( parent == null )
{
throw new IllegalArgumentException( "The new superior cannot be null for " + modifyDnRequest );
}
this.requestControls = modifyDnRequest.getControls();
if ( modifyDnRequest.getNewRdn() != null )
{
throw new IllegalArgumentException( modifyDnRequest + " represents a move and rename operation." );
}
if ( requestControls.containsKey( ManageDsaITControl.CONTROL_OID ) )
{
ignoreReferral();
}
else
{
throwReferral();
}
}
/**
* @return The parent DN
*/
public LdapDN getParent()
{
return parent;
}
/**
* Set the parent DN
*
* @param parent The parent
*/
public void setParent( LdapDN parent )
{
this.parent = parent;
}
/**
* @return the operation name
*/
public String getName()
{
return MessageTypeEnum.MOD_DN_REQUEST.name();
}
/**
* @see Object#toString()
*/
public String toString()
{
return "ReplaceContext for old DN '" + getDn().getUpName() + "'" +
", parent '" + parent + "'";
}
}