home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-tomcat-addon-1.4.9-installer.exe / servlet-api.jar / javax / servlet / ServletRequest.class (.txt) < prev    next >
Encoding:
Java Class File  |  2004-08-28  |  1.3 KB  |  70 lines

  1. package javax.servlet;
  2.  
  3. import java.io.BufferedReader;
  4. import java.io.IOException;
  5. import java.io.UnsupportedEncodingException;
  6. import java.util.Enumeration;
  7. import java.util.Locale;
  8. import java.util.Map;
  9.  
  10. public interface ServletRequest {
  11.    Object getAttribute(String var1);
  12.  
  13.    Enumeration getAttributeNames();
  14.  
  15.    String getCharacterEncoding();
  16.  
  17.    void setCharacterEncoding(String var1) throws UnsupportedEncodingException;
  18.  
  19.    int getContentLength();
  20.  
  21.    String getContentType();
  22.  
  23.    ServletInputStream getInputStream() throws IOException;
  24.  
  25.    String getParameter(String var1);
  26.  
  27.    Enumeration getParameterNames();
  28.  
  29.    String[] getParameterValues(String var1);
  30.  
  31.    Map getParameterMap();
  32.  
  33.    String getProtocol();
  34.  
  35.    String getScheme();
  36.  
  37.    String getServerName();
  38.  
  39.    int getServerPort();
  40.  
  41.    BufferedReader getReader() throws IOException;
  42.  
  43.    String getRemoteAddr();
  44.  
  45.    String getRemoteHost();
  46.  
  47.    void setAttribute(String var1, Object var2);
  48.  
  49.    void removeAttribute(String var1);
  50.  
  51.    Locale getLocale();
  52.  
  53.    Enumeration getLocales();
  54.  
  55.    boolean isSecure();
  56.  
  57.    RequestDispatcher getRequestDispatcher(String var1);
  58.  
  59.    /** @deprecated */
  60.    String getRealPath(String var1);
  61.  
  62.    int getRemotePort();
  63.  
  64.    String getLocalName();
  65.  
  66.    String getLocalAddr();
  67.  
  68.    int getLocalPort();
  69. }
  70.