}
}
private List<? extends IntegrationEntity> getAvailableDestinations(IntegrationEntity e,
DataLocationType locationType) {
IntegrationProject project = ProjectUtils.getProject(e);
List<IntegrationEntity> all = new ArrayList<IntegrationEntity>(getSources(project, locationType));
all.addAll(getTargets(project, locationType));
all.remove(e);
return all;
}