mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
9 lines
206 B
Java
9 lines
206 B
Java
package sonia.scm.security;
|
|
|
|
import sonia.scm.plugin.ExtensionPoint;
|
|
|
|
@ExtensionPoint(multi = false)
|
|
public interface JwtAccessTokenRefreshStrategy {
|
|
boolean shouldBeRefreshed(JwtAccessToken oldToken);
|
|
}
|