Uses of Interface
org.eclipse.jgit.transport.http.HttpConnection
-
Packages that use HttpConnection Package Description org.eclipse.jgit.lfs org.eclipse.jgit.lfs.internal org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.transport.http org.eclipse.jgit.transport.http.apache org.eclipse.jgit.util Utility classes. -
-
Uses of HttpConnection in org.eclipse.jgit.lfs
Methods in org.eclipse.jgit.lfs with parameters of type HttpConnection Modifier and Type Method Description private java.util.Map<java.lang.String,LfsPointer>
LfsPrePushHook. requestBatchUpload(HttpConnection api, java.util.Set<LfsPointer> toPush)
private void
LfsPrePushHook. uploadContents(HttpConnection api, java.util.Map<java.lang.String,LfsPointer> oid2ptr)
-
Uses of HttpConnection in org.eclipse.jgit.lfs.internal
Methods in org.eclipse.jgit.lfs.internal that return HttpConnection Modifier and Type Method Description static HttpConnection
LfsConnectionFactory. getLfsConnection(Repository db, java.lang.String method, java.lang.String purpose)
Determine URL of LFS server by looking into config parameters lfs.url, lfs.[remote].url or remote.[remote].url.static HttpConnection
LfsConnectionFactory. getLfsContentConnection(Repository repo, Protocol.Action action, java.lang.String method)
Create a connection for the specifiedProtocol.Action
. -
Uses of HttpConnection in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as HttpConnection Modifier and Type Field Description protected HttpConnection
TransportHttp.Service. conn
Methods in org.eclipse.jgit.transport that return HttpConnection Modifier and Type Method Description private HttpConnection
TransportHttp. connect(java.lang.String service)
protected HttpConnection
TransportHttp. httpOpen(java.lang.String method, java.net.URL u, TransportHttp.AcceptEncoding acceptEncoding)
Open an HTTP connection.Methods in org.eclipse.jgit.transport with parameters of type HttpConnection Modifier and Type Method Description (package private) void
HttpAuthMethod.Basic. configureRequest(HttpConnection conn)
(package private) abstract void
HttpAuthMethod. configureRequest(HttpConnection conn)
Update connection properties based on this authentication method.(package private) void
HttpAuthMethod.Digest. configureRequest(HttpConnection conn)
(package private) void
HttpAuthMethod.Negotiate. configureRequest(HttpConnection conn)
(package private) void
HttpAuthMethod.None. configureRequest(HttpConnection conn)
private FetchConnection
TransportHttp. getConnection(HttpConnection c, java.io.InputStream in, java.lang.String service)
private boolean
TransportHttp. isGzipContent(HttpConnection c)
private boolean
TransportHttp. isSmartHttp(HttpConnection c, java.lang.String service)
(package private) java.io.InputStream
TransportHttp. openInputStream(HttpConnection conn)
(package private) void
TransportHttp. processResponseCookies(HttpConnection conn)
(package private) static HttpAuthMethod
HttpAuthMethod. scanResponse(HttpConnection conn, java.util.Collection<HttpAuthMethod.Type> ignoreTypes)
Handle an authentication failure and possibly return a new response.private void
TransportHttp. setCookieHeader(HttpConnection conn)
private PushConnection
TransportHttp. smartPush(java.lang.String service, HttpConnection c, java.io.InputStream in)
-
Uses of HttpConnection in org.eclipse.jgit.transport.http
Classes in org.eclipse.jgit.transport.http that implement HttpConnection Modifier and Type Class Description class
JDKHttpConnection
AHttpConnection
which simply delegates every call to aHttpURLConnection
.Methods in org.eclipse.jgit.transport.http that return HttpConnection Modifier and Type Method Description HttpConnection
HttpConnectionFactory. create(java.net.URL url)
Creates a new connection to a destination defined by aURL
HttpConnection
HttpConnectionFactory. create(java.net.URL url, java.net.Proxy proxy)
Creates a new connection to a destination defined by aURL
using a proxyHttpConnection
JDKHttpConnectionFactory. create(java.net.URL url)
Creates a new connection to a destination defined by aURL
HttpConnection
JDKHttpConnectionFactory. create(java.net.URL url, java.net.Proxy proxy)
Creates a new connection to a destination defined by aURL
using a proxy -
Uses of HttpConnection in org.eclipse.jgit.transport.http.apache
Classes in org.eclipse.jgit.transport.http.apache that implement HttpConnection Modifier and Type Class Description class
HttpClientConnection
AHttpConnection
which usesHttpClient
Methods in org.eclipse.jgit.transport.http.apache that return HttpConnection Modifier and Type Method Description HttpConnection
HttpClientConnectionFactory. create(java.net.URL url)
Creates a new connection to a destination defined by aURL
HttpConnection
HttpClientConnectionFactory. create(java.net.URL url, java.net.Proxy proxy)
Creates a new connection to a destination defined by aURL
using a proxy -
Uses of HttpConnection in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util with parameters of type HttpConnection Modifier and Type Method Description static void
HttpSupport. disableSslVerify(HttpConnection conn)
Disable SSL and hostname verification for given HTTP connectionstatic int
HttpSupport. response(HttpConnection c)
Get the HTTP response code from the request.static java.lang.String
HttpSupport. responseHeader(HttpConnection c, java.lang.String headerName)
Extract a HTTP header from the response.
-