Java Doc for HttpRequestBase.java in  » Web-Server » Rimfaxe-Web-Server » org » apache » catalina » connector » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Server » Rimfaxe Web Server » org.apache.catalina.connector 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.catalina.connector.RequestBase
      org.apache.catalina.connector.HttpRequestBase

All known Subclasses:   org.apache.catalina.connector.http10.HttpRequestImpl,  org.apache.catalina.connector.http.HttpRequestImpl,
HttpRequestBase
public class HttpRequestBase extends RequestBase implements HttpRequest,HttpServletRequest(Code)
Convenience base implementation of the HttpRequest interface, which can be used for the Request implementation required by most Connectors that implement the HTTP protocol. Only the connector-specific methods need to be implemented.
author:
   Craig R. McClanahan
version:
   $Revision: 1.39 $ $Date: 2002/04/22 00:00:50 $

Inner Class :protected class PrivilegedGetSession implements PrivilegedAction

Field Summary
protected  StringauthType
     The authentication type used for this request.
protected  StringcontextPath
     The context path for this request.
protected  ArrayListcookies
     The set of cookies associated with this Request.
protected  StringdecodedRequestURI
     The decoded request URI associated with this request.
protected static  ArrayListempty
     An empty collection to use for returning empty Enumerations.
protected  HttpRequestFacadefacade
     The facade associated with this request.
protected  SimpleDateFormatformats
     The set of SimpleDateFormat formats to use in getDateHeader().
protected  HashMapheaders
     The HTTP headers associated with this Request, keyed by name.
final protected static  Stringinfo
     Descriptive information about this HttpRequest implementation.
protected  Stringmethod
     The request method associated with this Request.
protected  ParameterMapparameters
     The parsed parameters for this request.
protected  booleanparsed
    
protected  StringpathInfo
     The path information for this request.
protected  StringqueryString
     The query string for this request.
protected  StringrequestURI
     The request URI associated with this request.
protected  booleanrequestedSessionCookie
    
protected  StringrequestedSessionId
     The requested session ID (if any) for this request.
protected  booleanrequestedSessionURL
    
protected  booleansecure
    
protected  StringservletPath
     The servlet path for this request.
protected  Sessionsession
     The currently active session for this request.
protected  PrincipaluserPrincipal
     The Principal who has been authenticated for this Request.


Method Summary
public  voidaddCookie(Cookie cookie)
     Add a Cookie to the set of Cookies associated with this Request.
public  voidaddHeader(String name, String value)
     Add a Header to the set of Headers associated with this Request.
public  voidaddParameter(String name, String values)
     Add a parameter name and corresponding set of values to this Request.
public  voidclearCookies()
     Clear the collection of Cookies associated with this Request.
public  voidclearHeaders()
     Clear the collection of Headers associated with this Request.
public  voidclearLocales()
     Clear the collection of Locales associated with this Request.
public  voidclearParameters()
     Clear the collection of parameters associated with this Request.
public  StringgetAuthType()
     Return the authentication type used for this Request.
public  StringgetContextPath()
     Return the portion of the request URI used to select the Context of the Request.
public  Cookie[]getCookies()
     Return the set of Cookies received with this Request.
public  longgetDateHeader(String name)
     Return the value of the specified date header, if any; otherwise return -1.
public  StringgetDecodedRequestURI()
     Return the URL decoded request URI.
public  StringgetHeader(String name)
    
public  EnumerationgetHeaderNames()
     Return the names of all headers received with this request.
public  EnumerationgetHeaders(String name)
     Return all of the values of the specified header, if any; otherwise, return an empty enumeration.
public  StringgetInfo()
     Return descriptive information about this Request implementation and the corresponding version number, in the format <description>/<version>.
public  intgetIntHeader(String name)
     Return the value of the specified header as an integer, or -1 if there is no such header for this request.
public  StringgetMethod()
     Return the HTTP request method used in this Request.
public  StringgetParameter(String name)
     Return the value of the specified request parameter, if any; otherwise, return null.
public  MapgetParameterMap()
     Returns a Map of the parameters of this request.
public  EnumerationgetParameterNames()
     Return the names of all defined request parameters for this request.
public  String[]getParameterValues(String name)
     Return the defined values for the specified request parameter, if any; otherwise, return null.
public  StringgetPathInfo()
     Return the path information associated with this Request.
public  StringgetPathTranslated()
     Return the extra path information for this request, translated to a real path.
public  StringgetQueryString()
     Return the query string associated with this request.
public  StringgetRemoteUser()
     Return the name of the remote user that has been authenticated for this Request.
