SshDriver.java

  1. /*
  2.  * Copyright (C) 2018, Thomas Wolf <thomas.wolf@paranor.ch> and others
  3.  *
  4.  * This program and the accompanying materials are made available under the
  5.  * terms of the Eclipse Distribution License v. 1.0 which is available at
  6.  * https://www.eclipse.org/org/documents/edl-v10.php.
  7.  *
  8.  * SPDX-License-Identifier: BSD-3-Clause
  9.  */
  10. package org.eclipse.jgit.pgm.internal;

  11. /**
  12.  * Simple enumeration for the available built-in ssh clients.
  13.  */
  14. public enum SshDriver {

  15.     /** Default client: use JSch. */
  16.     JSCH,

  17.     /** Use the Apache MINA sshd client from org.eclipse.jgit.ssh.apache. */
  18.     APACHE;

  19. }