Class ServletContextImpl

    • Constructor Detail

      • ServletContextImpl

        public ServletContextImpl​(org.osgi.framework.Bundle bundle,
                                  jakarta.servlet.ServletContext context,
                                  org.osgi.service.http.HttpContext httpContext,
                                  boolean sharedAttributes,
                                  PerContextHandlerRegistry registry)
        Create a new servlet context implementation
        Parameters:
        bundle - The bundle
        context - The context
        httpContext - The http context
        sharedAttributes - shared attribtes
        registry - The registry
    • Method Detail

      • addFilter

        public jakarta.servlet.FilterRegistration.Dynamic addFilter​(String filterName,
                                                                    Class<? extends jakarta.servlet.Filter> type)
        Specified by:
        addFilter in interface jakarta.servlet.ServletContext
      • addFilter

        public jakarta.servlet.FilterRegistration.Dynamic addFilter​(String filterName,
                                                                    jakarta.servlet.Filter filter)
        Specified by:
        addFilter in interface jakarta.servlet.ServletContext
      • addFilter

        public jakarta.servlet.FilterRegistration.Dynamic addFilter​(String filterName,
                                                                    String className)
        Specified by:
        addFilter in interface jakarta.servlet.ServletContext
      • addListener

        public void addListener​(Class<? extends EventListener> type)
        Specified by:
        addListener in interface jakarta.servlet.ServletContext
      • addListener

        public void addListener​(String className)
        Specified by:
        addListener in interface jakarta.servlet.ServletContext
      • addListener

        public <T extends EventListener> void addListener​(T listener)
        Specified by:
        addListener in interface jakarta.servlet.ServletContext
      • addServlet

        public jakarta.servlet.ServletRegistration.Dynamic addServlet​(String servletName,
                                                                      Class<? extends jakarta.servlet.Servlet> type)
        Specified by:
        addServlet in interface jakarta.servlet.ServletContext
      • addServlet

        public jakarta.servlet.ServletRegistration.Dynamic addServlet​(String servletName,
                                                                      jakarta.servlet.Servlet servlet)
        Specified by:
        addServlet in interface jakarta.servlet.ServletContext
      • addServlet

        public jakarta.servlet.ServletRegistration.Dynamic addServlet​(String servletName,
                                                                      String className)
        Specified by:
        addServlet in interface jakarta.servlet.ServletContext
      • createFilter

        public <T extends jakarta.servlet.Filter> T createFilter​(Class<T> type)
                                                          throws jakarta.servlet.ServletException
        Specified by:
        createFilter in interface jakarta.servlet.ServletContext
        Throws:
        jakarta.servlet.ServletException
      • createListener

        public <T extends EventListener> T createListener​(Class<T> type)
                                                   throws jakarta.servlet.ServletException
        Specified by:
        createListener in interface jakarta.servlet.ServletContext
        Throws:
        jakarta.servlet.ServletException
      • createServlet

        public <T extends jakarta.servlet.Servlet> T createServlet​(Class<T> type)
                                                            throws jakarta.servlet.ServletException
        Specified by:
        createServlet in interface jakarta.servlet.ServletContext
        Throws:
        jakarta.servlet.ServletException
      • declareRoles

        public void declareRoles​(String... roleNames)
        Specified by:
        declareRoles in interface jakarta.servlet.ServletContext
      • getVirtualServerName

        public String getVirtualServerName()
        Specified by:
        getVirtualServerName in interface jakarta.servlet.ServletContext
      • getAttribute

        public Object getAttribute​(String name)
        Specified by:
        getAttribute in interface jakarta.servlet.ServletContext
      • getAttributeNames

        public Enumeration<String> getAttributeNames()
        Specified by:
        getAttributeNames in interface jakarta.servlet.ServletContext
      • getClassLoader

        public ClassLoader getClassLoader()
        Specified by:
        getClassLoader in interface jakarta.servlet.ServletContext
      • getContext

        public jakarta.servlet.ServletContext getContext​(String uri)
        Specified by:
        getContext in interface jakarta.servlet.ServletContext
      • getContextPath

        public String getContextPath()
        Specified by:
        getContextPath in interface jakarta.servlet.ServletContext
      • getDefaultSessionTrackingModes

        public Set<jakarta.servlet.SessionTrackingMode> getDefaultSessionTrackingModes()
        Specified by:
        getDefaultSessionTrackingModes in interface jakarta.servlet.ServletContext
      • getEffectiveMajorVersion

        public int getEffectiveMajorVersion()
        Specified by:
        getEffectiveMajorVersion in interface jakarta.servlet.ServletContext
      • getEffectiveMinorVersion

        public int getEffectiveMinorVersion()
        Specified by:
        getEffectiveMinorVersion in interface jakarta.servlet.ServletContext
      • getEffectiveSessionTrackingModes

        public Set<jakarta.servlet.SessionTrackingMode> getEffectiveSessionTrackingModes()
        Specified by:
        getEffectiveSessionTrackingModes in interface jakarta.servlet.ServletContext
      • getFilterRegistration

        public jakarta.servlet.FilterRegistration getFilterRegistration​(String filterName)
        Specified by:
        getFilterRegistration in interface jakarta.servlet.ServletContext
      • getFilterRegistrations

        public Map<String,​? extends jakarta.servlet.FilterRegistration> getFilterRegistrations()
        Specified by:
        getFilterRegistrations in interface jakarta.servlet.ServletContext
      • getInitParameter

        public String getInitParameter​(String name)
        Specified by:
        getInitParameter in interface jakarta.servlet.ServletContext
      • getInitParameterNames

        public Enumeration<String> getInitParameterNames()
        Specified by:
        getInitParameterNames in interface jakarta.servlet.ServletContext
      • getJspConfigDescriptor

        public jakarta.servlet.descriptor.JspConfigDescriptor getJspConfigDescriptor()
        Specified by:
        getJspConfigDescriptor in interface jakarta.servlet.ServletContext
      • getMajorVersion

        public int getMajorVersion()
        Specified by:
        getMajorVersion in interface jakarta.servlet.ServletContext
      • getMimeType

        public String getMimeType​(String file)
        Specified by:
        getMimeType in interface jakarta.servlet.ServletContext
      • getMinorVersion

        public int getMinorVersion()
        Specified by:
        getMinorVersion in interface jakarta.servlet.ServletContext
      • getRealPath

        public String getRealPath​(String name)
        Specified by:
        getRealPath in interface jakarta.servlet.ServletContext
      • getResource

        public URL getResource​(String path)
        Specified by:
        getResource in interface jakarta.servlet.ServletContext
      • getResourceAsStream

        public InputStream getResourceAsStream​(String path)
        Specified by:
        getResourceAsStream in interface jakarta.servlet.ServletContext
      • getResourcePaths

        public Set<String> getResourcePaths​(String path)
        Specified by:
        getResourcePaths in interface jakarta.servlet.ServletContext
      • getServerInfo

        public String getServerInfo()
        Specified by:
        getServerInfo in interface jakarta.servlet.ServletContext
      • getServlet

        public jakarta.servlet.Servlet getServlet​(String name)
                                           throws jakarta.servlet.ServletException
        Specified by:
        getServlet in interface jakarta.servlet.ServletContext
        Throws:
        jakarta.servlet.ServletException
      • getServletContextName

        public String getServletContextName()
        Specified by:
        getServletContextName in interface jakarta.servlet.ServletContext
      • getServletNames

        public Enumeration<String> getServletNames()
        Specified by:
        getServletNames in interface jakarta.servlet.ServletContext
      • getServletRegistration

        public jakarta.servlet.ServletRegistration getServletRegistration​(String servletName)
        Specified by:
        getServletRegistration in interface jakarta.servlet.ServletContext
      • getServletRegistrations

        public Map<String,​? extends jakarta.servlet.ServletRegistration> getServletRegistrations()
        Specified by:
        getServletRegistrations in interface jakarta.servlet.ServletContext
      • getServlets

        public Enumeration<jakarta.servlet.Servlet> getServlets()
        Specified by:
        getServlets in interface jakarta.servlet.ServletContext
      • getSessionCookieConfig

        public jakarta.servlet.SessionCookieConfig getSessionCookieConfig()
        Specified by:
        getSessionCookieConfig in interface jakarta.servlet.ServletContext
      • finishSecurity

        public void finishSecurity​(jakarta.servlet.http.HttpServletRequest req,
                                   jakarta.servlet.http.HttpServletResponse res)
        Specified by:
        finishSecurity in interface ExtServletContext
      • log

        public void log​(Exception cause,
                        String message)
        Specified by:
        log in interface jakarta.servlet.ServletContext
      • log

        public void log​(String message)
        Specified by:
        log in interface jakarta.servlet.ServletContext
      • log

        public void log​(String message,
                        Throwable cause)
        Specified by:
        log in interface jakarta.servlet.ServletContext
      • removeAttribute

        public void removeAttribute​(String name)
        Specified by:
        removeAttribute in interface jakarta.servlet.ServletContext
      • setAttribute

        public void setAttribute​(String name,
                                 Object value)
        Specified by:
        setAttribute in interface jakarta.servlet.ServletContext
      • setInitParameter

        public boolean setInitParameter​(String name,
                                        String value)
        Specified by:
        setInitParameter in interface jakarta.servlet.ServletContext
      • setSessionTrackingModes

        public void setSessionTrackingModes​(Set<jakarta.servlet.SessionTrackingMode> modes)
        Specified by:
        setSessionTrackingModes in interface jakarta.servlet.ServletContext
      • getNamedDispatcher

        public jakarta.servlet.RequestDispatcher getNamedDispatcher​(String name)
        Specified by:
        getNamedDispatcher in interface jakarta.servlet.ServletContext
      • getRequestDispatcher

        public jakarta.servlet.RequestDispatcher getRequestDispatcher​(String path)
        Specified by:
        getRequestDispatcher in interface jakarta.servlet.ServletContext
      • addJspFile

        public jakarta.servlet.ServletRegistration.Dynamic addJspFile​(String servletName,
                                                                      String jspFile)
        Specified by:
        addJspFile in interface jakarta.servlet.ServletContext
      • getSessionTimeout

        public int getSessionTimeout()
        Specified by:
        getSessionTimeout in interface jakarta.servlet.ServletContext
      • setSessionTimeout

        public void setSessionTimeout​(int sessionTimeout)
        Specified by:
        setSessionTimeout in interface jakarta.servlet.ServletContext
      • getRequestCharacterEncoding

        public String getRequestCharacterEncoding()
        Specified by:
        getRequestCharacterEncoding in interface jakarta.servlet.ServletContext
      • setRequestCharacterEncoding

        public void setRequestCharacterEncoding​(String encoding)
        Specified by:
        setRequestCharacterEncoding in interface jakarta.servlet.ServletContext
      • getResponseCharacterEncoding

        public String getResponseCharacterEncoding()
        Specified by:
        getResponseCharacterEncoding in interface jakarta.servlet.ServletContext
      • setResponseCharacterEncoding

        public void setResponseCharacterEncoding​(String encoding)
        Specified by:
        setResponseCharacterEncoding in interface jakarta.servlet.ServletContext
      • getConfig

        public org.apache.felix.http.base.internal.HttpConfig getConfig()
        Specified by:
        getConfig in interface ExtServletContext