diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2018-11-19 16:00:30 -0800 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-11-26 03:07:58 -0500 |
commit | 3f745e40a131fee439119e2c93d750688a4e47e6 (patch) | |
tree | 50940d595c1c7d0f18030a2792ea03628fe7661c /org.eclipse.jgit.http.apache/META-INF | |
parent | f974c9c790dc383b425e9f0ef047251e79354bb7 (diff) | |
download | jgit-3f745e40a131fee439119e2c93d750688a4e47e6.tar.gz jgit-3f745e40a131fee439119e2c93d750688a4e47e6.zip |
Add a method to get all values of HTTP header defined as list
According to RFC 2616 [1] header field names are case insensitive.
Header fields defined as a comma separated list can have multiple header
fields with the same field name. Add a method to HttpConnection which
retrieves all values with a given header field name with the field name
compared case insensitive.
[1] https://tools.ietf.org/html/rfc2616#section-4.2"
Change-Id: I7f601b21cda99e84f43f866c7c7cb4cb0e3cf5c3
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.http.apache/META-INF')
-rw-r--r-- | org.eclipse.jgit.http.apache/META-INF/MANIFEST.MF | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.http.apache/META-INF/MANIFEST.MF b/org.eclipse.jgit.http.apache/META-INF/MANIFEST.MF index 1e8842bb7d..07778e8c52 100644 --- a/org.eclipse.jgit.http.apache/META-INF/MANIFEST.MF +++ b/org.eclipse.jgit.http.apache/META-INF/MANIFEST.MF @@ -23,6 +23,7 @@ Import-Package: org.apache.http;version="[4.3.0,5.0.0)", org.apache.http.impl.client;version="[4.3.0,5.0.0)", org.apache.http.impl.conn;version="[4.3.0,5.0.0)", org.apache.http.params;version="[4.3.0,5.0.0)", + org.eclipse.jgit.annotations;version="[5.2.0,5.3.0)", org.eclipse.jgit.nls;version="[5.2.0,5.3.0)", org.eclipse.jgit.transport.http;version="[5.2.0,5.3.0)", org.eclipse.jgit.util;version="[5.2.0,5.3.0)" |