blob: 90b59aca11e1dd6b53fbec949528c2cccd16e03d [file] [log] [blame]
package org.eclipse.team.internal.ccvs.core.connection;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.team.ccvs.core.ICVSRepositoryLocation;
import org.eclipse.team.ccvs.core.IConnectionMethod;
import org.eclipse.team.ccvs.core.IServerConnection;
public class ExtConnectionMethod implements IConnectionMethod {
/**
* @see IConnectionMethod#getName
*/
public String getName() {
return "ext"; //$NON-NLS-1$
}
/**
* @see IConnectionMethod#createConnection
*/
public IServerConnection createConnection(ICVSRepositoryLocation repositoryRoot, String password) {
return new ExtConnection(repositoryRoot, password);
}
}