blob: 2b3c779170c391485081596a2167f8f323a4ada0 [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.fortress.core;
import org.apache.directory.fortress.core.impl.ConfigMgrImpl;
import org.apache.directory.fortress.core.rest.ConfigMgrRestImpl;
import org.apache.directory.fortress.core.util.ClassUtil;
import org.apache.directory.fortress.core.util.Config;
/**
* Creates an instance of the ConfigMgr object.
* <p>
* The default implementation class is specified as {@link org.apache.directory.fortress.core.impl.ConfigMgrImpl} but
* can be overridden by
* adding the {@link org.apache.directory.fortress.core.GlobalIds#CONFIG_IMPLEMENTATION} config property.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public final class ConfigMgrFactory
{
public final static String ENABLE_REST = "enable.mgr.impl.rest";
private ConfigMgrFactory()
{
}
/**
* Create and return a reference to {@link org.apache.directory.fortress.core.ConfigMgr} object.
*
* @return instance of {@link org.apache.directory.fortress.core.ConfigMgr}.
* @throws org.apache.directory.fortress.core.SecurityException in the event of failure during instantiation.
*/
public static ConfigMgr createInstance()
throws SecurityException
{
String configClassName = Config.getInstance().getProperty( GlobalIds.CONFIG_IMPLEMENTATION );
boolean IS_REST = ((Config.getInstance().getProperty(ENABLE_REST) != null) && (Config.getInstance().getProperty(ENABLE_REST).equalsIgnoreCase("true")));
return ConfigMgrFactory.createInstance(configClassName, IS_REST);
}
public static ConfigMgr createInstance(String configClassName, boolean IS_REST)
throws SecurityException
{
if (configClassName == null || configClassName.compareTo("") == 0)
{
if(Config.getInstance().isRestEnabled())
{
configClassName = ConfigMgrRestImpl.class.getName();
}
else
{
configClassName = ConfigMgrImpl.class.getName();
}
}
return (ConfigMgr) ClassUtil.createInstance(configClassName);
}
}