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 /**
13 * Simple enumeration for the available built-in ssh clients.
14 */
15 public enum SshDriver {
16
17 /** Default client: use JSch. */
18 JSCH,
19
20 /** Use the Apache MINA sshd client from org.eclipse.jgit.ssh.apache. */
21 APACHE;
22
23 }