use of org.xdi.oxauth.model.common.SessionIdState in project oxAuth by GluuFederation.
the class SessionStateService method isSessionStateAuthenticated.
public boolean isSessionStateAuthenticated() {
SessionState sessionState = getSessionState();
if (sessionState == null) {
return false;
}
SessionIdState sessionIdState = sessionState.getState();
if (SessionIdState.AUTHENTICATED.equals(sessionIdState)) {
return true;
}
return false;
}
Aggregations