Java Doc for HttpReplyMessage.java in  » Web-Server » Jigsaw » org » w3c » www » http » 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 » Jigsaw » org.w3c.www.http 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.w3c.www.http.HttpMessage
      org.w3c.www.http.HttpEntityMessage
         org.w3c.www.http.HttpReplyMessage

All known Subclasses:   org.w3c.jigsaw.http.Reply,  org.w3c.www.protocol.http.Reply,
HttpReplyMessage
public class HttpReplyMessage extends HttpEntityMessage (Code)


Field Summary
public static  intH_ACCEPT_RANGES
    
public static  intH_AGE
    
public static  intH_AUTHENTICATION_INFO
    
public static  intH_LOCATION
    
public static  intH_PROXY_AUTHENTICATE
    
public static  intH_PUBLIC
    
public static  intH_RETRY_AFTER
    
public static  intH_SERVER
    
public static  intH_VARY
    
public static  intH_WARNING
    
public static  intH_WWW_AUTHENTICATE
    
protected  Stringreason
     The reason phrase.
protected  intstatus
     The status associated with this reply.

Constructor Summary
public  HttpReplyMessage(MimeParser parser)
    
public  HttpReplyMessage()
    

Method Summary
public  voidaddAuthenticationInfo(String name, String value)
    
public  voidaddWarning(HttpWarning warning)
     Add a warning to this reply message.
public  booleancheckMustRevalidate()
     Check the must-revalidate directive of the cache control header.
public  booleancheckProxyRevalidate()
     Check the proxy-revalidate directive of the cache control header.
public  booleancheckPublic()
     Check the public directive of the cache control header.
public  voiddump(OutputStream out)
    
public  String[]getAcceptRanges()
     Get the list of accepted ranges.
public  intgetAge()
     Get the age of the attached entity.
public  HttpParamListgetAuthenticationInfo()
     Get the Authentication Info (see digest auth) attached to this reply.
public  StringgetLocation()
     Get the location of the reply.
public  String[]getPrivate()
     Get the private directive of the cache control header.
public  HttpChallengegetProxyAuthenticate()
     Get the proxy authentication challenge from this reply.
public  String[]getPublic()
     Get the list of publicly allowed methods on queried resource.
public  StringgetReason()
     Get the reason phrase for this reply.
public  StringgetServer()
     Get the description of the server that generated this reply.
public  StringgetStandardReason(int status)
     Get the standard HTTP reason phrase for the given status code.
Parameters:
  status - The given status code.
public  intgetStatus()
     Get this reply status code.
public  String[]getVary()
     Get the vary header value.
public  HttpChallengegetWWWAuthenticate()
     Get the challenge attached to this reply.
public  HttpWarning[]getWarning()
     Get the list of warnings attached to this reply.
public  booleannotifyBeginParsing(MimeParser parser)
     MimeHeaderHolder implementation - Begining of reply parsing.
public  voidsetAcceptRanges(String units)
     Set the list of units in which range requests are accepted.
public  voidsetAge(int age)
     Set the age of the attached entity.
public  voidsetAuthenticationInfo(HttpParamList plist)
     Attach Authentication Info to this reply.
public  voidsetLocation(URL location)
     Set the location value of the reply.
public  voidsetLocation(String location)
     Set the location value of the reply.
public  voidsetMustRevalidate(boolean onoff)
     Set the must-revalidate cache control directive.
public  voidsetProxyAuthenticate(HttpChallenge challenge)
     Set thye proxy authentication challenge on this reply.
public  voidsetProxyRevalidate(boolean onoff)
     Set the proxy-revalidate cache control directive.
public  voidsetPublic(boolean onoff)
     Set the public cache control directive.
public  voidsetPublic(String mth)
     Set the list of allowed method on queried resource.
public  voidsetReason(String reason)
     Set the reason phrase of this reply.
public  voidsetRetryAfter(int delay)
    
public  voidsetRetryAfter(long date)
    
public  voidsetServer(String server)
     Set the description of the server.
public  voidsetStatus(int status)
     Set this reply status code.
public  voidsetVary(String varies)
     Set the vary header value.
