Introduce connection API (#598)

Including getCurrentConnection, getActiveConnections, and getCredentials
This commit is contained in:
Matt Irvine
2018-02-06 15:56:49 -08:00
committed by GitHub
parent f5aa49ebb9
commit 3df522536f
15 changed files with 264 additions and 3 deletions

View File

@@ -241,4 +241,12 @@ export class TestConnectionManagementService implements IConnectionManagementSer
getTabColorForUri(uri: string): string {
return undefined;
}
removeConnectionProfileCredentials(profile: IConnectionProfile): IConnectionProfile {
return undefined;
}
getActiveConnectionCredentials(profileId: string): { [name: string]: string } {
return undefined;
}
}