Interface Processor


  • @Deprecated
    public interface Processor
    Deprecated.
    Use the Apache Sling Rewriter Module (org.apache.sling.rewriter.Processor)
    A Processor post processes the output.
    • Method Detail

      • init

        void init​(ProcessingContext context,
                  ProcessorConfiguration config)
           throws java.io.IOException
        Deprecated.
        Initialize this component.
        Parameters:
        context - The invocation context.
        config - The configuration for this component.
        Throws:
        java.io.IOException - IOException
      • getWriter

        java.io.PrintWriter getWriter()
        Deprecated.
        Get the writer to write the output to.
        Returns:
        A print writer.
      • getContentHandler

        org.xml.sax.ContentHandler getContentHandler()
        Deprecated.
        Get the content handler to write the output to.
        Returns:
        A content handler
      • finished

        void finished()
               throws java.io.IOException
        Deprecated.
        Clean up the processor. This method should always be called after a processor run, regardless if it was successfull or failed.
        Throws:
        java.io.IOException - IOException