Examples of IncludeGenerator


Examples of com.cognifide.cq.includefilter.generator.IncludeGenerator

  @Override
  public void process(SlingHttpServletRequest request, SlingHttpServletResponse response, FilterChain chain)
      throws IOException {
    boolean synthetic = ResourceUtil.isSyntheticResource(request.getResource());
    IncludeGenerator generator = generatorFactory.getGenerator(config.getIncludeTypeName());
    if (generator != null) {
      String url = getUrl(request, synthetic);
      String include = generator.getInclude(url);
      LOG.debug(include);

      PrintWriter writer = response.getWriter();
      if (config.getAddComment()) {
        writer.append(String.format(COMMENT, url));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.