Searched defs:sessId (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java566 * @param sessId Session ID.
569 public static InternalSession getSession(String sessId) { argument
571 debug.message("getSession for " + sessId);
574 if (sessId != null) {
575 SessionID sid = new SessionID(sessId);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java536 * @param sessId Session ID.
539 public static InternalSession getSession(String sessId) { argument
540 debug.message("getSession for %s", sessId);
542 if (null == sessId) {
546 InternalSession is = getSession(new SessionID(sessId));

Completed in 36 milliseconds