org.asyncflows.protocol.http.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asyncflows-protocol-http Show documentation
Show all versions of asyncflows-protocol-http Show documentation
This component contains implementation of HTTP 1.1 protocol.
/*
* Copyright (c) 2018 Konstantin Plotnikov
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* The utility classes for handling HTTP protocol. The classes provider a quite low level access to
* the HTTP protocol. However, the higher level functionality could be implemented over it and some
* utilities actually do this.
* Applicable standards:
*
* - RFC 7230: Hypertext Transfer Protocol (HTTP/1.1):
* Message Syntax and Routing
* - RFC 7231: Hypertext Transfer Protocol (HTTP/1.1):
* Semantics and Content
* - RFC 7232: Hypertext Transfer Protocol (HTTP/1.1):
* Conditional Requests
* - RFC 7233: Hypertext Transfer Protocol (HTTP/1.1):
* Range Requests
* - RFC 7234: Hypertext Transfer Protocol (HTTP/1.1):
* Caching
* - RFC 7235: Hypertext Transfer Protocol (HTTP/1.1):
* Authentication
* - RFC 1945: Hypertext Transfer Protocol -- HTTP/1.0
* (obsolete)
* - RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1
* (obsolete)
* - RFC 6585: Additional HTTP Status Codes
* - RFC 2818: HTTP Over TLS (not-implemented)
* - RFC 2817: Upgrading to TLS Within HTTP/1.1
* (not-implemented)
* - RFC 2145: Use and Interpretation of HTTP Version
* Numbers
* - RFC 6454: The Web Origin Concept
* - RFC 5322: Internet Message Format
* (redefined in RFC7230 for http 1.1)
* - RFC 2047: MIME (Multipurpose Internet Mail Extensions) Part
* Three: Message Header Extensions for Non-ASCII Text
* - RFC 2231: MIME Parameter Value and Encoded Word Extensions:
* Character Sets, Languages, and Continuations
*
* Related Draft Standards:
*
*/
package org.asyncflows.protocol.http;