Package net.sf.regain.search.config

Examples of net.sf.regain.search.config.SearchConfigFactory


      String factoryClassname = request.getInitParameter("searchConfigFactoryClass");
      String factoryJarfile   = request.getInitParameter("searchConfigFactoryJar");
      if (factoryClassname == null) {
        factoryClassname = DefaultSearchConfigFactory.class.getName();
      }
      SearchConfigFactory factory = (SearchConfigFactory)
        RegainToolkit.createClassInstance(factoryClassname, SearchConfigFactory.class, factoryJarfile);
     
      // Create the config
      mConfig = factory.createSearchConfig(request);
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.regain.search.config.SearchConfigFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.