Searched defs:sessionType (Results 1 - 4 of 4) sorted by relevance

/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/
H A DSession.java102 private SessionType sessionType = SessionType.USER; field in class:Session
277 return sessionType;
779 sessionType = SessionType.USER;
781 sessionType = SessionType.APPLICATION;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DSession.java121 private int sessionType; field in class:Session
471 return sessionType;
1075 sessionType = USER_SESSION;
1077 sessionType = APPLICATION_SESSION;
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java130 private SessionType sessionType = SessionType.USER; field in class:InternalSession
265 return sessionType;
274 sessionType = type;
793 if (sessionType == SessionType.USER) {
795 } else if (sessionType == SessionType.APPLICATION) {
929 return sessionType == SessionType.APPLICATION;
938 return sessionType == SessionType.USER;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java110 private int sessionType; field in class:InternalSession
660 return sessionType;
670 sessionType = type;
1302 if (sessionType == USER_SESSION) {
1304 } else if (sessionType == APPLICATION_SESSION) {
1470 return sessionType == APPLICATION_SESSION;

Completed in 56 milliseconds