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

/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DLEAuthLevelCondition.java56 * @param maxRequestAuthLevel {@inheritDoc}
58 * @return {@code true} if the get {@code maxRequestAuthLevel} is less than or equal to the configured auth level.
61 protected boolean isAllowed(int maxRequestAuthLevel, Map<String, Set<String>> advices) { argument
62 return maxRequestAuthLevel <= getAuthLevel();
H A DAuthLevelCondition.java129 int maxRequestAuthLevel = getMaxRequestAuthLevel(env);
130 if (maxRequestAuthLevel == Integer.MIN_VALUE) {
132 maxRequestAuthLevel = getMaxRequestAuthLevel(token);
135 allowed = isAllowed(maxRequestAuthLevel, advices);
139 + ",maxRequestAuthLevel=" + maxRequestAuthLevel + ",allowed = " + allowed);
155 * @param maxRequestAuthLevel {@inheritDoc}
157 * @return {@code true} if the get {@code maxRequestAuthLevel} is greater than or equal to the configured auth
160 protected boolean isAllowed(int maxRequestAuthLevel, Map<String, Set<String>> advices) { argument
162 if (maxRequestAuthLevel >
[all...]
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DLEAuthLevelCondition.java56 * @param maxRequestAuthLevel {@inheritDoc}
58 * @return {@code true} if the get {@code maxRequestAuthLevel} is less than or equal to the configured auth level.
61 protected boolean isAllowed(int maxRequestAuthLevel, Map<String, Set<String>> advices) { argument
62 return maxRequestAuthLevel <= getAuthLevel();
H A DAuthLevelCondition.java123 int maxRequestAuthLevel = getMaxRequestAuthLevel(env);
124 if (maxRequestAuthLevel == Integer.MIN_VALUE && subject != null) {
126 maxRequestAuthLevel = getMaxRequestAuthLevel(token);
129 allowed = isAllowed(maxRequestAuthLevel, advices);
133 + ",maxRequestAuthLevel=" + maxRequestAuthLevel + ",allowed = " + allowed);
149 * @param maxRequestAuthLevel {@inheritDoc}
151 * @return {@code true} if the get {@code maxRequestAuthLevel} is greater than or equal to the configured auth
154 protected boolean isAllowed(int maxRequestAuthLevel, Map<String, Set<String>> advices) { argument
156 if (maxRequestAuthLevel >
[all...]

Completed in 32 milliseconds