Example usage for org.eclipse.jgit.api TransportConfigCallback interface-usage

List of usage examples for org.eclipse.jgit.api TransportConfigCallback interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.api TransportConfigCallback interface-usage.

Usage

From source file com.madgag.agit.git.AgitTransportConfig.java

public class AgitTransportConfig implements TransportConfigCallback {

    private final static String TAG = "ATC";

    private final SshSessionFactory sshSessionFactory;

From source file com.mooregreatsoftware.gitprocess.transport.GitTransportConfigCallback.java

/**
 * Transport configuration callback for the "remoting" Git commands (e.g., clone, fetch, push, etc.) that
 * will use {@link }SshAgentJschConfigSessionFactory} when the transport is SSH.
 */
public class GitTransportConfigCallback implements TransportConfigCallback {
    @Override

From source file org.apache.maven.scm.provider.git.jgit.command.JGitTransportConfigCallback.java

/**
 * Implementation of {@link TransportConfigCallback} which adds
 * a public/private key identity to ssh URLs if configured.
 */
public class JGitTransportConfigCallback implements TransportConfigCallback {
    private SshSessionFactory sshSessionFactory = null;

From source file org.springframework.cloud.config.server.ssh.FileBasedSshTransportConfigCallback.java

/**
 * Configure JGit transport command to use a default SSH session factory based on local machines SSH config.
 * Allow strict host key checking to be set.
 */
public class FileBasedSshTransportConfigCallback implements TransportConfigCallback {

From source file org.springframework.cloud.config.server.ssh.PropertiesBasedSshTransportConfigCallback.java

/**
 * Configure JGit transport command to use a SSH session factory that is configured using properties defined
 * in {@link MultipleJGitEnvironmentProperties}
 */
public class PropertiesBasedSshTransportConfigCallback implements TransportConfigCallback {