in src/tree/integration-account/IntegrationAccountTreeItem.ts [81:94]
public pickTreeItem(expectedContextValue: string): IAzureTreeItem | undefined {
switch (expectedContextValue) {
case IntegrationAccountAgreementsTreeItem.contextValue:
return this.integrationAccountAgreementsItem;
case IntegrationAccountMapsTreeItem.contextValue:
return this.integrationAccountMapsItem;
case IntegrationAccountPartnersTreeItem.contextValue:
return this.integrationAccountPartnersItem;
case IntegrationAccountSchemasTreeItem.contextValue:
return this.integrationAccountSchemasItem;
default:
return undefined;
}
}