mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-21 06:20:05 -06:00
Initial commit for the RLM feature
Closes #40340 Closes #40341 Co-authored-by: Stefan Guilhen <sguilhen@redhat.com> Co-authored-by: Pedro Igor <pigor.craveiro@gmail.com> Signed-off-by: vramik <vramik@redhat.com>
This commit is contained in:
@@ -232,6 +232,8 @@ public interface UserModel extends RoleMapperModel {
|
||||
*/
|
||||
SubjectCredentialManager credentialManager();
|
||||
|
||||
void setLastSessionRefreshTime(int lastSessionRefreshTime);
|
||||
|
||||
enum RequiredAction {
|
||||
VERIFY_EMAIL,
|
||||
UPDATE_PROFILE,
|
||||
|
||||
@@ -251,6 +251,11 @@ public class UserModelDelegate implements UserModel {
|
||||
return delegate.isMemberOf(group);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setLastSessionRefreshTime(int lastSessionRefreshTime) {
|
||||
delegate.setLastSessionRefreshTime(lastSessionRefreshTime);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) return true;
|
||||
|
||||
Reference in New Issue
Block a user