You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2017/09/27 20:49:21 UTC

httpcomponents-core git commit: Make responseFactory available to subclasses.

Repository: httpcomponents-core
Updated Branches:
  refs/heads/4.4.x 64eed7333 -> e6653e15f


Make responseFactory available to subclasses.

Project: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/commit/e6653e15
Tree: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/tree/e6653e15
Diff: http://git-wip-us.apache.org/repos/asf/httpcomponents-core/diff/e6653e15

Branch: refs/heads/4.4.x
Commit: e6653e15f2379e557fdc7659ec4419171b62e5c9
Parents: 64eed73
Author: Gary Gregory <gg...@apache.org>
Authored: Wed Sep 27 14:48:43 2017 -0600
Committer: Gary Gregory <gg...@apache.org>
Committed: Wed Sep 27 14:48:43 2017 -0600

----------------------------------------------------------------------
 .../main/java/org/apache/http/nio/protocol/HttpAsyncService.java | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/httpcomponents-core/blob/e6653e15/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncService.java
----------------------------------------------------------------------
diff --git a/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncService.java b/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncService.java
index c9a461d..af3db81 100644
--- a/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncService.java
+++ b/httpcore-nio/src/main/java/org/apache/http/nio/protocol/HttpAsyncService.java
@@ -1087,4 +1087,8 @@ public class HttpAsyncService implements NHttpServerEventHandler {
 
     }
 
+    protected HttpResponseFactory getResponseFactory() {
+      return responseFactory;
+    }
+
 }