Package com.day.cq.rewriter.processor
Interface ProcessingContext
-
@Deprecated public interface ProcessingContext
Deprecated.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 StringgetContentType()Deprecated.The content type of the response.OutputStreamgetOutputStream()Deprecated.The output stream.SlingHttpServletRequestgetRequest()Deprecated.SlingHttpServletResponsegetResponse()Deprecated.PrintWritergetWriter()Deprecated.The writer.
-
-
-
Method Detail
-
getRequest
SlingHttpServletRequest getRequest()
Deprecated.
-
getResponse
SlingHttpServletResponse getResponse()
Deprecated.
-
getContentType
String getContentType()
Deprecated.The content type of the response.- Returns:
- content type
-
getWriter
PrintWriter getWriter() throws IOException
Deprecated.The writer.- Returns:
- print writer
- Throws:
IOException-IOException
-
getOutputStream
OutputStream getOutputStream() throws IOException
Deprecated.The output stream.- Returns:
- output stream
- Throws:
IOException-IOException
-
-