blob: 9100fd1830310fe21094cad1328094d587b13c4f [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.api.schema.registries.synchronizers;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.name.Dn;
import org.apache.directory.api.ldap.model.name.Rdn;
import org.apache.directory.api.ldap.model.schema.NameForm;
import org.apache.directory.api.ldap.model.schema.SchemaManager;
import org.apache.directory.server.core.api.interceptor.context.ModifyOperationContext;
/**
* A schema entity change handler for NameForms.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class NameFormSynchronizer extends AbstractRegistrySynchronizer
{
/**
* Creates a new instance of NameFormSynchronizer.
*
* @param schemaManager The global schemaManager
* @throws Exception If the initialization failed
*/
protected NameFormSynchronizer( SchemaManager schemaManager ) throws Exception
{
super( schemaManager );
}
/**
* {@inheritDoc}
*/
@Override
public boolean modify( ModifyOperationContext modifyContext, Entry targetEntry,
boolean cascade ) throws LdapException
{
return SCHEMA_UNCHANGED;
}
/**
* {@inheritDoc}
*/
public void add( Entry entry ) throws LdapException
{
// TODO Auto-generated method stub
}
/**
* {@inheritDoc}
*/
public void delete( Entry entry, boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#move(
* org.apache.directory.api.ldap.model.name.Dn, org.apache.directory.api.ldap.model.name.Dn,
* Rdn, boolean, javax.naming.directory.Attributes)
*/
public void moveAndRename( Dn oriChildName, Dn newParentName, Rdn newRn,
boolean deleteOldRn, Entry entry, boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
}
/* (non-Javadoc)
* @see org.apache.directory.server.core.schema.SchemaChangeHandler#move(
* org.apache.directory.api.ldap.model.name.Dn,
* org.apache.directory.api.ldap.model.name.Dn, javax.naming.directory.Attributes)
*/
public void move( Dn oriChildName, Dn newParentName, Entry entry,
boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
}
/**
* {@inheritDoc}
*/
public void rename( Entry entry, Rdn newRdn, boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
}
public void add( NameForm nf )
{
// TODO Auto-generated method stub
}
public void delete( NameForm nf, boolean cascade )
{
// TODO Auto-generated method stub
}
}