Java Doc for HttpEntityMessage.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

All known Subclasses:   org.w3c.www.http.HttpReplyMessage,  org.w3c.www.http.HttpRequestMessage,
HttpEntityMessage
public class HttpEntityMessage extends HttpMessage (Code)


Field Summary
public static  intH_ALLOW
    
public static  intH_CONTENT_BASE
    
public static  intH_CONTENT_ENCODING
    
public static  intH_CONTENT_LANGUAGE
    
public static  intH_CONTENT_LENGTH
    
public static  intH_CONTENT_LOCATION
    
public static  intH_CONTENT_MD5
    
public static  intH_CONTENT_RANGE
    
public static  intH_CONTENT_TYPE
    
public static  intH_ETAG
    
public static  intH_EXPIRES
    
public static  intH_LAST_MODIFIED
    

Constructor Summary
public  HttpEntityMessage(MimeParser parser)
    
public  HttpEntityMessage()
    

Method Summary
public  voidaddContentEncoding(String name)
     Add an encoding token to the given reply stream (ie the body).
public  String[]getAllow()
     Get the message's entity allowed methods.
public  StringgetContentBase()
     Get this message entity base.
public  String[]getContentEncoding()
     Get this message entity encoding.
public  String[]getContentLanguage()
     Get this message entity content language.
public  intgetContentLength()
     Get the content length of the message.
public  StringgetContentLocation()
     Get the attached entity's content location.
public  StringgetContentMD5()
     Get the entity's content MD5 checksum.
public  HttpContentRangegetContentRange()
     Get the range descriptor of the attached entity.
public  MimeTypegetContentType()
     Get the entity MIME type.
public  HttpEntityTaggetETag()
     Get this entity tag.
public  longgetExpires()
     Get this message's entity expires date.
public  longgetLastModified()
     Get the message's associated entity last modified time.
public  booleanhasContentRange()
    
public  voidsetAllow(String mth)
     Set this message's entity allowed methods.
public  voidsetContentBase(String base)
     Set this message entity content base.
public  voidsetContentEncoding(String encodings)
     Set this message entity content encoding.
public  voidsetContentLanguage(String languages)
     Set this message entity content language.
public  voidsetContentLength(int length)
     Set this message entity content-length.
public  voidsetContentLocation(String location)
     Set the entity's content location.
public  voidsetContentMD5(String md5)
     Set the entity's content MD5 checksum.
public  voidsetContentType(MimeType type)
     Set the entity MIME type.
public  voidsetETag(HttpEntityTag tag)
     Set this entity tag.
public  voidsetExpires(long date)
     Se the message's associated entity exxpires date.
public  voidsetLastModified(long date)
     Set the message's entity header last-modified time.

Field Detail
H_ALLOW
public static int H_ALLOW(Code)



H_CONTENT_BASE
public static int H_CONTENT_BASE(Code)



H_CONTENT_ENCODING
public static int H_CONTENT_ENCODING(Code)



H_CONTENT_LANGUAGE
public static int H_CONTENT_LANGUAGE(Code)



H_CONTENT_LENGTH
public static int H_CONTENT_LENGTH(Code)



H_CONTENT_LOCATION
public static int H_CONTENT_LOCATION(Code)



H_CONTENT_MD5
public static int H_CONTENT_MD5(Code)



H_CONTENT_RANGE
public static int H_CONTENT_RANGE(Code)



H_CONTENT_TYPE
public static int H_CONTENT_TYPE(Code)



H_ETAG
public static int H_ETAG(Code)



H_EXPIRES
public static int H_EXPIRES(Code)



H_LAST_MODIFIED
public static int H_LAST_MODIFIED(Code)




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



HttpEntityMessage
public HttpEntityMessage()(Code)




Method Detail
addContentEncoding
public void addContentEncoding(String name)(Code)
Add an encoding token to the given reply stream (ie the body).
Parameters:
  name - The name of the encoding to add.



