simple.http

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 » simple » simple.http 
simple.http
Java Source File NameTypeComment
Attributes.javaInterface This is an Attributes object which is used to convey attributes for a given connection.
Authenticator.javaClass This is used to provide quick access to principals that have authorized themselves using the RFC 2616 Authorization header. This caches the issued Principal instances so that the same authorization credentials will not need to be parsed twice.
BasicPoller.javaClass The BasicPoller object provides an implementation of the Poller.process method which uses a quick Boyer Moore token search scheme.
BufferedOutputStream.javaClass The BufferedOutputStream object is used to wrap the default socket output stream in such a way that buffering can be done.
BufferedPipeline.javaClass The BufferedPipeline is used to provide a pipeline that buffers the ouput.
BufferedPipelineFactory.javaClass The BufferedPipelineFacotry object is used to buffer the output for network performance.
BufferPoller.javaClass The BufferPoller provides convenience methods to the Poller for buffering the bytes read.
ChunkedInputStream.javaClass The ChunkedInputStream is reads an decodes a stream using the chunked transfer coding.
ChunkedOutputStream.javaClass The ChunkedOutputStream is used to write data in the chunked transfer encoding to an underlying OutputStream. This is a MonitoredOutputStream and so notifies an OutputMonitor of any events regarding the writing of the data.
CloseOutputStream.javaClass The CloseOutputStream provides an implementation of the MonitoredOutputStream that writes directly to the underlying stream.
DefaultPoller.javaClass The DefaultPoller object is implemented to wait between failed polls using an exponentially increasing wait duration.
Dispatcher.javaClass This is a Dispatcher object that is used to execute an HTTP transaction.
FilterPipeline.javaClass This is a FilterPipeline object that is used to wrap the Pipeline it is given.
FilterRequest.javaClass The FilterRequest object is used so that the original Request object can be wrapped in a filtering proxy object.
FilterResponse.javaClass The FilterResponse object is used so that the original Response object can be wrapped in a filtering proxy object.
FixedInputStream.javaClass The FixedInputStream class is used to read a specified number of bytes from a given InputStream.
FixedOutputStream.javaClass The FixedOutputStream is used to write a specified number of bytes to a given OutputStream.
GenericHeader.javaInterface This is a GenericHeader object that can be used to represent the headers that can be found in a HTTP message header.
GranularPoller.javaClass The GranularPoller object is implemented to wait between failed polls using a gradually increasing wait time. This polling strategy ensures that the server can respond to pipelines quickly when they become active after a peroid of inactivity.
Header.javaInterface This is a header object that can be used to represent a HTTP header.
HeaderList.javaClass This is used to provide a quick store for Header objects.
HeaderParser.javaClass This is a HeaderParser object that is used to parse a ByteStore object containing a HTTP header ended by a CRLF CRLF sequence.
InputMonitor.javaInterface It is important to note that once one of these methods is invoked by an InputStream or an object that is monitoring an InputStream then the InputStream must not be used from that point on, that is, no more reading.
Monitor.javaClass This is a Monitor object that is used to reprocess a Poller.
MonitoredInputStream.javaClass The MonitoredInputStream class is used to perform monitoring of data read from an underlying stream.
MonitoredOutputStream.javaClass The MonitoredOutputStream class is used to perform monitoring of data written to an underlying stream.
MonitoredRequest.javaClass This is a MonitoredRequest object that is used by a ProtocolHandler to manage HTTP requests.
MonitoredResponse.javaClass This is a MonitoredResponse object that is used to encapsulate a HTTP response.
NullInputStream.javaClass The purpose of the NullInputStream is to provide an empty implementation of an InputStream object.
NullOutputStream.javaClass The purpose of this OutputStream is to provide an OutputStream that does nothing.
OutputMonitor.javaInterface It is important to note that once one of these methods are invoked by an OutputStream or an object monitoring an OutputStream then the OutputStream must not be used from that point on, that is, no more writing.
ParameterList.javaClass The ParameterParser is used to parse several text strings as a complete URL encoded parameter string.
Pipeline.javaClass This is a Pipeline object that is used to represent a HTTP Pipeline.
PipelineFactory.javaInterface The PipelineFactory enables any object that is using a PipelineHandler to produce the object desired for processing with a Socket.
PipelineHandler.javaInterface The PipelineHandler interface is used to represent an object that handles Pipeline objects in sequence with a ProtocolHandler.
PipelineHandlerFactory.javaClass The PipelineHandlerFactory is used to hide a specific implementation of the PipelineHandler used.
PipelineProcessor.javaClass This is a PipelineProcessor object that is used to process Pipeline objects and make asynchronous callbacks to the given ProtocolHandler object.
PlainAttributes.javaClass This is an Attributes object which is used to convey attributes for a given connection.
PlainHeader.javaClass This is a Header that can be used to represent a HTTP header.
PlainState.javaClass The PlainState is a default implementation of the State interface used by the Request to examine the cookies that have been issued with the HTTP request. The purpose of this interface is to provide implementations of the ProtocolHandler with a simple HTTP state control mechanism.
Poller.javaClass This is used to poll a pipeline for a HTTP request header.
PollerFactory.javaClass The PollerFactory retrieves the Poller implementation for the system.
PollerHandler.javaInterface This is a PollerHandler interface that is used to process Poller objects.
PollerInputStream.javaClass The PollerInputStream object is used to poll a HTTP pipeline for message headers.
Processor.javaClass The Processor is used to execute Poller objects on the Scheduler queue.
ProtocolHandler.javaInterface This is a ProtocolHandler that is used to process HTTP Request and Response objects.
Request.javaInterface This interface is used to represent a HTTP request.
RequestHeader.javaClass This is a RequestHeader object that can be used to manipulate data about a HTTP request header.
RequestLine.javaInterface The RequestLine is used to represent a HTTP request line.
RequestParser.javaClass This is a RequestParser class that can be used to parse a HTTP request line.
Response.javaInterface This is used to represent the HTTP response.
ResponseChannel.javaInterface The ResponseChannel is used to provide an interface for the configuration of the HTTP connection semantics.
ResponseHeader.javaClass This is a ResponseHeader object that is used to store and retrive message header information about a given response.
ResponseStream.javaClass The ResponseStream is used to enable bytes written to the response's OutputStream to be buffered.
State.javaInterface The State is used by the Request to examine the cookies that have been issued with the HTTP request. The purpose of this interface is to provide implementations of the ProtocolHandler with a simple HTTP state control mechanism.
StateCookie.javaClass The StateCookie is used to provide a means for a callback to be made to the source State when a property has changed in the cookie.
StatusLine.javaInterface The StatusLine is used to represent a HTTP status line.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.