Process the current request, producing the corresponding response by whatever means is appropriate. The state of the current request can be derived by calling FacesContext.getCurrentInstance()
. Typically, an implementation of this method will call the responseComplete()
method on this FacesContext
instance, to bypass the remainder of the standard JavaServer Faces request processing lifecycle.
FacesContext
for the current request
@param resourceId Resource identifier used to select the appropriate response(this will generally be a context relative path starting with "/")
@exception IOException if an input/output error occurs
@exception NullPointerException if resourceId
is null
|
|