Java Doc for Request.java in  » Net » SkunkDAV » HTTPClient » 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 » Net » SkunkDAV » HTTPClient 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   HTTPClient.Request

Request
final public class Request implements RoRequest(Code)
This class represents an http request. It's used by classes which implement the HTTPClientModule interface.
version:
   0.3-2E 16/06/2000
author:
   Ronald Tschalär


Field Summary
 booleanaborted
    
 longdelay_entity
    
 booleandont_pipeline
    
 booleaninternal_subrequest
    
 intnum_retries
    

Constructor Summary
public  Request(HTTPConnection con, String method, String req_uri, NVPair[] headers, byte[] data, HttpOutputStream stream, boolean allow_ui)
     Creates a new request structure.

Method Summary
public  booleanallowUI()
    
public  HTTPConnectiongetConnection()
    
public  byte[]getData()
    
public  NVPair[]getHeaders()
    
public  StringgetMethod()
    
public  StringgetRequestURI()
    
public  HttpOutputStreamgetStream()
    
public  voidsetAllowUI(boolean allow_ui)
    
public  voidsetConnection(HTTPConnection con)
    
public  voidsetData(byte[] data)
    
public  voidsetHeaders(NVPair[] headers)
    
public  voidsetMethod(String method)
    
Parameters:
  method - the request method (e.g.
public  voidsetRequestURI(String req_uri)
    
public  voidsetStream(HttpOutputStream stream)
    
public  StringtoString()
    

Field Detail
aborted
boolean aborted(Code)
was this request aborted by the user?



delay_entity
long delay_entity(Code)
number of millisecs to wait for an error from the server before sending the entity (used when retrying requests)



dont_pipeline
boolean dont_pipeline(Code)
disable pipelining of following request



internal_subrequest
boolean internal_subrequest(Code)
is this an internally generated subrequest?



num_retries
int num_retries(Code)
number of retries so far




Constructor Detail
Request
public Request(HTTPConnection con, String method, String req_uri, NVPair[] headers, byte[] data, HttpOutputStream stream, boolean allow_ui)(Code)
Creates a new request structure.
Parameters:
  con - the current HTTPConnection
Parameters:
  method - the request method
Parameters:
  req_uri - the request-uri
Parameters:
  headers - the request headers
Parameters:
  data - the entity as a byte[]
Parameters:
  stream - the entity as a stream
Parameters:
  allow_ui - allow user interaction




Method Detail
allowUI
public boolean allowUI()(Code)
true if the modules or handlers for this request may popupwindows or otherwise interact with the user



getConnection
public HTTPConnection getConnection()(Code)
the HTTPConnection this request is associated with



getData
public byte[] getData()(Code)
the body of this request



getHeaders
public NVPair[] getHeaders()(Code)
the headers making up this request



getMethod
public String getMethod()(Code)
the request method



getRequestURI
public String getRequestURI()(Code)
the request-uri



getStream
public HttpOutputStream getStream()(Code)
the output stream on which the body is written



setAllowUI
public void setAllowUI(boolean allow_ui)(Code)

Parameters:
  allow_ui - are modules and handlers allowed to popup windows orotherwise interact with the user?



setConnection
public void setConnection(HTTPConnection con)(Code)

Parameters:
  con - the HTTPConnection this request is associated with



setData
public void setData(byte[] data)(Code)

Parameters:
  data - the entity for this request



setHeaders
public void setHeaders(NVPair[] headers)(Code)

Parameters:
  headers - the headers for this request



setMethod
public void setMethod(String method)(Code)

Parameters:
  method - the request method (e.g. GET, POST, etc)



setRequestURI
public void setRequestURI(String req_uri)(Code)

Parameters:
  req_uri - the request-uri



setStream
public void setStream(HttpOutputStream stream)(Code)

Parameters:
  stream - an output stream on which the entity is written



toString
public String toString()(Code)
a string containing the method and request-uri



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.