Interface PlatformSessionProvider
-
- All Known Implementing Classes:
PlatformSessionProviderImpl
public interface PlatformSessionProvider
- Author:
- Baptiste Mesta
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addSession(SPlatformSession session)
SPlatformSession
getSession(long sessionId)
void
removeSession(long sessionId)
void
updateSession(SPlatformSession session)
-
-
-
Method Detail
-
addSession
void addSession(SPlatformSession session) throws SSessionAlreadyExistsException
- Throws:
SSessionAlreadyExistsException
-
removeSession
void removeSession(long sessionId) throws SSessionNotFoundException
- Throws:
SSessionNotFoundException
-
getSession
SPlatformSession getSession(long sessionId) throws SSessionNotFoundException
- Throws:
SSessionNotFoundException
-
updateSession
void updateSession(SPlatformSession session) throws SSessionNotFoundException
- Throws:
SSessionNotFoundException
-
-