blob: 2456f92377d7e2aab9371de2a0579151da0492f8 [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.MatchingRuleUse;
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 DitMatchingRuleUses.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class MatchingRuleUseSynchronizer extends AbstractRegistrySynchronizer
{
/**
* Creates a new instance of MatchingRuleUseSynchronizer.
*
* @param schemaManager The global schemaManager
* @throws Exception If the initialization failed
*/
protected MatchingRuleUseSynchronizer( SchemaManager schemaManager ) throws Exception
{
super( schemaManager );
// TODO Auto-generated constructor stub
}
/**
* {@inheritDoc}
*/
@Override
public boolean modify( ModifyOperationContext modifyContext, Entry targetEntry,
boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
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
}
public void moveAndRename( Dn oriChildName, Dn newParentName, Rdn newRn, boolean deleteOldRn,
Entry entry, boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
}
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( MatchingRuleUse mru ) throws LdapException
{
// TODO Auto-generated method stub
}
public void delete( MatchingRuleUse mru, boolean cascade ) throws LdapException
{
// TODO Auto-generated method stub
}
}