Uses of Class
org.eclipse.jgit.transport.Transport
-
Packages that use Transport Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of Transport in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type Transport Modifier and Type Method Description protected CTransportCommand. configure(Transport transport)Configure transport with credentials provider, timeout, and config callbackvoidTransportConfigCallback. configure(Transport transport)Add any additional transport-specific configuration required. -
Uses of Transport in org.eclipse.jgit.transport
Subclasses of Transport in org.eclipse.jgit.transport Modifier and Type Class Description classHttpTransportThe base class for transports that use HTTP as underlying protocol.classSshTransportThe base class for transports that use SSH protocol.classTcpTransportThe base class for transports based on TCP sockets.private classTestProtocol.TransportInternalclassTransportAmazonS3Transport over the non-Git aware Amazon S3 protocol.(package private) classTransportBundleFileclassTransportBundleStreamSingle shot fetch from a streamed Git bundle.(package private) classTransportGitAnonTransport through a git-daemon waiting for anonymous TCP connections.classTransportGitSshTransport through an SSH tunnel.classTransportHttpTransport over HTTP and FTP protocols.(package private) classTransportLocalTransport to access a local directory as though it were a remote peer.classTransportSftpTransport over the non-Git aware SFTP (SSH based FTP) protocol.Fields in org.eclipse.jgit.transport declared as Transport Modifier and Type Field Description protected TransportBasePackConnection. transportA transport connected toBasePackConnection.uri.private TransportBundleFetchConnection. transportprivate TransportFetchProcess. transportTransport we will fetch over.private TransportPushProcess. transportTransport used to perform this operation.private TransportWalkPushConnection. transportThe configured transport we were constructed by.Methods in org.eclipse.jgit.transport that return Transport Modifier and Type Method Description TransportTestProtocol. open(URIish uri, Repository local, java.lang.String remoteName)Open a Transport instance to the other repository.static TransportTransport. open(Repository local, java.lang.String remote)Open a new transport instance to connect two repositories.static TransportTransport. open(Repository local, java.lang.String remote, Transport.Operation op)Open a new transport instance to connect two repositories.static TransportTransport. open(Repository local, RemoteConfig cfg)Open a new transport instance to connect two repositories.static TransportTransport. open(Repository local, RemoteConfig cfg, Transport.Operation op)Open a new transport instance to connect two repositories.static TransportTransport. open(Repository local, URIish uri)Open a new transport instance to connect two repositories.static TransportTransport. open(Repository local, URIish uri, java.lang.String remoteName)Open a new transport instance to connect two repositories.static TransportTransport. open(URIish uri)Open a new transport with no local repository.TransportTransportProtocol. open(URIish uri)Open a new transport instance to the remote repository.abstract TransportTransportProtocol. open(URIish uri, Repository local, java.lang.String remoteName)Open a Transport instance to the other repository.Methods in org.eclipse.jgit.transport that return types with arguments of type Transport Modifier and Type Method Description static java.util.List<Transport>Transport. openAll(Repository local, java.lang.String remote)Open new transport instances to connect two repositories.static java.util.List<Transport>Transport. openAll(Repository local, java.lang.String remote, Transport.Operation op)Open new transport instances to connect two repositories.static java.util.List<Transport>Transport. openAll(Repository local, RemoteConfig cfg)Open new transport instances to connect two repositories.static java.util.List<Transport>Transport. openAll(Repository local, RemoteConfig cfg, Transport.Operation op)Open new transport instances to connect two repositories.Constructors in org.eclipse.jgit.transport with parameters of type Transport Constructor Description BundleFetchConnection(Transport transportBundle, java.io.InputStream src)FetchProcess(Transport t, java.util.Collection<RefSpec> f)PushProcess(Transport transport, java.util.Collection<RemoteRefUpdate> toPush)Create process for specified transport and refs updates specification.PushProcess(Transport transport, java.util.Collection<RemoteRefUpdate> toPush, java.io.OutputStream out)Create process for specified transport and refs updates specification.
-