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

/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java99 private static final Set<String> protectedProperties = initialiseProtectedProperties(); field in class:InternalSession
499 * protectedProperties contains a set of property names which can not be
505 * mechanism automatically adds any property to protectedProperties if it is
511 * protectedProperties takes precedence over remotelyUpdateableProperties:
513 * on the protectedProperties list already.
517 * protectedProperties or remotelyUpdateableProperty list
519 * protectedProperties remotelyUpdateableProperties putProperty()
533 return protectedProperties.contains(key) || key.toLowerCase().startsWith(Constants.AM_PROTECTED_PROPERTY_PREFIX);
537 Set<String> protectedProperties = new HashSet<>();
538 protectedProperties
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DInternalSession.java272 * protectedProperties contains a set of property names which can not be
278 * mechanism automatically adds any property to protectedProperties if it is
284 * protectedProperties takes precedence over remotelyUpdateableProperties:
286 * on the protectedProperties list already.
290 * protectedProperties or remotelyUpdateableProperty list
292 * protectedProperties remotelyUpdateableProperties putProperty()
301 protected static final Set<String> protectedProperties; field in class:InternalSession
304 protectedProperties = new HashSet<String>();
305 protectedProperties.add(HOST);
306 protectedProperties
[all...]

Completed in 267 milliseconds