public  voidsetWWWAuthenticate(HttpChallenge challenge)
     Attach a challenge to this reply.
public  voidsetWarning(HttpWarning warnings)
     Set the warning list attached to this reply.
protected  voidstartEmit(OutputStream out, int what)
     Emit the status line before emiting the actual reply headers.

Field Detail
H_ACCEPT_RANGES
public static int H_ACCEPT_RANGES(Code)



H_AGE
public static int H_AGE(Code)



H_AUTHENTICATION_INFO
public static int H_AUTHENTICATION_INFO(Code)



H_LOCATION
public static int H_LOCATION(Code)



H_PROXY_AUTHENTICATE
public static int H_PROXY_AUTHENTICATE(Code)



H_PUBLIC
public static int H_PUBLIC(Code)



H_RETRY_AFTER
public static int H_RETRY_AFTER(Code)



H_SERVER
public static int H_SERVER(Code)



H_VARY
public static int H_VARY(Code)



H_WARNING
public static int H_WARNING(Code)



H_WWW_AUTHENTICATE
public static int H_WWW_AUTHENTICATE(Code)



reason
protected String reason(Code)
The reason phrase.



status
protected int status(Code)
The status associated with this reply.




Constructor Detail
HttpReplyMessage
public HttpReplyMessage(MimeParser parser)(Code)



HttpReplyMessage
public HttpReplyMessage()(Code)




Method Detail
addAuthenticationInfo
public void addAuthenticationInfo(String name, String value)(Code)
Add the given parameter/value pair to the Authentication Info header
Parameters:
  String - the name of the value
Parameters:
  String - the value



addWarning
public void addWarning(HttpWarning warning)(Code)
Add a warning to this reply message.
Parameters:
  warning - The warning to add.



checkMustRevalidate
public boolean checkMustRevalidate()(Code)
Check the must-revalidate directive of the cache control header. A boolean true if set, falseotherwise.



checkProxyRevalidate
public boolean checkProxyRevalidate()(Code)
Check the proxy-revalidate directive of the cache control header. A boolean true if set, falseotherwise.



checkPublic
public boolean checkPublic()(Code)
Check the public directive of the cache control header. A boolean true if set, falseotherwise.



dump
public void dump(OutputStream out)(Code)



getAcceptRanges
public String[] getAcceptRanges()(Code)
Get the list of accepted ranges. The list of units in which range requests are accepted, encodedas an array of String, or null if undefined.



getAge
public int getAge()(Code)
Get the age of the attached entity. An integer giving the age as a number of seconds, or -1 if undefined.



getAuthenticationInfo
public HttpParamList getAuthenticationInfo()(Code)
Get the Authentication Info (see digest auth) attached to this reply. An instance of HttpParamList, or null ifundefined.



getLocation
public String getLocation()(Code)
Get the location of the reply. The location header field keeps track of where to relocate clients if needed. The location encoded as a String.



getPrivate
public String[] getPrivate()(Code)
Get the private directive of the cache control header. A list of fields (potentially empty) encoded as an array ofString (with 0 length if empty), or null ifundefined.



getProxyAuthenticate
public HttpChallenge getProxyAuthenticate()(Code)
Get the proxy authentication challenge from this reply. An instance of HttpChallenge, or null if undefined.



getPublic
public String[] getPublic()(Code)
Get the list of publicly allowed methods on queried resource. The list of methods, encoded as a String array, or null if undefined.



getReason
public String getReason()(Code)
Get the reason phrase for this reply. A String encoded reason phrase.



getServer
public String getServer()(Code)
Get the description of the server that generated this reply. A String giving the description, or nullif undefined.



getStandardReason
public String getStandardReason(int status)(Code)
Get the standard HTTP reason phrase for the given status code.
Parameters:
  status - The given status code. A String giving the standard reason phrase, ornull if the status doesn't match any knowned error.



getStatus
public int getStatus()(Code)
Get this reply status code. An integer, giving the reply status code.



getVary
public String[] getVary()(Code)
Get the vary header value. A list of field-names on which the negotiated resource vary,or a list containing only * (if varies on all headers),or null if undefined.



