org.glassfish.admingui.common.servlet
Class DownloadServlet.Context

java.lang.Object
  extended by 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
DownloadServlet.Context()
           The default constructor.
 
Method Summary
 Object getAttribute(String name)
           This method may be used to manage arbitrary information between the DownloadServlet and the DownloadServlet.ContentSource.
 javax.servlet.Servlet getServlet()
           This returns the Servlet associated with the request.
 javax.servlet.ServletConfig getServletConfig()
           This returns the ServletConfig.
 javax.servlet.ServletRequest getServletRequest()
           This returns the ServletRequest associated with the request.
 javax.servlet.ServletResponse getServletResponse()
           This returns the ServletResponse associated with the request.
 void removeAttribute(String name)
           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(javax.servlet.Servlet servlet)
           This sets the Servlet associated with the request.
protected  void setServletConfig(javax.servlet.ServletConfig config)
           This sets the ServletConfig.
protected  void setServletRequest(javax.servlet.ServletRequest request)
           This sets the ServletRequest associated with the request.
protected  void setServletResponse(javax.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 Detail

DownloadServlet.Context

public DownloadServlet.Context()

The default constructor.

Method Detail

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 javax.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(javax.servlet.Servlet servlet)

This sets the Servlet associated with the request.


getServletConfig

public javax.servlet.ServletConfig getServletConfig()

This returns the ServletConfig.


setServletConfig

protected void setServletConfig(javax.servlet.ServletConfig config)

This sets the ServletConfig.


getServletRequest

public javax.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(javax.servlet.ServletRequest request)

This sets the ServletRequest associated with the request.


getServletResponse

public javax.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(javax.servlet.ServletResponse response)

This sets the ServletResponse associated with the request.



Copyright © 2012. All Rights Reserved.