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 java.lang.String
getContentType()
Deprecated.The content type of the response.java.io.OutputStream
getOutputStream()
Deprecated.The output stream.SlingHttpServletRequest
getRequest()
Deprecated.SlingHttpServletResponse
getResponse()
Deprecated.java.io.PrintWriter
getWriter()
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.IOException
Deprecated.The writer.- Returns:
- print writer
- Throws:
java.io.IOException
-IOException
-
getOutputStream
java.io.OutputStream getOutputStream() throws java.io.IOException
Deprecated.The output stream.- Returns:
- output stream
- Throws:
java.io.IOException
-IOException
-
-