Skip to content
Snippets Groups Projects
Commit 11a689b2 authored by Paul-Christian Volkmer's avatar Paul-Christian Volkmer
Browse files

UserSessionServiceImpl should implement Serializable

parent d1c9be66
Branches
Tags
No related merge requests found
package de.thm.arsnova.services; package de.thm.arsnova.services;
import java.io.Serializable;
import java.util.UUID; import java.util.UUID;
import org.springframework.context.annotation.Scope; import org.springframework.context.annotation.Scope;
...@@ -13,8 +14,9 @@ import de.thm.arsnova.socket.ARSnovaSocketIOServer; ...@@ -13,8 +14,9 @@ import de.thm.arsnova.socket.ARSnovaSocketIOServer;
@Component @Component
@Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS) @Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS)
public class UserSessionServiceImpl implements UserSessionService { public class UserSessionServiceImpl implements UserSessionService, Serializable {
private static final long serialVersionUID = 1L;
private User user; private User user;
private Session session; private Session session;
private UUID socketId; private UUID socketId;
......
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