Class DownloadServlet.Context

java.lang.Object
org.glassfish.admingui.common.servlet.DownloadServlet.Context
Enclosing class:
DownloadServlet

public static class DownloadServlet.Context extends Object

This class provides information about the request that may be necessary for the DownloadServlet.ContentSource to provide content. The DownloadServlet is responsible for supplying this object to the DownloadServlet.ContentSource.

  • Constructor Summary

    Constructors
    Constructor
    Description
    The default constructor.
  • Method Summary

    Modifier and Type
    Method
    Description
    This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource.
    jakarta.servlet.Servlet
    This returns the Servlet associated with the request.
    jakarta.servlet.ServletConfig
    This returns the ServletConfig.
    jakarta.servlet.ServletRequest
    This returns the ServletRequest associated with the request.
    jakarta.servlet.ServletResponse
    This returns the ServletResponse associated with the request.
    void
    This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource.
    void
    setAttribute(String name, Object value)
    This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource.
    protected void
    setServlet(jakarta.servlet.Servlet servlet)
    This sets the Servlet associated with the request.
    protected void
    setServletConfig(jakarta.servlet.ServletConfig config)
    This sets the ServletConfig.
    protected void
    setServletRequest(jakarta.servlet.ServletRequest request)
    This sets the ServletRequest associated with the request.
    protected void
    setServletResponse(jakarta.servlet.ServletResponse response)
    This sets the ServletResponse associated with the request.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Context

      public Context()

      The default constructor.

  • Method Details

    • getAttribute

      public Object getAttribute(String name)

      This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource. This method retrieves an attribute.

    • setAttribute

      public void setAttribute(String name, Object value)

      This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource. This method sets an attribute.

    • removeAttribute

      public void removeAttribute(String name)

      This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource. This method removes an attribute.

    • getServlet

      public jakarta.servlet.Servlet getServlet()

      This returns the Servlet associated with the request. This may be cast to the specific Servlet instance, such as HttpServlet.

    • setServlet

      protected void setServlet(jakarta.servlet.Servlet servlet)

      This sets the Servlet associated with the request.

    • getServletConfig

      public jakarta.servlet.ServletConfig getServletConfig()

      This returns the ServletConfig.

    • setServletConfig

      protected void setServletConfig(jakarta.servlet.ServletConfig config)

      This sets the ServletConfig.

    • getServletRequest

      public jakarta.servlet.ServletRequest getServletRequest()

      This returns the ServletRequest associated with the request. This may be cast to the specific type, such as HttpServletRequest.

    • setServletRequest

      protected void setServletRequest(jakarta.servlet.ServletRequest request)

      This sets the ServletRequest associated with the request.

    • getServletResponse

      public jakarta.servlet.ServletResponse getServletResponse()

      This returns the ServletResponse associated with the request. This may be cast to the specific type, such as HttpServletResponse.

    • setServletResponse

      protected void setServletResponse(jakarta.servlet.ServletResponse response)

      This sets the ServletResponse associated with the request.