public  ServletRequestgetRequest()
     Return the ServletRequest for which this object is the facade.
public  RequestDispatchergetRequestDispatcher(String path)
     Return a RequestDispatcher that wraps the resource at the specified path, which may be interpreted as relative to the current request path.
public  StringgetRequestURI()
     Return the request URI for this request.
public  StringBuffergetRequestURL()
     Reconstructs the URL the client used to make the request.
public  StringgetRequestedSessionId()
     Return the session identifier included in this request, if any.
public  StringgetServletPath()
     Return the portion of the request URI used to select the servlet that will process this request.
public  HttpSessiongetSession()
     Return the session associated with this Request, creating one if necessary.
public  HttpSessiongetSession(boolean create)
     Return the session associated with this Request, creating one if necessary and requested.
public  PrincipalgetUserPrincipal()
     Return the principal that has been authenticated for this Request.
public  booleanisRequestedSessionIdFromCookie()
     Return true if the session identifier included in this request came from a cookie.
public  booleanisRequestedSessionIdFromURL()
     Return true if the session identifier included in this request came from the request URI.
public  booleanisRequestedSessionIdFromUrl()
     Return true if the session identifier included in this request came from the request URI.
public  booleanisRequestedSessionIdValid()
     Return true if the session identifier included in this request identifies a valid session.
public  booleanisSecure()
    
public  booleanisUserInRole(String role)
     Return true if the authenticated user principal possesses the specified role name.
protected  voidparseParameters()
     Parse the parameters of this request, if it has not already occurred.
public  voidrecycle()
     Release all object references, and initialize instance variables, in preparation for reuse of this object.
public  voidsetAuthType(String authType)
     Set the authentication type used for this request, if any; otherwise set the type to null.
public  voidsetContextPath(String path)
     Set the context path for this Request.
public  voidsetDecodedRequestURI(String uri)
     Set the decoded request URI.
public  voidsetMethod(String method)
     Set the HTTP request method used for this Request.
public  voidsetPathInfo(String path)
     Set the path information for this Request.
public  voidsetQueryString(String query)
     Set the query string for this Request.
public  voidsetRequestURI(String uri)
     Set the unparsed request URI for this Request.
public  voidsetRequestedSessionCookie(boolean flag)
     Set a flag indicating whether or not the requested session ID for this request came in through a cookie.
public  voidsetRequestedSessionId(String id)
     Set the requested session ID for this request.
public  voidsetRequestedSessionURL(boolean flag)
     Set a flag indicating whether or not the requested session ID for this request came in through a URL.
public  voidsetSecure(boolean secure)
     Set the flag indicating whether this Request was received on a secure communications link or not.
public  voidsetServletPath(String path)
     Set the servlet path for this Request.
public  voidsetUserPrincipal(Principal principal)
     Set the Principal who has been authenticated for this Request.

Field Detail
authType
protected String authType(Code)
The authentication type used for this request.



contextPath
protected String contextPath(Code)
The context path for this request.



cookies
protected ArrayList cookies(Code)
The set of cookies associated with this Request.



decodedRequestURI
protected String decodedRequestURI(Code)
The decoded request URI associated with this request.



empty
protected static ArrayList empty(Code)
An empty collection to use for returning empty Enumerations. Do not add any elements to this collection!



facade
protected HttpRequestFacade facade(Code)
The facade associated with this request.



formats
protected SimpleDateFormat formats(Code)
The set of SimpleDateFormat formats to use in getDateHeader().



headers
protected HashMap headers(Code)
The HTTP headers associated with this Request, keyed by name. The values are ArrayLists of the corresponding header values.



info
final protected static String info(Code)
Descriptive information about this HttpRequest implementation.



method
protected String method(Code)
The request method associated with this Request.



parameters
protected ParameterMap parameters(Code)
The parsed parameters for this request. This is populated only if parameter information is requested via one of the getParameter() family of method calls. The key is the parameter name, while the value is a String array of values for this parameter.

IMPLEMENTATION NOTE - Once the parameters for a particular request are parsed and stored here, they are not modified. Therefore, application level access to the parameters need not be synchronized.




parsed
protected boolean parsed(Code)
Have the parameters for this request been parsed yet?



pathInfo
protected String pathInfo(Code)
The path information for this request.



queryString
protected String queryString(Code)
The query string for this request.



requestURI
protected String requestURI(Code)
The request URI associated with this request.



requestedSessionCookie
protected boolean requestedSessionCookie(Code)
Was the requested session ID received in a cookie?



requestedSessionId
protected String requestedSessionId(Code)
The requested session ID (if any) for this request.



