2018-11-29 08:01:25 +01:00
|
|
|
package sonia.scm.security;
|
|
|
|
|
|
2018-11-30 11:35:20 +01:00
|
|
|
import sonia.scm.plugin.ExtensionPoint;
|
|
|
|
|
|
|
|
|
|
@ExtensionPoint
|
2018-11-29 08:01:25 +01:00
|
|
|
public interface JwtAccessTokenRefreshStrategy {
|
|
|
|
|
boolean shouldBeRefreshed(JwtAccessToken oldToken);
|
|
|
|
|
}
|