blob: 2fa63214baeed02d8608e5985e1e59caa9aa68c5 [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.schema;
import org.apache.directory.server.core.entry.ServerEntry;
import org.apache.directory.server.schema.registries.Registries;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.apache.directory.shared.ldap.name.Rdn;
import org.apache.directory.shared.ldap.schema.DITStructureRule;
import javax.naming.NamingException;
/**
* A schema entity change handler for DitStructureRules.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
public class MetaDitStructureRuleHandler extends AbstractSchemaChangeHandler
{
protected MetaDitStructureRuleHandler( Registries targetRegistries, PartitionSchemaLoader loader ) throws NamingException
{
super( targetRegistries, loader );
// TODO Auto-generated constructor stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.AbstractSchemaChangeHandler#modify(
* org.apache.directory.shared.ldap.name.LdapDN, javax.naming.directory.Attributes,
* javax.naming.directory.Attributes)
*/
@Override
protected void modify( LdapDN name, ServerEntry entry, ServerEntry targetEntry,
boolean cascade ) throws NamingException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#add(
* org.apache.directory.shared.ldap.name.LdapDN, javax.naming.directory.Attributes)
*/
public void add( LdapDN name, ServerEntry entry ) throws NamingException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#delete(
* org.apache.directory.shared.ldap.name.LdapDN, javax.naming.directory.Attributes)
*/
public void delete( LdapDN name, ServerEntry entry, boolean cascade ) throws NamingException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#move(
* org.apache.directory.shared.ldap.name.LdapDN,
* org.apache.directory.shared.ldap.name.LdapDN,
* java.lang.String, boolean, javax.naming.directory.Attributes)
*/
public void move( LdapDN oriChildName, LdapDN newParentName, Rdn newRn, boolean deleteOldRn,
ServerEntry entry, boolean cascade ) throws NamingException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#move(
* org.apache.directory.shared.ldap.name.LdapDN,
* org.apache.directory.shared.ldap.name.LdapDN,
* javax.naming.directory.Attributes)
*/
public void replace( LdapDN oriChildName, LdapDN newParentName, ServerEntry entry,
boolean cascade ) throws NamingException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#rename(
* org.apache.directory.shared.ldap.name.LdapDN, javax.naming.directory.Attributes, java.lang.String)
*/
public void rename( LdapDN name, ServerEntry entry, Rdn newRdn, boolean cascade ) throws NamingException
{
// TODO Auto-generated method stub
}
public void add( DITStructureRule dsr )
{
// TODO Auto-generated method stub
}
public void delete( DITStructureRule dsr, boolean cascade )
{
// TODO Auto-generated method stub
}
}