requestedSessionURL
protected boolean requestedSessionURL(Code)
Was the requested session ID received in a URL?



secure
protected boolean secure(Code)
Was this request received on a secure channel?



servletPath
protected String servletPath(Code)
The servlet path for this request.



session
protected Session session(Code)
The currently active session for this request.



userPrincipal
protected Principal userPrincipal(Code)
The Principal who has been authenticated for this Request.





Method Detail
addCookie
public void addCookie(Cookie cookie)(Code)
Add a Cookie to the set of Cookies associated with this Request.
Parameters:
  cookie - The new cookie



addHeader
public void addHeader(String name, String value)(Code)
Add a Header to the set of Headers associated with this Request.
Parameters:
  name - The new header name
Parameters:
  value - The new header value



addParameter
public void addParameter(String name, String values)(Code)
Add a parameter name and corresponding set of values to this Request. (This is used when restoring the original request on a form based login).
Parameters:
  name - Name of this request parameter
Parameters:
  values - Corresponding values for this request parameter



clearCookies
public void clearCookies()(Code)
Clear the collection of Cookies associated with this Request.



clearHeaders
public void clearHeaders()(Code)
Clear the collection of Headers associated with this Request.



clearLocales
public void clearLocales()(Code)
Clear the collection of Locales associated with this Request.



clearParameters
public void clearParameters()(Code)
Clear the collection of parameters associated with this Request.



getAuthType
public String getAuthType()(Code)
Return the authentication type used for this Request.



getContextPath
public String getContextPath()(Code)
Return the portion of the request URI used to select the Context of the Request.



getCookies
public Cookie[] getCookies()(Code)
Return the set of Cookies received with this Request.



getDateHeader
public long getDateHeader(String name)(Code)
Return the value of the specified date header, if any; otherwise return -1.
Parameters:
  name - Name of the requested date header
exception:
  IllegalArgumentException - if the specified header valuecannot be converted to a date



getDecodedRequestURI
public String getDecodedRequestURI()(Code)
Return the URL decoded request URI.



getHeader
public String getHeader(String name)(Code)
Return the first value of the specified header, if any; otherwise, return null
Parameters:
  name - Name of the requested header



getHeaderNames
public Enumeration getHeaderNames()(Code)
Return the names of all headers received with this request.



getHeaders
public Enumeration getHeaders(String name)(Code)
Return all of the values of the specified header, if any; otherwise, return an empty enumeration.
Parameters:
  name - Name of the requested header



getInfo
public String getInfo()(Code)
Return descriptive information about this Request implementation and the corresponding version number, in the format <description>/<version>.



getIntHeader
public int getIntHeader(String name)(Code)
Return the value of the specified header as an integer, or -1 if there is no such header for this request.
Parameters:
  name - Name of the requested header
exception:
  IllegalArgumentException - if the specified header valuecannot be converted to an integer



getMethod
public String getMethod()(Code)
Return the HTTP request method used in this Request.



getParameter
public String getParameter(String name)(Code)
Return the value of the specified request parameter, if any; otherwise, return null. If there is more than one value defined, return only the first one.
Parameters:
  name - Name of the desired request parameter



getParameterMap
public Map getParameterMap()(Code)
Returns a Map of the parameters of this request. Request parameters are extra information sent with the request. For HTTP servlets, parameters are contained in the query string or posted form data. A Map containing parameter names as keysand parameter values as map values.



getParameterNames
public Enumeration getParameterNames()(Code)
Return the names of all defined request parameters for this request.



getParameterValues
public String[] getParameterValues(String name)(Code)
Return the defined values for the specified request parameter, if any; otherwise, return null.
Parameters:
  name - Name of the desired request parameter



getPathInfo
public String getPathInfo()(Code)
Return the path information associated with this Request.



getPathTranslated
public String getPathTranslated()(Code)
Return the extra path information for this request, translated to a real path.



getQueryString
public String getQueryString()(Code)
Return the query string associated with this request.



getRemoteUser
public String getRemoteUser()(Code)
Return the name of the remote user that has been authenticated for this Request.



getRequest
public ServletRequest getRequest()(Code)
Return the ServletRequest for which this object is the facade. This method must be implemented by a subclass.



getRequestDispatcher
public RequestDispatcher getRequestDispatcher(String path)(Code)
Return a RequestDispatcher that wraps the resource at the specified path, which may be interpreted as relative to the current request path.
Parameters:
  path - Path of the resource to be wrapped



getRequestURI
public String getRequestURI()(Code)
Return the request URI for this request.



