private void command_showDiscoverableWorkspaces(String info) {
List<String> cwsNames = new ArrayList<String>();
CALWorkspace workspace = workspaceManager.getWorkspace();
WorkspaceDeclarationManager workspaceDeclarationManager = workspace.getWorkspaceDeclarationManager();
if (workspaceDeclarationManager != null) {
ResourceStore resourceStore = workspaceDeclarationManager.getResourceStore();
for (Iterator<WorkspaceResource> it = resourceStore.getResourceIterator(); it.hasNext(); ) {
final WorkspaceResource decl = it.next();
cwsNames.add(decl.getIdentifier().getFeatureName().getName());