mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-17 18:51:10 +01:00
11 lines
249 B
Java
11 lines
249 B
Java
|
|
package sonia.scm.security;
|
||
|
|
|
||
|
|
import sonia.scm.plugin.Extension;
|
||
|
|
|
||
|
|
@Extension
|
||
|
|
public class DefaultJwtAccessTokenRefreshStrategy extends PercentageJwtAccessTokenRefreshStrategy {
|
||
|
|
public DefaultJwtAccessTokenRefreshStrategy() {
|
||
|
|
super(0.5F);
|
||
|
|
}
|
||
|
|
}
|