getRequestURL
public StringBuffer getRequestURL()(Code)
Reconstructs the URL the client used to make the request. The returned URL contains a protocol, server name, port number, and server path, but it does not include query string parameters.

Because this method returns a StringBuffer, not a String, you can modify the URL easily, for example, to append query parameters.

This method is useful for creating redirect messages and for reporting errors. A StringBuffer object containing thereconstructed URL




getRequestedSessionId
public String getRequestedSessionId()(Code)
Return the session identifier included in this request, if any.



getServletPath
public String getServletPath()(Code)
Return the portion of the request URI used to select the servlet that will process this request.



getSession
public HttpSession getSession()(Code)
Return the session associated with this Request, creating one if necessary.



getSession
public HttpSession getSession(boolean create)(Code)
Return the session associated with this Request, creating one if necessary and requested.
Parameters:
  create - Create a new session if one does not exist



getUserPrincipal
public Principal getUserPrincipal()(Code)
Return the principal that has been authenticated for this Request.



isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()(Code)
Return true if the session identifier included in this request came from a cookie.



isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()(Code)
Return true if the session identifier included in this request came from the request URI.



isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()(Code)
Return true if the session identifier included in this request came from the request URI.



isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()(Code)
Return true if the session identifier included in this request identifies a valid session.



isSecure
public boolean isSecure()(Code)
Was this request received on a secure connection?



isUserInRole
public boolean isUserInRole(String role)(Code)
Return true if the authenticated user principal possesses the specified role name.
Parameters:
  role - Role name to be validated



parseParameters
protected void parseParameters()(Code)
Parse the parameters of this request, if it has not already occurred. If parameters are present in both the query string and the request content, they are merged.



recycle
public void recycle()(Code)
Release all object references, and initialize instance variables, in preparation for reuse of this object.



setAuthType
public void setAuthType(String authType)(Code)
Set the authentication type used for this request, if any; otherwise set the type to null. Typical values are "BASIC", "DIGEST", or "SSL".
Parameters:
  authType - The authentication type used



setContextPath
public void setContextPath(String path)(Code)
Set the context path for this Request. This will normally be called when the associated Context is mapping the Request to a particular Wrapper.
Parameters:
  path - The context path



setDecodedRequestURI
public void setDecodedRequestURI(String uri)(Code)
Set the decoded request URI.
Parameters:
  uri - The decoded request URI



setMethod
public void setMethod(String method)(Code)
Set the HTTP request method used for this Request.
Parameters:
  method - The request method



setPathInfo
public void setPathInfo(String path)(Code)
Set the path information for this Request. This will normally be called when the associated Context is mapping the Request to a particular Wrapper.
Parameters:
  path - The path information



setQueryString
public void setQueryString(String query)(Code)
Set the query string for this Request. This will normally be called by the HTTP Connector, when it parses the request headers.
Parameters:
  query - The query string



setRequestURI
public void setRequestURI(String uri)(Code)
Set the unparsed request URI for this Request. This will normally be called by the HTTP Connector, when it parses the request headers.
Parameters:
  uri - The request URI



setRequestedSessionCookie
public void setRequestedSessionCookie(boolean flag)(Code)
Set a flag indicating whether or not the requested session ID for this request came in through a cookie. This is normally called by the HTTP Connector, when it parses the request headers.
Parameters:
  flag - The new flag



setRequestedSessionId
public void setRequestedSessionId(String id)(Code)
Set the requested session ID for this request. This is normally called by the HTTP Connector, when it parses the request headers.
Parameters:
  id - The new session id



setRequestedSessionURL
public void setRequestedSessionURL(boolean flag)(Code)
Set a flag indicating whether or not the requested session ID for this request came in through a URL. This is normally called by the HTTP Connector, when it parses the request headers.
Parameters:
  flag - The new flag



setSecure
public void setSecure(boolean secure)(Code)
Set the flag indicating whether this Request was received on a secure communications link or not. This will normally be called by the HTTP Connector, when it parses the request headers.
Parameters:
  secure - The new secure flag



setServletPath
public void setServletPath(String path)(Code)
Set the servlet path for this Request. This will normally be called when the associated Context is mapping the Request to a particular Wrapper.
Parameters:
  path - The servlet path



setUserPrincipal
public void setUserPrincipal(Principal principal)(Code)
Set the Principal who has been authenticated for this Request. This value is also used to calculate the value to be returned by the getRemoteUser() method.
Parameters:
  principal - The user Principal



