use of org.obiba.mica.core.event.DocumentSetUpdatedEvent in project mica2 by obiba.
the class DocumentSetService method save.
private DocumentSet save(DocumentSet documentSet, Set<String> removedIdentifiers) {
DocumentSet saved = saveInternal(documentSet);
eventBus.post(new DocumentSetUpdatedEvent(saved, removedIdentifiers));
return saved;
}
Aggregations