final Application application = this.applicationRepo.findOne(id);
if (application != null) {
application.getTags().addAll(tags);
return application.getTags();
} else {
throw new GenieNotFoundException("No application with id " + id + " exists.");
}
}