Fields inherited from org.apache.catalina.connector.RequestBase
protected HashMap attributes(Code)(Java Doc)
protected String authorization(Code)(Java Doc)
protected String characterEncoding(Code)(Java Doc)
protected Connector connector(Code)(Java Doc)
protected int contentLength(Code)(Java Doc)
protected String contentType(Code)(Java Doc)
protected Context context(Code)(Java Doc)
protected static Locale defaultLocale(Code)(Java Doc)
protected RequestFacade facade(Code)(Java Doc)
final protected static String info(Code)(Java Doc)
protected InputStream input(Code)(Java Doc)
protected ArrayList locales(Code)(Java Doc)
protected String protocol(Code)(Java Doc)
protected BufferedReader reader(Code)(Java Doc)
protected String remoteAddr(Code)(Java Doc)
protected String remoteHost(Code)(Java Doc)
protected Response response(Code)(Java Doc)
protected String scheme(Code)(Java Doc)
protected boolean secure(Code)(Java Doc)
protected String serverName(Code)(Java Doc)
protected int serverPort(Code)(Java Doc)
protected static StringManager sm(Code)(Java Doc)
protected Socket socket(Code)(Java Doc)
protected ServletInputStream stream(Code)(Java Doc)
protected Wrapper wrapper(Code)(Java Doc)

Methods inherited from org.apache.catalina.connector.RequestBase
public void addLocale(Locale locale)(Code)(Java Doc)
public ServletInputStream createInputStream() throws IOException(Code)(Java Doc)
public void finishRequest() throws IOException(Code)(Java Doc)
public Object getAttribute(String name)(Code)(Java Doc)
public Enumeration getAttributeNames()(Code)(Java Doc)
public String getAuthorization()(Code)(Java Doc)
public String getCharacterEncoding()(Code)(Java Doc)
public Connector getConnector()(Code)(Java Doc)
public int getContentLength()(Code)(Java Doc)
public String getContentType()(Code)(Java Doc)
public Context getContext()(Code)(Java Doc)
public String getInfo()(Code)(Java Doc)
public ServletInputStream getInputStream() throws IOException(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Enumeration getLocales()(Code)(Java Doc)
public Object getNote(String name)(Code)(Java Doc)
public Iterator getNoteNames()(Code)(Java Doc)
abstract public String getParameter(String name)(Code)(Java Doc)
abstract public Map getParameterMap()(Code)(Java Doc)
abstract public Enumeration getParameterNames()(Code)(Java Doc)
abstract public String[] getParameterValues(String name)(Code)(Java Doc)
public String getProtocol()(Code)(Java Doc)
public BufferedReader getReader() throws IOException(Code)(Java Doc)
public String getRealPath(String path)(Code)(Java Doc)
public String getRemoteAddr()(Code)(Java Doc)
public String getRemoteHost()(Code)(Java Doc)
public ServletRequest getRequest()(Code)(Java Doc)
abstract public RequestDispatcher getRequestDispatcher(String path)(Code)(Java Doc)
public Response getResponse()(Code)(Java Doc)
public String getScheme()(Code)(Java Doc)
public String getServerName()(Code)(Java Doc)
public int getServerPort()(Code)(Java Doc)
public Socket getSocket()(Code)(Java Doc)
public InputStream getStream()(Code)(Java Doc)
public Wrapper getWrapper()(Code)(Java Doc)
public boolean isSecure()(Code)(Java Doc)
public void recycle()(Code)(Java Doc)
public void removeAttribute(String name)(Code)(Java Doc)
public void removeNote(String name)(Code)(Java Doc)
public void setAttribute(String name, Object value)(Code)(Java Doc)
public void setAuthorization(String authorization)(Code)(Java Doc)
public void setCharacterEncoding(String enc) throws UnsupportedEncodingException(Code)(Java Doc)
public void setConnector(Connector connector)(Code)(Java Doc)
public void setContentLength(int length)(Code)(Java Doc)
public void setContentType(String type)(Code)(Java Doc)
public void setContext(Context context)(Code)(Java Doc)
public void setNote(String name, Object value)(Code)(Java Doc)
public void setProtocol(String protocol)(Code)(Java Doc)
public void setRemoteAddr(String remoteAddr)(Code)(Java Doc)
public void setRemoteHost(String remoteHost)(Code)(Java Doc)
public void setResponse(Response response)(Code)(Java Doc)
public void setScheme(String scheme)(Code)(Java Doc)
public void setSecure(boolean secure)(Code)(Java Doc)
public void setServerName(String name)(Code)(Java Doc)
public void setServerPort(int port)(Code)(Java Doc)
public void setSocket(Socket socket)(Code)(Java Doc)
public void setStream(InputStream input)(Code)(Java Doc)
public void setWrapper(Wrapper wrapper)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.