blob: 6af5f92013b346d3e824eacf03ae06de48fbd2d2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ssh;
import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
import org.eclipse.team.internal.ccvs.core.IConnectionMethod;
import org.eclipse.team.internal.ccvs.core.IServerConnection;
public class SSHMethod implements IConnectionMethod {
/**
* @see IConnectionMethod#getName
*/
public String getName() {
return "extssh";//$NON-NLS-1$
}
/**
* @see IConnectionMethod#createConnection
*/
public IServerConnection createConnection(ICVSRepositoryLocation repositoryRoot, String password) {
return new SSHServerConnection(repositoryRoot, password);
}
public void disconnect(ICVSRepositoryLocation location) {
}
}