1 12 package org.eclipse.team.internal.ccvs.ssh2; 13 14 import org.eclipse.team.internal.ccvs.core.*; 15 16 23 public class CVSSSH2Method implements IConnectionMethod { 24 25 public String getName() { 26 return "extssh"; } 28 29 public IServerConnection createConnection(ICVSRepositoryLocation root, String password) { 30 return new CVSSSH2ServerConnection(root, password); 31 } 32 33 public void disconnect(ICVSRepositoryLocation location) { 34 } 35 } 36 | Popular Tags |