Package com.day.cq.rewriter.processor
Interface Processor
-
@Deprecated public interface Processor
Deprecated.Use the Apache Sling Rewriter Module (org.apache.sling.rewriter.Processor)AProcessorpost processes the output.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidfinished()Deprecated.Clean up the processor.ContentHandlergetContentHandler()Deprecated.Get the content handler to write the output to.PrintWritergetWriter()Deprecated.Get the writer to write the output to.voidinit(ProcessingContext context, ProcessorConfiguration config)Deprecated.Initialize this component.
-
-
-
Method Detail
-
init
void init(ProcessingContext context, ProcessorConfiguration config) throws IOException
Deprecated.Initialize this component.- Parameters:
context- The invocation context.config- The configuration for this component.- Throws:
IOException-IOException
-
getWriter
PrintWriter getWriter()
Deprecated.Get the writer to write the output to.- Returns:
- A print writer.
-
getContentHandler
ContentHandler getContentHandler()
Deprecated.Get the content handler to write the output to.- Returns:
- A content handler
-
finished
void finished() throws IOExceptionDeprecated.Clean up the processor. This method should always be called after a processor run, regardless if it was successfull or failed.- Throws:
IOException-IOException
-
-