blob: 51587fa83707b2bf9f51c8cba5b35eeec508aebb [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;
import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.NamingException;
import org.apache.directory.server.core.configuration.StartupConfiguration;
import org.apache.directory.server.core.interceptor.InterceptorChain;
import org.apache.directory.server.core.partition.PartitionNexus;
import org.apache.directory.server.core.schema.GlobalRegistries;
import org.apache.directory.shared.ldap.name.LdapDN;
/**
* Default implementation of {@link DirectoryServiceConfiguration}.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$
*/
class DefaultDirectoryServiceConfiguration implements DirectoryServiceConfiguration
{
private DefaultDirectoryService parent;
DefaultDirectoryServiceConfiguration(DefaultDirectoryService parent)
{
this.parent = parent;
}
public String getInstanceId()
{
return parent.getInstanceId();
}
public DirectoryService getService()
{
return parent;
}
public DirectoryServiceListener getServiceListener()
{
return parent.getServiceListener();
}
public Hashtable getEnvironment()
{
return parent.getEnvironment();
}
public StartupConfiguration getStartupConfiguration()
{
return parent.getStartupConfiguration();
}
public GlobalRegistries getGlobalRegistries()
{
return parent.getGlobalRegistries();
}
public PartitionNexus getPartitionNexus()
{
return parent.getPartitionNexus();
}
public InterceptorChain getInterceptorChain()
{
return parent.getInterceptorChain();
}
public boolean isFirstStart()
{
return parent.isFirstStart();
}
public Context getJndiContext( String baseName ) throws NamingException
{
return parent.getJndiContext( baseName );
}
public Context getJndiContext( LdapDN principalDn, String principal, byte[] credential,
String authentication, String baseName ) throws NamingException
{
return parent.getJndiContext( principalDn, principal, credential, authentication, baseName );
}
}