getWWWAuthenticate
public HttpChallenge getWWWAuthenticate()(Code)
Get the challenge attached to this reply. An instance of HttpChallenge, or null ifundefined.



getWarning
public HttpWarning[] getWarning()(Code)
Get the list of warnings attached to this reply. An array of HttpWarning, or null ifundefined.



notifyBeginParsing
public boolean notifyBeginParsing(MimeParser parser) throws HttpParserException, IOException(Code)
MimeHeaderHolder implementation - Begining of reply parsing. If we can determine that this reply version number is less then 1.0, then we skip the header parsing by returning true to the MIME parser.

Otherwise, we parse the status line, and return false to make the MIME parser continue. A boolean true if the MIME parser should stopparsing, false otherwise.
exception:
  IOException - If some IO error occured while reading the stream.
exception:
  HttpParserException - if parsing failed.




setAcceptRanges
public void setAcceptRanges(String units)(Code)
Set the list of units in which range requests are accepted.
Parameters:
  units - The list of units, encoded as a String array, ornull to reset the value.



setAge
public void setAge(int age)(Code)
Set the age of the attached entity.
Parameters:
  age - The age of the attached entity as a number of seconds,or null to reset the value.



setAuthenticationInfo
public void setAuthenticationInfo(HttpParamList plist)(Code)
Attach Authentication Info to this reply. plist, the parameter list to be attached to the reply, ornull to reset the value.



setLocation
public void setLocation(URL location)(Code)
Set the location value of the reply.
Parameters:
  location - The location an URL instance, or nullto reset the value.



setLocation
public void setLocation(String location)(Code)
Set the location value of the reply.
Parameters:
  location - The location a String, or null to reset the value.



setMustRevalidate
public void setMustRevalidate(boolean onoff)(Code)
Set the must-revalidate cache control directive.
Parameters:
  onoff - Set it on or off.



setProxyAuthenticate
public void setProxyAuthenticate(HttpChallenge challenge)(Code)
Set thye proxy authentication challenge on this reply.
Parameters:
  challenge - The challenge to set, or nullto reset the value.



setProxyRevalidate
public void setProxyRevalidate(boolean onoff)(Code)
Set the proxy-revalidate cache control directive.
Parameters:
  onoff - Set it on or off.



setPublic
public void setPublic(boolean onoff)(Code)
Set the public cache control directive.
Parameters:
  onoff - Set it on or off.



setPublic
public void setPublic(String mth)(Code)
Set the list of allowed method on queried resource.
Parameters:
  mth - The list of public methods, encoded as a String array, ornull to reset the value.



setReason
public void setReason(String reason)(Code)
Set the reason phrase of this reply.
Parameters:
  reason - The reason phrase for this reply.



setRetryAfter
public void setRetryAfter(int delay)(Code)
set the retry after as a delay
Parameters:
  an - integer representing the delay, in seconds



setRetryAfter
public void setRetryAfter(long date)(Code)
set the retry after as a date long the date as a long



setServer
public void setServer(String server)(Code)
Set the description of the server.
Parameters:
  server - The String decribing the server, or nullto reset the value.



setStatus
public void setStatus(int status)(Code)
Set this reply status code. This will also set the reply reason, to the default HTTP/1.1 reason phrase.
Parameters:
  status - The status code for this reply.



setVary
public void setVary(String varies)(Code)
Set the vary header value.
Parameters:
  varies - The list of headers on which this resource varies, ornull to reset the value.



setWWWAuthenticate
public void setWWWAuthenticate(HttpChallenge challenge)(Code)
Attach a challenge to this reply.
Parameters:
  challenge - The challenge to be attached to the reply, ornull to reset the value.



setWarning
public void setWarning(HttpWarning warnings)(Code)
Set the warning list attached to this reply.
Parameters:
  warnings - An array of warnings to attach to the given reply,or null to reset the value.



startEmit
protected void startEmit(OutputStream out, int what) throws IOException(Code)
Emit the status line before emiting the actual reply headers.
Parameters:
  out - The output stream to emit the reply to.