getAllow
public String[] getAllow()(Code)
Get the message's entity allowed methods. The list of allowed methods, encoded as a String array, ornull if undefined.



getContentBase
public String getContentBase()(Code)
Get this message entity base. A String encoding the content base, or nullif undefined.



getContentEncoding
public String[] getContentEncoding()(Code)
Get this message entity encoding. A list of encoding tokens, encoded as a String array, or null if undefined.



getContentLanguage
public String[] getContentLanguage()(Code)
Get this message entity content language. A list of languages token, encoded as a String arry, ornull if undefined.



getContentLength
public int getContentLength()(Code)
Get the content length of the message. The content length for the message entity, or -1 if undefined.



getContentLocation
public String getContentLocation()(Code)
Get the attached entity's content location. A String encoded value of the content location, or null if undefined.



getContentMD5
public String getContentMD5()(Code)
Get the entity's content MD5 checksum. A String giving the base64 encoded MD% checksun on theentity body, or null if undefined.



getContentRange
public HttpContentRange getContentRange()(Code)
Get the range descriptor of the attached entity. An HttpRange instance, describing the part of the fullentity body being transmited, or null if undefined.



getContentType
public MimeType getContentType()(Code)
Get the entity MIME type. An HttpMimeType object describing the entity's type, or null if udefined.



getETag
public HttpEntityTag getETag()(Code)
Get this entity tag. An HttpEntityTag instance describing this entity tag.



getExpires
public long getExpires()(Code)
Get this message's entity expires date. A long giving the date as the number of milliseconds since theJava epoch, or -1 if undefined.



getLastModified
public long getLastModified()(Code)
Get the message's associated entity last modified time. A long giving the date as the number of milliseconds sinceJava epoch, or -1 if undefined.



hasContentRange
public boolean hasContentRange()(Code)
Is this entity only a partial entity ? A boolean, indicating if a Content-Range headerwas present.



setAllow
public void setAllow(String mth)(Code)
Set this message's entity allowed methods.
Parameters:
  mth - A list of allowed methods, encoded as a String array, ornull to reset the value.



setContentBase
public void setContentBase(String base)(Code)
Set this message entity content base.
Parameters:
  base - The base for the entity, encoded as a String, ornull to reset the value.



setContentEncoding
public void setContentEncoding(String encodings)(Code)
Set this message entity content encoding.
Parameters:
  encodings - A list of encoding tokens, encoded as a String arrayor null to reset the value.



setContentLanguage
public void setContentLanguage(String languages)(Code)
Set this message entity content language.
Parameters:
  languages - The language tokens for this entity, encoded asa String array, or null to reset the value.



setContentLength
public void setContentLength(int length)(Code)
Set this message entity content-length.
Parameters:
  length - The new content length for this message, or-1 to reset the value.



setContentLocation
public void setContentLocation(String location)(Code)
Set the entity's content location.
Parameters:
  location - The String encoding the content location for the attached entity, or null to reset the value.



setContentMD5
public void setContentMD5(String md5)(Code)
Set the entity's content MD5 checksum.
Parameters:
  md5 - The new base64 encoded checksum for the entity body, ornull to reset the value.



setContentType
public void setContentType(MimeType type)(Code)
Set the entity MIME type.
Parameters:
  type - The entity MIME type, or null to unsetthe entity's content type.



setETag
public void setETag(HttpEntityTag tag)(Code)
Set this entity tag.
Parameters:
  tag - The new entity tag, or null to reset thevalue.



setExpires
public void setExpires(long date)(Code)
Se the message's associated entity exxpires date.
Parameters:
  date - The date as the number of milliseconds since Java epoch,or -1 to reset the value.



setLastModified
public void setLastModified(long date)(Code)
Set the message's entity header last-modified time.
Parameters:
  date - The date of last modification, as the number of millisecondssince Java epoch, or -1 to reset the value.



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.