Uses of Class
jakarta.faces.context.ResponseStream
-
Packages that use ResponseStream Package Description jakarta.faces.context jakarta.faces.render -
-
Uses of ResponseStream in jakarta.faces.context
Methods in jakarta.faces.context that return ResponseStream Modifier and Type Method Description abstract ResponseStream
FacesContext. getResponseStream()
Return theResponseStream
to which components should direct their binary output.ResponseStream
FacesContextWrapper. getResponseStream()
The default behavior of this method is to callFacesContext.getResponseStream()
on the wrappedFacesContext
object.Methods in jakarta.faces.context with parameters of type ResponseStream Modifier and Type Method Description abstract void
FacesContext. setResponseStream(ResponseStream responseStream)
Set theResponseStream
to which components should direct their binary output.void
FacesContextWrapper. setResponseStream(ResponseStream responseStream)
The default behavior of this method is to callFacesContext.setResponseStream(ResponseStream)
on the wrappedFacesContext
object. -
Uses of ResponseStream in jakarta.faces.render
Methods in jakarta.faces.render that return ResponseStream Modifier and Type Method Description abstract ResponseStream
RenderKit. createResponseStream(OutputStream out)
Use the providedOutputStream
to create a newResponseStream
instance.ResponseStream
RenderKitWrapper. createResponseStream(OutputStream out)
The default behavior of this method is to callRenderKit.createResponseStream(java.io.OutputStream)
on the wrappedRenderKit
object.
-