Package com.gentics.cr.util.indexing

Examples of com.gentics.cr.util.indexing.IndexExtension


          if ("addExtensionJob".equalsIgnoreCase(action)) {
            String sExt = request.getParameter("ext");
            try {
              HashMap<String, IndexExtension> extensions = ((LuceneIndexLocation) loc).getExtensions();
              if (extensions.containsKey(sExt)) {
                IndexExtension extension = extensions.get(sExt);
                String job = request.getParameter("job");
                extension.addJob(job);
              }
            } catch (Exception ex) {
              LOGGER.info("Couldn not add extension Job");
            }
          }
View Full Code Here

TOP

Related Classes of com.gentics.cr.util.indexing.IndexExtension

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.