Fields inherited from org.w3c.www.http.HttpEntityMessage
public static int H_ALLOW(Code)(Java Doc)
public static int H_CONTENT_BASE(Code)(Java Doc)
public static int H_CONTENT_ENCODING(Code)(Java Doc)
public static int H_CONTENT_LANGUAGE(Code)(Java Doc)
public static int H_CONTENT_LENGTH(Code)(Java Doc)
public static int H_CONTENT_LOCATION(Code)(Java Doc)
public static int H_CONTENT_MD5(Code)(Java Doc)
public static int H_CONTENT_RANGE(Code)(Java Doc)
public static int H_CONTENT_TYPE(Code)(Java Doc)
public static int H_ETAG(Code)(Java Doc)
public static int H_EXPIRES(Code)(Java Doc)
public static int H_LAST_MODIFIED(Code)(Java Doc)

Methods inherited from org.w3c.www.http.HttpEntityMessage
public void addContentEncoding(String name)(Code)(Java Doc)
public String[] getAllow()(Code)(Java Doc)
public String getContentBase()(Code)(Java Doc)
public String[] getContentEncoding()(Code)(Java Doc)
public String[] getContentLanguage()(Code)(Java Doc)
public int getContentLength()(Code)(Java Doc)
public String getContentLocation()(Code)(Java Doc)
public String getContentMD5()(Code)(Java Doc)
public HttpContentRange getContentRange()(Code)(Java Doc)
public MimeType getContentType()(Code)(Java Doc)
public HttpEntityTag getETag()(Code)(Java Doc)
public long getExpires()(Code)(Java Doc)
public long getLastModified()(Code)(Java Doc)
public boolean hasContentRange()(Code)(Java Doc)
public void setAllow(String mth)(Code)(Java Doc)
public void setContentBase(String base)(Code)(Java Doc)
public void setContentEncoding(String encodings)(Code)(Java Doc)
public void setContentLanguage(String languages)(Code)(Java Doc)
public void setContentLength(int length)(Code)(Java Doc)
public void setContentLocation(String location)(Code)(Java Doc)
public void setContentMD5(String md5)(Code)(Java Doc)
public void setContentType(MimeType type)(Code)(Java Doc)
public void setETag(HttpEntityTag tag)(Code)(Java Doc)
public void setExpires(long date)(Code)(Java Doc)
public void setLastModified(long date)(Code)(Java Doc)

Fields inherited from org.w3c.www.http.HttpMessage
final public static int EMIT_ALL(Code)(Java Doc)
final public static int EMIT_BODY(Code)(Java Doc)
final public static int EMIT_FOOTERS(Code)(Java Doc)
final public static int EMIT_HEADERS(Code)(Java Doc)
public static int H_CACHE_CONTROL(Code)(Java Doc)
public static int H_CMAN_EXT(Code)(Java Doc)
public static int H_CONNECTION(Code)(Java Doc)
public static int H_COOKIE(Code)(Java Doc)
public static int H_COPT_EXT(Code)(Java Doc)
public static int H_DATE(Code)(Java Doc)
public static int H_MAN_EXT(Code)(Java Doc)
public static int H_OPT_EXT(Code)(Java Doc)
public static int H_PRAGMA(Code)(Java Doc)
public static int H_PROTOCOL(Code)(Java Doc)
public static int H_PROTOCOL_INFO(Code)(Java Doc)
public static int H_PROTOCOL_QUERY(Code)(Java Doc)
public static int H_PROTOCOL_REQUEST(Code)(Java Doc)
public static int H_PROXY_CONNECTION(Code)(Java Doc)
public static int H_SET_COOKIE(Code)(Java Doc)
public static int H_TRAILER(Code)(Java Doc)
public static int H_TRANSFER_ENCODING(Code)(Java Doc)
public static int H_UPGRADE(Code)(Java Doc)
public static int H_VIA(Code)(Java Doc)
public static int MAX_HEADERS(Code)(Java Doc)
protected static HeaderDescription descriptors(Code)(Java Doc)
protected long emitdate(Code)(Java Doc)
protected static Hashtable factory(Code)(Java Doc)
protected Dictionary headers(Code)(Java Doc)
protected short major(Code)(Java Doc)
protected short minor(Code)(Java Doc)
protected ArrayDictionary state(Code)(Java Doc)
protected HeaderValue values(Code)(Java Doc)

