blob: afbafa5a3486d50a8e8168a5a17e026a7232cb7b [file] [log] [blame]
/* -*-mode:java; c-basic-offset:2; -*- */
/*******************************************************************************
* Copyright (c) 2003, Atsuhiko Yamanaka, JCraft,Inc. and others. All rights
* reserved. This program and the accompanying materials are made available
* under the terms of the Common Public License v1.0 which accompanies this
* distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors: Atsuhiko Yamanaka, JCraft,Inc. - initial API and
* implementation.
******************************************************************************/
package org.eclipse.team.internal.ccvs.ssh2;
import org.eclipse.team.internal.ccvs.core.*;
/**
* SSH2 will hijack the 'extssh' method and use the SSH2 protocol instead
* of SSH1. If the server doesn't support SSH2, the server connection method
* will try connecting with SSH1.
*
* @since 3.0
*/
public class CVSSSH2Method implements IConnectionMethod {
public String getName() {
return "extssh"; //$NON-NLS-1$
}
public IServerConnection createConnection(ICVSRepositoryLocation root, String password) {
return new CVSSSH2ServerConnection(root, password);
}
public void disconnect(ICVSRepositoryLocation location) {
}
}