Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5F1E8200D54 for ; Fri, 8 Dec 2017 23:12:18 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 5C3B6160C0D; Fri, 8 Dec 2017 22:12:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A34BB160BFD for ; Fri, 8 Dec 2017 23:12:17 +0100 (CET) Received: (qmail 5924 invoked by uid 500); 8 Dec 2017 22:12:16 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 5915 invoked by uid 99); 8 Dec 2017 22:12:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Dec 2017 22:12:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BD08DF616C; Fri, 8 Dec 2017 22:12:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ggregory@apache.org To: commits@hc.apache.org Message-Id: <217b413262a34e6fbf21fc3af17989cf@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: httpcomponents-core git commit: Javadoc fix for a dangling '/'. Date: Fri, 8 Dec 2017 22:12:16 +0000 (UTC) archived-at: Fri, 08 Dec 2017 22:12:18 -0000 Repository: httpcomponents-core Updated Branches: refs/heads/master d4fbef3cc -> fe2679e4a Javadoc fix for a dangling '/'. Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/fe2679e4 Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/fe2679e4 Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/fe2679e4 Branch: refs/heads/master Commit: fe2679e4a92aed529d6dbc1968377b00032cb70f Parents: d4fbef3 Author: Gary Gregory Authored: Fri Dec 8 15:12:13 2017 -0700 Committer: Gary Gregory Committed: Fri Dec 8 15:12:13 2017 -0700 ---------------------------------------------------------------------- .../java/org/apache/hc/core5/http/protocol/HttpContext.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/fe2679e4/httpcore5/src/main/java/org/apache/hc/core5/http/protocol/HttpContext.java ---------------------------------------------------------------------- diff --git a/httpcore5/src/main/java/org/apache/hc/core5/http/protocol/HttpContext.java b/httpcore5/src/main/java/org/apache/hc/core5/http/protocol/HttpContext.java index 072d0b6..c9e259f 100644 --- a/httpcore5/src/main/java/org/apache/hc/core5/http/protocol/HttpContext.java +++ b/httpcore5/src/main/java/org/apache/hc/core5/http/protocol/HttpContext.java @@ -32,16 +32,19 @@ import org.apache.hc.core5.http.ProtocolVersion; /** * HttpContext represents execution state of an HTTP process. It is a structure * that can be used to map an attribute name to an attribute value. + *

*

* The primary purpose of the HTTP context is to facilitate information sharing * among various logically related components. HTTP context can be used * to store a processing state for one message or several consecutive messages. * Multiple logically related messages can participate in a logical session * if the same context is reused between consecutive messages. - *

/ + *

+ *

* IMPORTANT: Please note HTTP context implementation, even when thread safe, * may not be used concurrently by multiple threads, as the context may contain * thread unsafe attributes. + *

* * @since 4.0 */