Package org.apache.syncope.sra.session
Class CacheManagerReactiveSessionRepository
- java.lang.Object
-
- org.apache.syncope.sra.session.CacheManagerReactiveSessionRepository
-
- All Implemented Interfaces:
org.springframework.session.ReactiveSessionRepository<org.springframework.session.MapSession>
public class CacheManagerReactiveSessionRepository extends Object implements org.springframework.session.ReactiveSessionRepository<org.springframework.session.MapSession>
-
-
Constructor Summary
Constructors Constructor Description CacheManagerReactiveSessionRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<org.springframework.session.MapSession>
createSession()
reactor.core.publisher.Mono<Void>
deleteById(String id)
reactor.core.publisher.Mono<org.springframework.session.MapSession>
findById(String id)
reactor.core.publisher.Mono<Void>
save(org.springframework.session.MapSession session)
-
-
-
Method Detail
-
createSession
public reactor.core.publisher.Mono<org.springframework.session.MapSession> createSession()
- Specified by:
createSession
in interfaceorg.springframework.session.ReactiveSessionRepository<org.springframework.session.MapSession>
-
save
public reactor.core.publisher.Mono<Void> save(org.springframework.session.MapSession session)
- Specified by:
save
in interfaceorg.springframework.session.ReactiveSessionRepository<org.springframework.session.MapSession>
-
findById
public reactor.core.publisher.Mono<org.springframework.session.MapSession> findById(String id)
- Specified by:
findById
in interfaceorg.springframework.session.ReactiveSessionRepository<org.springframework.session.MapSession>
-
-