This implementation of ExternalContext is specific to the servlet implementation.
-
Field Summary
Fields inherited from class jakarta.faces.context.ExternalContext
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH -
Constructor Summary
ConstructorsConstructorDescriptionExternalContextImpl(ServletContext sc, ServletRequest request, ServletResponse response) -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds the cookie represented by the arguments to the response.voidaddResponseHeader(String name, String value) Add the given name and value to the response header.voidDispatch a request to the specified resource to create output for this response.encodeActionURL(String url) Return the input URL, after performing any rewriting needed to ensure that it will correctly identify an addressable action in the current application.The purpose of this method is to generate a query string from the collection of Parameter objects provided by the parameters argument and append that query string to the baseUrl.encodeNamespace(String name) Return the specified name, after prefixing it with a namespace that ensures that it will be unique within the context of a particular page.Return the input URL, after performing any rewriting needed to ensure that it can be used in a partial page submission (ajax request) to correctly identify an addressable action in the current application.The purpose of this method is to generate a query string from the collection of Parameter objects provided by the parameters argument and append that query string to the baseUrl.encodeResourceURL(String url) Return the input URL, after performing any rewriting needed to ensure that it will correctly identify an addressable resource in the current application.encodeWebsocketURL(String url) Return the websocket URL, after performing any rewriting needed to ensure that it will correctly identify an addressable websocket in the current application.Return the name of the container context for this application.Return a mutableMaprepresenting the application scope attributes for the current application.Return the name of the authentication scheme used to authenticate the current user, if any; otherwise, returnnull.Return theClientWindowset in a preceding call toExternalContext.setClientWindow(jakarta.faces.lifecycle.ClientWindow), ornullif no such call has been made.Return the application environment object instance for the current appication.Return the name of the container context for this application.getFlash()Return the threadsafeFlashfor this application.getInitParameter(String name) Return the value of the specified application initialization parameter (if any).Return an immutableMapwhose keys are the set of application initialization parameter names configured for this application, and whose values are the corresponding parameter values.getMimeType(String file) Returns the MIME type of the specified file ornullif the MIME type is not known.getRealPath(String path) Returns a String containing the real path for a given virtual path.Return the login name of the user making the current request if any; otherwise, returnnull.Return the environment-specific object instance for the current request.Return the character encoding currently being used to interpret this request.intReturn the result of callinggetContentLenth()on theServletRequestinstance for this request.Return the MIME Content-Type for this request.Return the portion of the request URI that identifies the web application context for this request.Return an immutableMapwhose keys are the set of cookie names included in the current request, and whose values (of typejakarta.servlet.http.Cookie) are the first (or only) cookie for each cookie name returned by the underlying request.Return an immutableMapwhose keys are the set of request header names included in the current request, and whose values (of type String) are the first (or only) value for each header name returned by the underlying request.Return an immutableMapwhose keys are the set of request header names included in the current request, and whose values (of type String[]) are all of the value for each header name returned by the underlying request.Return the preferredLocalein which the client will accept content.Return anIteratorover the preferredLocales specified in the request, in decreasing order of preference.Return a mutableMaprepresenting the request scope attributes for the current application.Return an immutableMapwhose keys are the set of request parameters names included in the current request, and whose values (of type String) are the first (or only) value for each parameter name returned by the underlying request.Return anIteratorover the names of all request parameters included in the current request.Return an immutableMapwhose keys are the set of request parameters names included in the current request, and whose values (of type String[]) are all of the values for each parameter name returned by the underlying request.Return the extra path information (if any) included in the request URI; otherwise, returnnull.Returns the name of the scheme used to make this request, for example, http, https, or ftp.Returns the host name of the server to which the request was sent.intReturns the port number to which the request was sent.Return the Jakarta Servlet path information (if any) included in the request URI; otherwise, returnnull.getResource(String path) Return aURLfor the application resource mapped to the specified path, if it exists; otherwise, returnnull.getResourceAsStream(String path) Return anInputStreamfor an application resource mapped to the specified path, if it exists; otherwise, returnnull.getResourcePaths(String path) Return theSetof resource paths for all application resources whose resource path starts with the specified argument.Return the environment-specific object instance for the current response.intReturn the buffer size for the current response.Returns the name of the character encoding (MIME charset) used for the body sent in this response.Return the MIME Content-Type for this response.Returns anOutputStreamsuitable for writing binary data to the user-agent.Returns aWritersuitable for writing character data to the user-agent.getSession(boolean create) If thecreateparameter istrue, create (if necessary) and return a session instance associated with the current request.getSessionId(boolean create) Return the id of the current session or the empty string if no session has been created and thecreateparameter isfalse.Return a mutableMaprepresenting the session scope attributes for the current application.intReturns the maximum time interval, in seconds, that the Jakarta Servlet container will keep this session open between client accesses.Return thePrincipalobject containing the name of the current authenticated user, if any; otherwise, returnnull.voidInvalidates this session then unbinds any objects bound to it.booleanCheck if the current response has been committed.booleanisSecure()Returns a boolean indicating whether this request was made using a secure channel, such as HTTPS.booleanisUserInRole(String role) Returntrueif the currently authenticated user is included in the specified role.voidLog the specified message to the application object.voidLog the specified message and exception to the application object.voidRedirect a request to the specified URL, and cause theresponseComplete()method to be called on theFacesContextinstance for the current request.voidrelease()Release any resources associated with thisExternalContextinstance.voidFlushes the buffered response content to the client.voidResets the current response.voidresponseSendError(int statusCode, String message) Sends an HTTP status code with message.voidsetClientWindow(ClientWindow window) Associate this instance with aClientWindow.voidsetRequest(Object request) Set the environment-specific request to be returned by subsequent calls toExternalContext.getRequest().voidsetRequestCharacterEncoding(String encoding) Overrides the name of the character encoding used in the body of this request.voidsetResponse(Object response) Set the environment-specific response to be returned by subsequent calls toExternalContext.getResponse().voidsetResponseBufferSize(int size) Set the buffer size for the current response.voidsetResponseCharacterEncoding(String encoding) Sets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8.voidsetResponseContentLength(int length) Set the content length of the response as an intvoidsetResponseContentLengthLong(long length) Set the content length of the response as a long.voidsetResponseContentType(String contentType) Sets the content type of the response being sent to the client, if the response has not been committed yet.voidsetResponseHeader(String name, String value) Set the response header with the given name and value.voidsetResponseStatus(int statusCode) Sets the HTTP status code for the response.voidsetSessionMaxInactiveInterval(int interval) Specifies the time, in seconds, between client requests before the Jakarta Servlet container will invalidate this session.
-
Constructor Details
-
ExternalContextImpl
-
-
Method Details
-
getSession
Description copied from class:ExternalContextIf the
createparameter istrue, create (if necessary) and return a session instance associated with the current request. If thecreateparameter isfalsereturn any existing session instance associated with the current request, or returnnullif there is no such session.Jakarta Servlet: This must return the result of calling
getSession(create)on the underlyingjakarta.servlet.http.HttpServletRequestinstance.- Specified by:
getSessionin classExternalContext- Parameters:
create- Flag indicating whether or not a new session should be created if there is no session associated with the current request- Returns:
- the session object of the current request.
- See Also:
-
getSessionId
Description copied from class:ExternalContextReturn the id of the current session or the empty string if no session has been created and the
createparameter isfalse.Jakarta Servlet: If
createis true, obtain a reference to theHttpSessionfor the current request (creating the session if necessary) and return its id. Ifcreateisfalse, obtain a reference to the current session, if one exists, and return its id. If no session exists, return the empty string.- Overrides:
getSessionIdin classExternalContext- Parameters:
create- Flag indicating whether or not a new session should be created if there is no session associated with the current request- Returns:
- the session id for the current request.
-
getContext
Description copied from class:ExternalContextReturn the application environment object instance for the current appication.
It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this returns the same container context instance (
ServletContextorPortletContext) as the one returned when callinggetContext()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the current application's
jakarta.servlet.ServletContextinstance.- Specified by:
getContextin classExternalContext- Returns:
- the object of the
ServletContext. - See Also:
-
getContextName
Description copied from class:ExternalContextReturn the name of the container context for this application.
Return the result of calling
getServletContextName()on theServletContextinstance for this application. It is valid to call this method during application startup or shutdown.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getContextNamein classExternalContext- Returns:
- the name the
ServletContext. - See Also:
-
getRequest
Description copied from class:ExternalContextReturn the environment-specific object instance for the current request.
Jakarta Servlet: This must be the current request's
jakarta.servlet.http.HttpServletRequestinstance.- Specified by:
getRequestin classExternalContext- Returns:
- the instance of the current request.
- See Also:
-
setRequest
Description copied from class:ExternalContextSet the environment-specific request to be returned by subsequent calls to
ExternalContext.getRequest(). This may be used to install a wrapper for the request.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setRequestin classExternalContext- Parameters:
request- the request object to be set.- See Also:
-
setRequestCharacterEncoding
Description copied from class:ExternalContextOverrides the name of the character encoding used in the body of this request.
Calling this method after the request has been accessed will have no no effect, unless a
ReaderorStreamhas been obtained from the request, in which case anIllegalStateExceptionis thrown.Jakarta Servlet: This must call through to the
jakarta.servlet.ServletRequestmethodsetCharacterEncoding().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setRequestCharacterEncodingin classExternalContext- Parameters:
encoding- the encoding name to be set.- Throws:
UnsupportedEncodingException- if this is not a valid encoding- See Also:
-
getResponse
Description copied from class:ExternalContextReturn the environment-specific object instance for the current response.
Jakarta Servlet: This is the current request's
jakarta.servlet.http.HttpServletResponseinstance.- Specified by:
getResponsein classExternalContext- Returns:
- the instance of the current
jakarta.servlet.http.HttpServletResponse. - See Also:
-
setResponse
Description copied from class:ExternalContextSet the environment-specific response to be returned by subsequent calls to
ExternalContext.getResponse(). This may be used to install a wrapper for the response.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponsein classExternalContext- Parameters:
response- the response instance to be set.- See Also:
-
getClientWindow
Description copied from class:ExternalContextReturn the
ClientWindowset in a preceding call toExternalContext.setClientWindow(jakarta.faces.lifecycle.ClientWindow), ornullif no such call has been made.- Overrides:
getClientWindowin classExternalContext- Returns:
- the instance of the
ClientWindow.
-
setClientWindow
Description copied from class:ExternalContextAssociate this instance with a
ClientWindow.- Overrides:
setClientWindowin classExternalContext- Parameters:
window- the window with which this instance is associated.
-
setResponseCharacterEncoding
Description copied from class:ExternalContextSets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8.
Jakarta Servlet: This must call through to the
jakarta.servlet.ServletResponsemethodsetCharacterEncoding().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseCharacterEncodingin classExternalContext- Parameters:
encoding- the character encoding to be sent by the current response.- See Also:
-
getApplicationMap
Description copied from class:ExternalContextReturn a mutable
Maprepresenting the application scope attributes for the current application. The returnedMapmust implement the entire contract for a modifiable map as described in the JavaDocs forjava.util.Map. Modifications made in theMapmust cause the corresponding changes in the set of application scope attributes. Particularly theclear(),remove(),put(),putAll(), andget()operations must take the appropriate action on the underlying data structure.It is valid to call this method during application startup or shutdown. If called at startup or shutdown time, this method returns a
Mapthat is backed by the same container context instance (ServletContextorPortletContext) as the one returned by callinggetApplicationMap()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the set of attributes available via the
jakarta.servlet.ServletContextmethodsgetAttribute(),getAttributeNames(),removeAttribute(), andsetAttribute().- Specified by:
getApplicationMapin classExternalContext- Returns:
- the map associated with the backed
ServletContext. - See Also:
-
getApplicationContextPath
Description copied from class:ExternalContextReturn the name of the container context for this application.
Jakarta Servlet: Return the result of calling
getContextPath()on theServletContextinstance for this application.It is valid to call this method during application startup or shutdown.
The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getApplicationContextPathin classExternalContext- Returns:
- the context path of this application.
-
getSessionMap
Description copied from class:ExternalContextReturn a mutable
Maprepresenting the session scope attributes for the current application. The returnedMapmust implement the entire contract for a modifiable map as described in the JavaDocs forjava.util.Map. Modifications made in theMapmust cause the corresponding changes in the set of session scope attributes. Particularly theclear(),remove(),put(), andget()operations must take the appropriate action on the underlying data structure. Accessing attributes via thisMapmust cause the creation of a session associated with the current request, if such a session does not already exist.Jakarta Servlet: This must be the set of attributes available via the
jakarta.servlet.http.HttpSessionmethodsgetAttribute(),getAttributeNames(),removeAttribute(), andsetAttribute().- Specified by:
getSessionMapin classExternalContext- Returns:
- the session map for the current application.
- See Also:
-
getRequestMap
Description copied from class:ExternalContextReturn a mutable
Maprepresenting the request scope attributes for the current application. The returnedMapmust implement the entire contract for a modifiable map as described in the JavaDocs forjava.util.Map. Modifications made in theMapmust cause the corresponding changes in the set of request scope attributes. Particularly theclear(),remove(),put(),putAll(), andget()operations must take the appropriate action on the underlying data structure.Jakarta Servlet: This must be the set of attributes available via the
jakarta.servlet.ServletRequestmethodsgetAttribute(),getAttributeNames(),removeAttribute(), andsetAttribute().- Specified by:
getRequestMapin classExternalContext- Returns:
- the map including the attributes of the current request.
- See Also:
-
getRequestHeaderMap
Description copied from class:ExternalContextReturn an immutable
Mapwhose keys are the set of request header names included in the current request, and whose values (of type String) are the first (or only) value for each header name returned by the underlying request. The returnedMapmust implement the entire contract for an unmodifiable map as described in the JavaDocs forjava.util.Map. In addition, key comparisons must be performed in a case insensitive manner.Jakarta Servlet: This must be the set of headers available via the
jakarta.servlet.http.HttpServletRequestmethodsgetHeader()andgetHeaderNames().- Specified by:
getRequestHeaderMapin classExternalContext- Returns:
- the header map in the current request.
- See Also:
-
getRequestHeaderValuesMap
Description copied from class:ExternalContextReturn an immutable
Mapwhose keys are the set of request header names included in the current request, and whose values (of type String[]) are all of the value for each header name returned by the underlying request. The returnedMapmust implement the entire contract for an unmodifiable map as described in the JavaDocs forjava.util.Map. In addition, key comparisons must be performed in a case insensitive manner.Jakarta Servlet: This must be the set of headers available via the
jakarta.servlet.http.HttpServletRequestmethodsgetHeaders()andgetHeaderNames().- Specified by:
getRequestHeaderValuesMapin classExternalContext- Returns:
- the header values map in the current request.
- See Also:
-
getRequestCookieMap
Description copied from class:ExternalContextReturn an immutable
Mapwhose keys are the set of cookie names included in the current request, and whose values (of typejakarta.servlet.http.Cookie) are the first (or only) cookie for each cookie name returned by the underlying request. The returnedMapmust implement the entire contract for an unmodifiable map as described in the JavaDocs forjava.util.Map.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetCookies(), unlessnullwas returned, in which case this must be a zero-length array.- Specified by:
getRequestCookieMapin classExternalContext- Returns:
- the cookie map in the current request.
- See Also:
-
getInitParameterMap
Description copied from class:ExternalContextReturn an immutable
Mapwhose keys are the set of application initialization parameter names configured for this application, and whose values are the corresponding parameter values. The returnedMapmust implement the entire contract for an unmodifiable map as described in the JavaDocs forjava.util.Map.It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method returns a
Mapthat is backed by the same container context instance (ServletContextorPortletContext) as the one returned by callinggetInitParameterMap()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This result must be as if it were synthesized by calling the
jakarta.servlet.ServletContextmethodgetInitParameterNames, and putting each configured parameter name/value pair into the result.- Specified by:
getInitParameterMapin classExternalContext- Returns:
- the init parameter map for this application.
- See Also:
-
getRequestParameterMap
Description copied from class:ExternalContextReturn an immutable
Mapwhose keys are the set of request parameters names included in the current request, and whose values (of type String) are the first (or only) value for each parameter name returned by the underlying request. The returnedMapmust implement the entire contract for an unmodifiable map as described in the JavaDocs forjava.util.Map.Jakarta Servlet: This must be the set of parameters available via the
jakarta.servlet.ServletRequestmethodsgetParameter()andgetParameterNames().- Specified by:
getRequestParameterMapin classExternalContext- Returns:
- the map for the current request parameters.
- See Also:
-
getRequestParameterValuesMap
Description copied from class:ExternalContextReturn an immutable
Mapwhose keys are the set of request parameters names included in the current request, and whose values (of type String[]) are all of the values for each parameter name returned by the underlying request. The returnedMapmust implement the entire contract for an unmodifiable map as described in the JavaDocs forjava.util.Map.Jakarta Servlet: This must be the set of parameters available via the
jakarta.servlet.ServletRequestmethodsgetParameterValues()andgetParameterNames().- Specified by:
getRequestParameterValuesMapin classExternalContext- Returns:
- the map for the parameter values of the current request.
- See Also:
-
getRequestParameterNames
Description copied from class:ExternalContextReturn an
Iteratorover the names of all request parameters included in the current request.Jakarta Servlet: This must be an
Iteratorover the values returned by thejakarta.servlet.ServletRequestmethodgetParameterNames().- Specified by:
getRequestParameterNamesin classExternalContext- Returns:
- the
Iteratorfor the names of the current request parameters. - See Also:
-
getRequestLocale
Description copied from class:ExternalContextReturn the preferred
Localein which the client will accept content.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletRequestmethodgetLocale().- Specified by:
getRequestLocalein classExternalContext- Returns:
- the
Localeof the current request. - See Also:
-
getRequestLocales
Description copied from class:ExternalContextReturn an
Iteratorover the preferredLocales specified in the request, in decreasing order of preference.Jakarta Servlet: This must be an
Iteratorover the values returned by thejakarta.servlet.ServletRequestmethodgetLocales().- Specified by:
getRequestLocalesin classExternalContext- Returns:
- the
IteratorofLocales of the current request. - See Also:
-
getRequestPathInfo
Description copied from class:ExternalContextReturn the extra path information (if any) included in the request URI; otherwise, return
null.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetPathInfo().- Specified by:
getRequestPathInfoin classExternalContext- Returns:
- the path information of the current request.
- See Also:
-
getRealPath
Description copied from class:ExternalContextReturns a String containing the real path for a given virtual path.
It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method calls through to the
getRealPath()method on the same container context instance (ServletContextorPortletContext) as the one used when callinggetRealPath()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletContextmethodgetRealPath().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRealPathin classExternalContext- Parameters:
path- The context of the requested initialization parameter- Returns:
- the real path for the specified virtual path.
- See Also:
-
getRequestContextPath
Description copied from class:ExternalContextReturn the portion of the request URI that identifies the web application context for this request.
Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetContextPath().- Specified by:
getRequestContextPathin classExternalContext- Returns:
- the context path for this request.
- See Also:
-
getRequestServletPath
Description copied from class:ExternalContextReturn the Jakarta Servlet path information (if any) included in the request URI; otherwise, return
null.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetServletPath().- Specified by:
getRequestServletPathin classExternalContext- Returns:
- the Jakarta Servlet path information of the current request.
- See Also:
-
getRequestCharacterEncoding
Description copied from class:ExternalContextReturn the character encoding currently being used to interpret this request.
Jakarta Servlet: This must return the value returned by the
jakarta.servlet.ServletRequestmethodgetCharacterEncoding().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRequestCharacterEncodingin classExternalContext- Returns:
- the character encoding currently being used.
- See Also:
-
getRequestContentType
Description copied from class:ExternalContextReturn the MIME Content-Type for this request. If not available, return
null.Jakarta Servlet: This must return the value returned by the
jakarta.servlet.ServletRequestmethodgetContentType().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRequestContentTypein classExternalContext- Returns:
- the Content-Type for this request.
- See Also:
-
getRequestContentLength
public int getRequestContentLength()Description copied from class:ExternalContextReturn the result of calling
getContentLenth()on theServletRequestinstance for this request.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRequestContentLengthin classExternalContext- Returns:
- the content length of the current request.
- See Also:
-
getResponseCharacterEncoding
Description copied from class:ExternalContextReturns the name of the character encoding (MIME charset) used for the body sent in this response.
Jakarta Servlet: This must return the value returned by the
jakarta.servlet.ServletResponsemethodgetCharacterEncoding().Portlet: if this method is called during a lifecycle phase other than RENDER_RESPONSE, this must return
null. If called during RENDER_RESPONSE, return the response encoding of the portlet response.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getResponseCharacterEncodingin classExternalContext- Returns:
- the name of the character encoding.
- See Also:
-
getResponseContentType
Description copied from class:ExternalContextReturn the MIME Content-Type for this response. If not available, return
null.Jakarta Servlet: This must return the value returned by the
jakarta.servlet.ServletResponsemethodgetContentType().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getResponseContentTypein classExternalContext- Returns:
- the MIME Content-Type for this response.
- See Also:
-
getInitParameter
Description copied from class:ExternalContextReturn the value of the specified application initialization parameter (if any).
Jakarta Servlet: This must be the result of the
jakarta.servlet.ServletContextmethodgetInitParameter(name).It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method calls through to the actual container context to return the init parameter value.
- Specified by:
getInitParameterin classExternalContext- Parameters:
name- Name of the requested initialization parameter- Returns:
- the value of the specified parameter.
- See Also:
-
getResourcePaths
Description copied from class:ExternalContextReturn the
Setof resource paths for all application resources whose resource path starts with the specified argument.It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method calls through to the
getResourcePaths()method on the same container context instance (ServletContextorPortletContext) as the one used when callinggetResourcePaths()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletContextmethodgetResourcePaths(path).- Specified by:
getResourcePathsin classExternalContext- Parameters:
path- Partial path used to match resources, which must start with a slash ("/") character- Returns:
- the
Setof resource paths for the application resources. - See Also:
-
getResourceAsStream
Description copied from class:ExternalContextReturn an
InputStreamfor an application resource mapped to the specified path, if it exists; otherwise, returnnull.It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method calls through to the
getResourceAsStream()method on the same container context instance (ServletContextorPortletContext) as the one used when callinggetResourceAsStream()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletContextmethodgetResourceAsStream(path).- Specified by:
getResourceAsStreamin classExternalContext- Parameters:
path- The path to the requested resource, which must start with a slash ("/" character- Returns:
- the
InputStreamfor the application resource. - See Also:
-
getResource
Description copied from class:ExternalContextReturn a
URLfor the application resource mapped to the specified path, if it exists; otherwise, returnnull.It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method calls through to the
getResource()method on the same container context instance (ServletContextorPortletContext) as the one used when callinggetResource()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletContextmethodgetResource(path).- Specified by:
getResourcein classExternalContext- Parameters:
path- The path to the requested resource, which must start with a slash ("/" character- Returns:
- the URL of the resource.
- See Also:
-
encodeActionURL
Description copied from class:ExternalContextReturn the input URL, after performing any rewriting needed to ensure that it will correctly identify an addressable action in the current application.
Encoding the
ClientWindowCall
ClientWindow.isClientWindowRenderModeEnabled(jakarta.faces.context.FacesContext). If the result isfalsetake no further action and return the rewritten URL. If the result istrue, callExternalContext.getClientWindow(). If the result is non-null, callClientWindow.getId()and append the id to the query string of the URL, making the necessary allowances for a pre-existing query string or no query-string.Call
ClientWindow.getQueryURLParameters(jakarta.faces.context.FacesContext). If the result is non-null, for each parameter in the map, unconditionally add that parameter to the URL.The name of the query string parameter is given by the value of the constant
ResponseStateManager.CLIENT_WINDOW_URL_PARAM.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletResponsemethodencodeURL(url).- Specified by:
encodeActionURLin classExternalContext- Parameters:
url- The input URL to be encoded- Returns:
- the encoded URL.
- See Also:
-
encodeResourceURL
Description copied from class:ExternalContextReturn the input URL, after performing any rewriting needed to ensure that it will correctly identify an addressable resource in the current application.
Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletResponsemethodencodeURL(url).- Specified by:
encodeResourceURLin classExternalContext- Parameters:
url- The input URL to be encoded- Returns:
- the encoded resource URL.
- See Also:
-
encodeWebsocketURL
Description copied from class:ExternalContextReturn the websocket URL, after performing any rewriting needed to ensure that it will correctly identify an addressable websocket in the current application.
Jakarta Servlet: This must ensure that the input URL is prefixed with the correct websocket scheme, domain and port and then encoded by
ExternalContext.encodeResourceURL(String).- Specified by:
encodeWebsocketURLin classExternalContext- Parameters:
url- The input URL to be encoded.- Returns:
- the encoded websocket URL.
- See Also:
-
encodeNamespace
Description copied from class:ExternalContextReturn the specified name, after prefixing it with a namespace that ensures that it will be unique within the context of a particular page.
Jakarta Servlet: The input value must be returned unchanged.
- Specified by:
encodeNamespacein classExternalContext- Parameters:
name- Name to be encoded- Returns:
- the unique name prefixed with namespace.
- See Also:
-
dispatch
Description copied from class:ExternalContextDispatch a request to the specified resource to create output for this response.
Jakarta Servlet: This must be accomplished by calling the
jakarta.servlet.ServletContextmethodgetRequestDispatcher(path), and calling theforward()method on the resulting object.If the call to
getRequestDisatcher(path)returnsnull, send aServletResponse SC_NOT_FOUNDerror code.- Specified by:
dispatchin classExternalContext- Parameters:
requestURI- Context relative path to the specified resource, which must start with a slash ("/") character- Throws:
IOException- if an input/output error occursFacesException- thrown if aServletExceptionoccurs- See Also:
-
redirect
Description copied from class:ExternalContextRedirect a request to the specified URL, and cause the
responseComplete()method to be called on theFacesContextinstance for the current request.The implementation must determine if the request is an
Ajaxrequest by obtaining aPartialViewContextinstance from theFacesContextand callingPartialViewContext.isAjaxRequest().Jakarta Servlet: For non
Ajaxrequests, this must be accomplished by calling thejakarta.servlet.http.HttpServletResponsemethodsendRedirect().For Ajax requests, the implementation must:- Get a
PartialResponseWriterinstance from theFacesContext. - Call
ExternalContext.setResponseContentType(java.lang.String)withtext/xml - Call
ExternalContext.setResponseCharacterEncoding(java.lang.String)withUTF-8 - Call
ExternalContext.addResponseHeader(java.lang.String, java.lang.String)withCache-Control,no-cache - Call
PartialResponseWriter.startDocument() - Call
PartialResponseWriter.redirect(java.lang.String)with theurlargument. - Call
PartialResponseWriter.endDocument()
- Specified by:
redirectin classExternalContext- Parameters:
requestURI- Absolute URL to which the client should be redirected- Throws:
IOException- if an input/output error occurs- See Also:
- Get a
-
log
Description copied from class:ExternalContextLog the specified message to the application object.
It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this calls the
log()method on the same container context instance (ServletContextorPortletContext) as the one used during a call tolog()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be performed by calling the
jakarta.servlet.ServletContextmethodlog(String).- Specified by:
login classExternalContext- Parameters:
message- Message to be logged- See Also:
-
log
Description copied from class:ExternalContextLog the specified message and exception to the application object.
It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this calls the
log()method on the same container context instance (ServletContextorPortletContext) as the one used when callinglog()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be performed by calling the
jakarta.servlet.ServletContextmethodlog(String,Throwable).- Specified by:
login classExternalContext- Parameters:
message- Message to be loggedthrowable- Exception to be logged- See Also:
-
getAuthType
Description copied from class:ExternalContextReturn the name of the authentication scheme used to authenticate the current user, if any; otherwise, return
null. For standard authentication schemes, the returned value will match one of the following constants:BASIC_AUTH,CLIENT_CERT_AUTH,DIGEST_AUTH, orFORM_AUTH.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetAuthType().- Specified by:
getAuthTypein classExternalContext- Returns:
- the authentication type.
- See Also:
-
getMimeType
Description copied from class:ExternalContextReturns the MIME type of the specified file or
nullif the MIME type is not known. The MIME type is determined by the container.It is valid to call this method during application startup or shutdown. If called during application startup or shutdown, this method calls through to the
getMimeType()method on the same container context instance (ServletContextorPortletContext) as the one used when callinggetMimeType()on theExternalContextreturned by theFacesContextduring an actual request.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletContextmethodgetMimeType().- Overrides:
getMimeTypein classExternalContext- Parameters:
file- The file for which the mime type should be obtained.- Returns:
- the MIME type of the file.
- See Also:
-
getRemoteUser
Description copied from class:ExternalContextReturn the login name of the user making the current request if any; otherwise, return
null.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetRemoteUser().- Specified by:
getRemoteUserin classExternalContext- Returns:
- the user name of the current request.
- See Also:
-
getUserPrincipal
Description copied from class:ExternalContextReturn the
Principalobject containing the name of the current authenticated user, if any; otherwise, returnnull.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodgetUserPrincipal().- Specified by:
getUserPrincipalin classExternalContext- Returns:
- the
Principalobject. - See Also:
-
isUserInRole
Description copied from class:ExternalContextReturn
trueif the currently authenticated user is included in the specified role. Otherwise, returnfalse.Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpServletRequestmethodisUserInRole(role).- Specified by:
isUserInRolein classExternalContext- Parameters:
role- Logical role name to be checked- Returns:
- the flag indicating whether the current user is in the specified role.
- See Also:
-
invalidateSession
public void invalidateSession()Description copied from class:ExternalContextInvalidates this session then unbinds any objects bound to it.
Jakarta Servlet: This must be the value returned by the
jakarta.servlet.http.HttpSessionmethodinvalidate().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
invalidateSessionin classExternalContext- See Also:
-
addResponseCookie
Description copied from class:ExternalContextAdds the cookie represented by the arguments to the response.
Jakarta Servlet: This must be accomplished by calling the
jakarta.servlet.http.HttpServletResponsemethodaddCookie(). TheCookieargument must be constructed by passing thenameandvalueparameters. If thepropertiesarugument is non-nulland not empty, theCookieinstance must be initialized as described below.Cookie handling table Key in "values" Map(case sensitive)Expected type of value. Name of setter method on Cookieinstance to be set with the value from theMap.comment String setComment domain String setDomain maxAge Integer setMaxAge secure Boolean setSecure path String setPath httpOnly Boolean setHttpOnly any other attribute (e.g. SameSite) String setAttribute The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
addResponseCookiein classExternalContext- Parameters:
name- To be passed as the first argument to theCookieconstructor.value- To be passed as the second argument to theCookieconstructor.properties- AMapcontaing key/value pairs to be passed as arguments to the setter methods as described above.- See Also:
-
getResponseOutputStream
Description copied from class:ExternalContextReturns an
OutputStreamsuitable for writing binary data to the user-agent.Jakarta Servlet: This must return the value returned by the
jakarta.servlet.ServletResponsemethodgetOutputStream().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getResponseOutputStreamin classExternalContext- Returns:
- the
OutputStreamfor the current response. - Throws:
IOException- any IO related exception.- See Also:
-
getResponseOutputWriter
Description copied from class:ExternalContextReturns a
Writersuitable for writing character data to the user-agent.Jakarta Servlet: This must return the value returned by the
ServletResponse.getWriter().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getResponseOutputWriterin classExternalContext- Returns:
- the
Writerfor the current response. - Throws:
IOException- any IO related exception.- See Also:
-
getRequestScheme
Description copied from class:ExternalContextReturns the name of the scheme used to make this request, for example, http, https, or ftp.
Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletRequestmethodgetScheme().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRequestSchemein classExternalContext- Returns:
- the name of the scheme.
- See Also:
-
getRequestServerName
Description copied from class:ExternalContextReturns the host name of the server to which the request was sent.
Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletRequestmethodgetServerName().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRequestServerNamein classExternalContext- Returns:
- the host name of the server.
- See Also:
-
getRequestServerPort
public int getRequestServerPort()Description copied from class:ExternalContextReturns the port number to which the request was sent.
Jakarta Servlet: This must be the value returned by the
jakarta.servlet.ServletRequestmethodgetServerPort().The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getRequestServerPortin classExternalContext- Returns:
- the port number to which the request was sent.
- See Also:
-
setResponseContentType
Description copied from class:ExternalContextSets the content type of the response being sent to the client, if the response has not been committed yet.
Jakarta Servlet: This must call
setContentType()on the underlyingjakarta.servlet.ServletResponseinstance.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseContentTypein classExternalContext- Parameters:
contentType- The content type to be set as the contentType of the response.- See Also:
-
setResponseHeader
Description copied from class:ExternalContextSet the response header with the given name and value.
Jakarta Servlet:This must be performed by calling the
jakarta.servlet.http.HttpServletResponsesetHeadermethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseHeaderin classExternalContext- Parameters:
name- The name of the response header.value- The value of the response header.- See Also:
-
addResponseHeader
Description copied from class:ExternalContextAdd the given name and value to the response header.
Jakarta Servlet:This must be performed by calling the
jakarta.servlet.http.HttpServletResponseaddHeadermethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
addResponseHeaderin classExternalContext- Parameters:
name- The name of the response header.value- The value of the response header.- See Also:
-
setResponseBufferSize
public void setResponseBufferSize(int size) Description copied from class:ExternalContextSet the buffer size for the current response.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponsesetBufferSizemethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseBufferSizein classExternalContext- Parameters:
size- the new buffer size- See Also:
-
isResponseCommitted
public boolean isResponseCommitted()Description copied from class:ExternalContextCheck if the current response has been committed.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponseisCommittedmethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
isResponseCommittedin classExternalContext- Returns:
- the flag indicating whether the current response has been committed.
- See Also:
-
responseReset
public void responseReset()Description copied from class:ExternalContextResets the current response.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponseresetmethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
responseResetin classExternalContext- See Also:
-
responseSendError
Description copied from class:ExternalContextSends an HTTP status code with message.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponsesendErrormethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
responseSendErrorin classExternalContext- Parameters:
statusCode- an HTTP status codemessage- an option message to detail the cause of the code- Throws:
IOException- any IO related exceptions.- See Also:
-
setResponseStatus
public void setResponseStatus(int statusCode) Description copied from class:ExternalContextSets the HTTP status code for the response.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponsesetStatusmethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseStatusin classExternalContext- Parameters:
statusCode- an HTTP status code- See Also:
-
responseFlushBuffer
Description copied from class:ExternalContextFlushes the buffered response content to the client.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponseflushBuffermethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
responseFlushBufferin classExternalContext- Throws:
IOException- any IO related exception.- See Also:
-
setResponseContentLength
public void setResponseContentLength(int length) Description copied from class:ExternalContextSet the content length of the response as an int
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponsesetContentLengthmethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseContentLengthin classExternalContext- Parameters:
length- the value to be set.- See Also:
-
setResponseContentLengthLong
public void setResponseContentLengthLong(long length) Description copied from class:ExternalContextSet the content length of the response as a long.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponsesetContentLengthLongmethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setResponseContentLengthLongin classExternalContext- Parameters:
length- the value to be set.- See Also:
-
setSessionMaxInactiveInterval
public void setSessionMaxInactiveInterval(int interval) Description copied from class:ExternalContextSpecifies the time, in seconds, between client requests before the Jakarta Servlet container will invalidate this session.
An interval value of zero or less indicates that the session should never timeout.
Jakarta Servlet: This must call
setMaxInactiveIntervalon the underlyingjakarta.servlet.http.HttpServletRequestinstance.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
setSessionMaxInactiveIntervalin classExternalContext- Parameters:
interval- the value to be set.- See Also:
-
getResponseBufferSize
public int getResponseBufferSize()Description copied from class:ExternalContextReturn the buffer size for the current response.
Jakarta Servlet: This must be performed by calling the
jakarta.servlet.http.HttpServletResponsegetBufferSizemethod.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getResponseBufferSizein classExternalContext- Returns:
- the buffer size of the response.
- See Also:
-
getSessionMaxInactiveInterval
public int getSessionMaxInactiveInterval()Description copied from class:ExternalContextReturns the maximum time interval, in seconds, that the Jakarta Servlet container will keep this session open between client accesses. After this interval, the Jakarta Servlet container will invalidate the session. The maximum time interval can be set with the
ExternalContext.setSessionMaxInactiveInterval(int)method.A return value of zero or less indicates that the session will never timeout.
Jakarta Servlet: This must return the result of calling
getMaxInactiveIntervalon the underlyingjakarta.servlet.http.HttpSessioninstance.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
getSessionMaxInactiveIntervalin classExternalContext- Returns:
- the session maximum inactive interval.
- See Also:
-
isSecure
public boolean isSecure()Description copied from class:ExternalContextReturns a boolean indicating whether this request was made using a secure channel, such as HTTPS.
Jakarta Servlet: This must return the result of calling
isSecureon the underlyingjakarta.servlet.http.HttpServletRequestinstance.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
isSecurein classExternalContext- Returns:
- boolean
- See Also:
-
encodeBookmarkableURL
Description copied from class:ExternalContextThe purpose of this method is to generate a query string from the collection of Parameter objects provided by the parameters argument and append that query string to the baseUrl. This method must be able to encode the parameters to a baseUrl that may or may not have existing query parameters. The parameter values should be encoded appropriately for the environment so that the resulting URL can be used as the target of a link (e.g., in an href attribute) in a Jakarta Faces response. It's possible for an ExternalContext implementation to override this method in any way that would make the URL bookmarkable in that environment.
See
ExternalContext.encodeActionURL(java.lang.String)for the required specification of how to encode theClientWindow.The default implementation throws
UnsupportedOperationExceptionand is provided for the sole purpose of not breaking existing applications that extend this class.- Overrides:
encodeBookmarkableURLin classExternalContext- Parameters:
baseUrl- The base URL onto which the query string generated by this method will be appended. The URL may contain query parameters.parameters- The collection of Parameter objects, representing name=value pairs that are used to produce a query string- Returns:
- the result of encoding.
-
encodeRedirectURL
Description copied from class:ExternalContextThe purpose of this method is to generate a query string from the collection of Parameter objects provided by the parameters argument and append that query string to the baseUrl. This method must be able to encode the parameters to a baseUrl that may or may not have existing query parameters. The parameter values should be encoded appropriately for the environment so that the resulting URL can be used as the target of a redirect. It's possible for an ExternalContext implementation to override this method to accomodate the definition of redirect for that environment.See
ExternalContext.encodeActionURL(java.lang.String)for the required specification of how to encode theClientWindow.- Overrides:
encodeRedirectURLin classExternalContext- Parameters:
baseUrl- The base URL onto which the query string generated by this method will be appended. The URL may contain query parameters.parameters- The collection of Parameter objects, representing name=value pairs that are used to produce a query string- Returns:
- the result of encoding.
-
encodePartialActionURL
Description copied from class:ExternalContextReturn the input URL, after performing any rewriting needed to ensure that it can be used in a partial page submission (ajax request) to correctly identify an addressable action in the current application.
See
ExternalContext.encodeActionURL(java.lang.String)for the required specification of how to encode theClientWindow.Jakarta Servlet:Returns the same encoded URL as the
ExternalContext.encodeActionURL(String url)method.Portlet:Returns an encoded URL that, upon HTTP POST, will invoke the RESOURCE_PHASE of the portlet lifecycle.
- Overrides:
encodePartialActionURLin classExternalContext- Parameters:
url- The input URL to be encoded- Returns:
- the encoded URL.
- See Also:
-
getFlash
Description copied from class:ExternalContextReturn the threadsafe
Flashfor this application. The default implementation will throwUnsupportedOperationException. Compliant Jakarta Faces runtimes must provide an implementation of this method.- Overrides:
getFlashin classExternalContext- Returns:
- the
Flashfor this application.
-
release
public void release()Description copied from class:ExternalContextRelease any resources associated with this
ExternalContextinstance. This method is called during during destruction of the associatedFacesContext.- Specified by:
releasein classExternalContext
-