
com.tngtech.keycloakmock.impl.session.Session Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mock Show documentation
Show all versions of mock Show documentation
Base module of keycloak-mock
The newest version!
package com.tngtech.keycloakmock.impl.session;
import java.util.List;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public interface Session {
@Nonnull
String getClientId();
@Nonnull
String getSessionId();
@Nonnull
UserData getUserData();
@Nonnull
List getRoles();
@Nullable
String getNonce();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy