@Override
public void renameEntity(IntegrationEntity e) {
if (e instanceof IntegrationProject) {
ProjectRenamerImpl renamer = new ProjectRenamerImpl(view);
renamer.renameProject((IntegrationProject) e);
} else {
MultiTreeSection section = getSectionFor(e);
if (section != null) {
section.rename(e);
}