Skip to content
Snippets Groups Projects
Commit 8c9aedaf authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Add missing interface for event handling

parent 88da4454
Branches
No related merge requests found
......@@ -13,6 +13,7 @@ import de.thm.arsnova.persistance.CommentRepository;
import de.thm.arsnova.persistance.SessionRepository;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Service;
......@@ -23,7 +24,7 @@ import java.util.List;
* Performs all comment related operations.
*/
@Service
public class CommentServiceImpl extends EntityService<Comment> implements CommentService {
public class CommentServiceImpl extends EntityService<Comment> implements CommentService, ApplicationEventPublisherAware {
private UserService userService;
private CommentRepository commentRepository;
......@@ -43,6 +44,11 @@ public class CommentServiceImpl extends EntityService<Comment> implements Commen
this.userService = userService;
}
@Override
public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
this.publisher = applicationEventPublisher;
}
@Override
@PreAuthorize("isAuthenticated()")
public boolean save(final Comment comment) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment