Search in sources :

Example 1 with CommentDeletedEvent

use of org.obiba.mica.core.event.CommentDeletedEvent in project mica2 by obiba.

the class CommentsService method delete.

public void delete(Comment comment) throws NoSuchCommentException {
    commentsRepository.delete(comment);
    eventBus.post(new CommentDeletedEvent(comment));
}
Also used : CommentDeletedEvent(org.obiba.mica.core.event.CommentDeletedEvent)

Aggregations

CommentDeletedEvent (org.obiba.mica.core.event.CommentDeletedEvent)1