Methods inherited from org.w3c.www.http.HttpMessage
public void addConnection(String name)(Code)(Java Doc)
public void addNoCache(String name)(Code)(Java Doc)
public void addPragma(String name)(Code)(Java Doc)
public void addProxyConnection(String name)(Code)(Java Doc)
public void addTransferEncoding(String name)(Code)(Java Doc)
public void addVia(String via)(Code)(Java Doc)
public boolean checkNoStore()(Code)(Java Doc)
public boolean checkOnlyIfCached()(Code)(Java Doc)
public void delState(String name)(Code)(Java Doc)
public void dump(OutputStream out)(Code)(Java Doc)
public void emit(OutputStream out) throws IOException(Code)(Java Doc)
public void emit(OutputStream out, int what) throws IOException(Code)(Java Doc)
protected void emitHeaders(OutputStream out, int what) throws IOException(Code)(Java Doc)
protected void endEmit(OutputStream out, int what) throws IOException(Code)(Java Doc)
public Enumeration enumerateHeaderDescriptions(boolean all)(Code)(Java Doc)
public Enumeration enumerateHeaderDescriptions()(Code)(Java Doc)
protected synchronized String generateExtNamespace()(Code)(Java Doc)
public String getCManExtHeader(String ext, String header)(Code)(Java Doc)
public String getCOptExtHeader(String ext, String header)(Code)(Java Doc)
public HttpCacheControl getCacheControl()(Code)(Java Doc)
public HttpMessage getClone()(Code)(Java Doc)
public String[] getConnection()(Code)(Java Doc)
public HttpCookieList getCookie()(Code)(Java Doc)
public long getDate()(Code)(Java Doc)
public HttpMessage getDeeperClone()(Code)(Java Doc)
public long getEmitDate()(Code)(Java Doc)
public String getExtHeader(String ext, String header)(Code)(Java Doc)
public HttpExtList getExtList(String id)(Code)(Java Doc)
public Dictionary getExtensionHeaders(HttpExt ext)(Code)(Java Doc)
public HeaderValue getHeaderValue(String name, HeaderValue def)(Code)(Java Doc)
final public HeaderValue getHeaderValue(String name)(Code)(Java Doc)
final public HeaderValue getHeaderValue(int idx)(Code)(Java Doc)
public HeaderValue getHeaderValue(HeaderDescription d)(Code)(Java Doc)
public HttpExtList getHttpCManExtDecl()(Code)(Java Doc)
public HttpExtList getHttpCOptExtDecl()(Code)(Java Doc)
public HttpExtList getHttpManExtDecl()(Code)(Java Doc)
public HttpExtList getHttpOptExtDecl()(Code)(Java Doc)
public short getMajorVersion()(Code)(Java Doc)
public String getManExtHeader(String ext, String header)(Code)(Java Doc)
public int getMaxAge()(Code)(Java Doc)
public short getMinorVersion()(Code)(Java Doc)
public String[] getNoCache()(Code)(Java Doc)
public String getOptExtHeader(String ext, String header)(Code)(Java Doc)
public String[] getPragma()(Code)(Java Doc)
public HttpBag getProtocol()(Code)(Java Doc)
public HttpBag getProtocolInfo()(Code)(Java Doc)
public HttpBag getProtocolQuery()(Code)(Java Doc)
public HttpBag getProtocolRequest()(Code)(Java Doc)
public String[] getProxyConnection()(Code)(Java Doc)
public int getSMaxAge()(Code)(Java Doc)
public HttpSetCookieList getSetCookie()(Code)(Java Doc)
public Object getState(String name)(Code)(Java Doc)
public Enumeration getStateNames()(Code)(Java Doc)
public String[] getTrailer()(Code)(Java Doc)
public String[] getTransferEncoding()(Code)(Java Doc)
public String[] getUpgrade()(Code)(Java Doc)
public String getValue(String name)(Code)(Java Doc)
public String getValue(HeaderDescription d)(Code)(Java Doc)
public String getVersion()(Code)(Java Doc)
public String[] getVia()(Code)(Java Doc)
public boolean hasConnection(String tok)(Code)(Java Doc)
public boolean hasHeader(String name)(Code)(Java Doc)
public boolean hasHeader(int idx)(Code)(Java Doc)
public boolean hasPragma(String pragma)(Code)(Java Doc)
public boolean hasProxyConnection(String tok)(Code)(Java Doc)
public boolean hasState(String name)(Code)(Java Doc)
public boolean hasTransferEncoding(String encoding)(Code)(Java Doc)
public boolean notifyBeginParsing(MimeParser parser) throws HttpParserException, IOException(Code)(Java Doc)
public void notifyEndParsing(MimeParser parser) throws HttpParserException, IOException(Code)(Java Doc)
public void notifyHeader(String name, byte buf, int off, int len)(Code)(Java Doc)
final public static void registerExtHeader(String name, String cls)(Code)(Java Doc)
final protected static void registerHeader(String name, String cls)(Code)(Java Doc)
final protected static void registerHeader(String name, String c, int i)(Code)(Java Doc)
public void removeHeader(String name)(Code)(Java Doc)
final public void removeHeader(int idx)(Code)(Java Doc)
public void setCacheControl(HttpCacheControl control)(Code)(Java Doc)
public void setConnection(String tokens)(Code)(Java Doc)
public void setCookie(HttpCookieList cookie)(Code)(Java Doc)
public void setDate(long date)(Code)(Java Doc)
public void setEnd2EndExtensionAcknowledgmentHeader()(Code)(Java Doc)
public synchronized void setExtensionHeader(HttpExt ext, String name, String value)(Code)(Java Doc)
public void setHeaderValue(String name, HeaderValue value)(Code)(Java Doc)
public void setHeaderValue(HeaderDescription d, HeaderValue v)(Code)(Java Doc)
final public void setHeaderValue(int idx, HeaderValue value)(Code)(Java Doc)
public void setHopByHopExtensionAcknowledgmentHeader()(Code)(Java Doc)
public void setHttpCManExtDecl(HttpExtList exts)(Code)(Java Doc)
public void setHttpCOptExtDecl(HttpExtList exts)(Code)(Java Doc)
public void setHttpExtDecl(HttpExtList exts)(Code)(Java Doc)
public void setHttpManExtDecl(HttpExtList exts)(Code)(Java Doc)
public void setHttpOptExtDecl(HttpExtList exts)(Code)(Java Doc)
public void setMaxAge(int maxage)(Code)(Java Doc)
protected void setNamespaces(HttpExtList extl)(Code)(Java Doc)
public void setNoCache(String nocache)(Code)(Java Doc)
public void setNoCache()(Code)(Java Doc)
public void setNoStore(boolean onoff)(Code)(Java Doc)
public void setOnlyIfCached(boolean onoff)(Code)(Java Doc)
public void setPragma(String tokens)(Code)(Java Doc)
public void setProtocol(HttpBag bag)(Code)(Java Doc)
public void setProtocolInfo(HttpBag bag)(Code)(Java Doc)
public void setProtocolQuery(HttpBag bag)(Code)(Java Doc)
public void setProtocolRequest(HttpBag bag)(Code)(Java Doc)
public void setProxyConnection(String tokens)(Code)(Java Doc)
public void setSMaxAge(int smaxage)(Code)(Java Doc)
public void setSetCookie(HttpSetCookieList setcookie)(Code)(Java Doc)
public void setState(String name, Object value)(Code)(Java Doc)
public void setTrailer(String trailers)(Code)(Java Doc)
public void setTransferEncoding(String tokens)(Code)(Java Doc)
public void setUpgrade(String products)(Code)(Java Doc)
public void setValue(String name, String strval)(Code)(Java Doc)
public void setVia(String vias)(Code)(Java Doc)
protected void startEmit(OutputStream out, int what) throws IOException(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.