Package com.day.cq.rewriter.processor
Interface ProcessingContext
-
@Deprecated public interface ProcessingContextDeprecated.Use the Apache Sling Rewriter Module (org.apache.sling.rewriter.ProcessingContext)The context for a processor invocation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetContentType()Deprecated.The content type of the response.java.io.OutputStreamgetOutputStream()Deprecated.The output stream.SlingHttpServletRequestgetRequest()Deprecated.SlingHttpServletResponsegetResponse()Deprecated.java.io.PrintWritergetWriter()Deprecated.The writer.
-
-
-
Method Detail
-
getRequest
SlingHttpServletRequest getRequest()
Deprecated.
-
getResponse
SlingHttpServletResponse getResponse()
Deprecated.
-
getContentType
java.lang.String getContentType()
Deprecated.The content type of the response.- Returns:
- content type
-
getWriter
java.io.PrintWriter getWriter() throws java.io.IOExceptionDeprecated.The writer.- Returns:
- print writer
- Throws:
java.io.IOException-IOException
-
getOutputStream
java.io.OutputStream getOutputStream() throws java.io.IOExceptionDeprecated.The output stream.- Returns:
- output stream
- Throws:
java.io.IOException-IOException
-
-