Lines Matching defs:protectedProperties

99     private static final Set<String> protectedProperties = initialiseProtectedProperties();
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.add(HOST);
539 protectedProperties.add(HOST_NAME);
540 protectedProperties.add("AuthLevel");
541 protectedProperties.add("AuthType");
542 protectedProperties.add("Principal");
543 protectedProperties.add("UserId");
544 protectedProperties.add("UserToken");
545 protectedProperties.add("Organization");
546 protectedProperties.add("cookieSupport");
547 protectedProperties.add("authInstant");
548 protectedProperties.add("Principals");
549 protectedProperties.add("loginURL");
550 protectedProperties.add("FullLoginURL");
551 protectedProperties.add("Role");
552 protectedProperties.add("Service");
553 protectedProperties.add(SESSION_TIMED_OUT);
554 protectedProperties.add(SESSION_HANDLE_PROP);
555 protectedProperties.add(TOKEN_RESTRICTION_PROP);
556 protectedProperties.add(AM_MAX_IDLE_TIME);
557 protectedProperties.add(AM_MAX_SESSION_TIME);
558 protectedProperties.add(Constants.AM_CTX_ID);
559 protectedProperties.add(Constants.UNIVERSAL_IDENTIFIER);
567 protectedProperties.add(prop);
574 return protectedProperties;