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

/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java158 private final ConcurrentMap<SessionID, TokenRestriction> restrictedTokensBySid = new ConcurrentHashMap<>(); field in class:InternalSession
888 * @param restrictedTokensBySid The deserialized map of sid&lt;->restricted tokens that should be stored in a
892 private void setRestrictedTokensBySid(ConcurrentMap<SessionID, TokenRestriction> restrictedTokensBySid) { argument
893 for (Map.Entry<SessionID, TokenRestriction> entry : restrictedTokensBySid.entrySet()) {
896 this.restrictedTokensBySid.put(sid, restriction);
959 restrictedTokensBySid.put(newRestrictedTokenId, restriction);
973 return restrictedTokensBySid.get(sid);
997 return new HashSet<>(restrictedTokensBySid.keySet());
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java168 private final ConcurrentMap<SessionID, TokenRestriction> restrictedTokensBySid = field in class:InternalSession
1429 * @param restrictedTokensBySid The deserialized map of sid&lt;->restricted tokens that should be stored in a
1433 private void setRestrictedTokensBySid(ConcurrentMap<SessionID, TokenRestriction> restrictedTokensBySid) { argument
1434 for (Map.Entry<SessionID, TokenRestriction> entry : restrictedTokensBySid.entrySet()) {
1437 this.restrictedTokensBySid.put(sid, restriction);
1496 restrictedTokensBySid.put(sid, restriction);
1510 return restrictedTokensBySid.get(sid);
1518 return new HashSet<SessionID>(restrictedTokensBySid.keySet());

Completed in 46 milliseconds