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 1
1
package io .scalecube .security .tokens .jwt ;
2
2
3
+ import io .scalecube .security .tokens .jwt .jsonwebtoken .JsonwebtokenParserFactory ;
3
4
import java .security .Key ;
4
5
import java .time .Duration ;
5
6
import java .util .Map ;
@@ -18,7 +19,7 @@ public final class JwtTokenResolverImpl implements JwtTokenResolver {
18
19
private static final Logger LOGGER = LoggerFactory .getLogger (JwtTokenResolver .class );
19
20
20
21
private KeyProvider keyProvider ;
21
- private JwtTokenParserFactory tokenParserFactory ;
22
+ private JwtTokenParserFactory tokenParserFactory = new JsonwebtokenParserFactory () ;
22
23
private Scheduler scheduler = Schedulers .boundedElastic ();
23
24
private Duration cleanupInterval = Duration .ofSeconds (60 );
24
25
You can’t perform that action at this time.
0 commit comments