/* $Id$ */ /** * 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.manifoldcf.authorities.interfaces; import org.apache.manifoldcf.core.interfaces.*; import org.apache.manifoldcf.core.system.ManifoldCF; import java.util.*; import java.io.*; import java.lang.reflect.*; /** This class manages a pool of mapping connectors. */ public class MappingConnectorFactory extends ConnectorFactory<IMappingConnector> { // Static factory protected final static MappingConnectorFactory thisFactory = new MappingConnectorFactory(); protected MappingConnectorFactory() { } @Override protected boolean isInstalled(IThreadContext tc, String className) throws ManifoldCFException { IMappingConnectorManager connMgr = MappingConnectorManagerFactory.make(tc); return connMgr.isInstalled(className); } /** Install connector. *@param className is the class name. */ public static void install(IThreadContext threadContext, String className) throws ManifoldCFException { thisFactory.installThis(threadContext,className); } /** Uninstall connector. *@param className is the class name. */ public static void deinstall(IThreadContext threadContext, String className) throws ManifoldCFException { thisFactory.deinstallThis(threadContext,className); } /** Output the configuration header section. */ public static void outputConfigurationHeader(IThreadContext threadContext, String className, IHTTPOutput out, Locale locale, ConfigParams parameters, ArrayList tabsArray) throws ManifoldCFException, IOException { thisFactory.outputThisConfigurationHeader(threadContext,className,out,locale,parameters,tabsArray); } /** Output the configuration body section. */ public static void outputConfigurationBody(IThreadContext threadContext, String className, IHTTPOutput out, Locale locale, ConfigParams parameters, String tabName) throws ManifoldCFException, IOException { thisFactory.outputThisConfigurationBody(threadContext,className,out,locale,parameters,tabName); } /** Process configuration post data for a connector. */ public static String processConfigurationPost(IThreadContext threadContext, String className, IPostParameters variableContext, Locale locale, ConfigParams configParams) throws ManifoldCFException { return thisFactory.processThisConfigurationPost(threadContext,className,variableContext,locale,configParams); } /** View connector configuration. */ public static void viewConfiguration(IThreadContext threadContext, String className, IHTTPOutput out, Locale locale, ConfigParams configParams) throws ManifoldCFException, IOException { thisFactory.viewThisConfiguration(threadContext,className,out,locale,configParams); } /** Get a mapping connector instance, but do NOT check if class is installed first! *@param className is the class name. *@return the instance. */ public static IMappingConnector getConnectorNoCheck(String className) throws ManifoldCFException { return thisFactory.getThisConnectorNoCheck(className); } }