File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
tokens/src/main/java/io/scalecube/security/tokens/jwt Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11package io .scalecube .security .tokens .jwt ;
22
3+ import io .scalecube .security .tokens .jwt .jsonwebtoken .JsonwebtokenParserFactory ;
34import java .security .Key ;
45import java .time .Duration ;
56import java .util .Map ;
@@ -18,7 +19,7 @@ public final class JwtTokenResolverImpl implements JwtTokenResolver {
1819 private static final Logger LOGGER = LoggerFactory .getLogger (JwtTokenResolver .class );
1920
2021 private KeyProvider keyProvider ;
21- private JwtTokenParserFactory tokenParserFactory ;
22+ private JwtTokenParserFactory tokenParserFactory = new JsonwebtokenParserFactory () ;
2223 private Scheduler scheduler = Schedulers .boundedElastic ();
2324 private Duration cleanupInterval = Duration .ofSeconds (60 );
2425
You can’t perform that action at this time.
0 commit comments