*/
public String[] listDeployedURLs() {
final Collection<String> names = new HashSet<String>();
for(final ProfileKey key : actionController.getActiveProfiles()) {
final ManagedProfile managed = actionController.getManagedProfile(key);
final Profile profile = managed.getProfile();
final Set<String> deploymentNames = profile.getDeploymentNames();
if(deploymentNames != null && deploymentNames.isEmpty() == false) {
names.addAll(deploymentNames);
}
}
return names.toArray(new String[names.size()]);