Searched refs:expr (Results 51 - 75 of 131) sorted by relevance

123456

/forgerock/opendj2.6.2/src/server/org/opends/server/authorization/dseecompat/
H A DTargetFilter.java65 * @param expr A string representing the target filter.
69 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
73 filter = SearchFilter.createFilterFromString(expr);
77 get(expr);
H A DBindRule.java475 * @param expr The expression string to further parse.
480 * @throws AciException If the expr string contains a invalid
483 private static KeywordBindRule decode(String expr, argument
491 rule = UserDN.decode(expr, op);
499 WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED.get(expr);
504 rule = GroupDN.decode(expr, op);
509 rule=IP.decode(expr, op);
514 rule = DNS.decode(expr, op);
519 rule = DayOfWeek.decode(expr, op);
524 rule=TimeOfDay.decode(expr, o
[all...]
H A DGroupDN.java79 * @param expr A string representation of the bind rule.
85 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
87 if (!Pattern.matches(LDAP_URLS, expr)) {
89 WARN_ACI_SYNTAX_INVALID_GROUPDN_EXPRESSION.get(expr);
95 Matcher ldapURLMatcher = ldapURLPattern.matcher(expr);
/forgerock/opendj2-hg/src/server/org/opends/server/authorization/dseecompat/
H A DTargetFilter.java64 * @param expr A string representing the target filter.
68 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
72 filter = SearchFilter.createFilterFromString(expr);
76 get(expr);
H A DDayOfWeek.java61 * @param expr A string representation of the bind rule.
67 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
71 String[] dayArray=expr.split(",", -1);
77 Message message = WARN_ACI_SYNTAX_INVALID_DAYOFWEEK.get(expr);
H A DIP.java75 * @param expr The expression string from the ACI IP bind rule.
81 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
84 String[] ipStrs=expr.split("\\,", -1);
89 WARN_ACI_SYNTAX_INVALID_IP_EXPRESSION.get(expr);
H A DBindRule.java456 * @param expr The expression string to further parse.
461 * @throws AciException If the expr string contains a invalid
464 private static KeywordBindRule decode(String expr, argument
472 rule = UserDN.decode(expr, op);
480 WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED.get(expr);
485 rule = GroupDN.decode(expr, op);
490 rule=IP.decode(expr, op);
495 rule = DNS.decode(expr, op);
500 rule = DayOfWeek.decode(expr, op);
505 rule=TimeOfDay.decode(expr, o
[all...]
H A DGroupDN.java74 * @param expr A string representation of the bind rule.
80 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
82 if (!Pattern.matches(LDAP_URLS, expr)) {
84 WARN_ACI_SYNTAX_INVALID_GROUPDN_EXPRESSION.get(expr);
90 Matcher ldapURLMatcher = ldapURLPattern.matcher(expr);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/authorization/dseecompat/
H A DDayOfWeek.java63 * @param expr A string representation of the bind rule.
69 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
73 String[] dayArray=expr.split(",", -1);
79 Message message = WARN_ACI_SYNTAX_INVALID_DAYOFWEEK.get(expr);
H A DIP.java78 * @param expr The expression string from the ACI IP bind rule.
84 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
87 String[] ipStrs=expr.split("\\,", -1);
92 WARN_ACI_SYNTAX_INVALID_IP_EXPRESSION.get(expr);
H A DTargetFilter.java65 * @param expr A string representing the target filter.
69 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
73 filter = SearchFilter.createFilterFromString(expr);
77 get(expr);
H A DBindRule.java475 * @param expr The expression string to further parse.
480 * @throws AciException If the expr string contains a invalid
483 private static KeywordBindRule decode(String expr, argument
491 rule = UserDN.decode(expr, op);
499 WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED.get(expr);
504 rule = GroupDN.decode(expr, op);
509 rule=IP.decode(expr, op);
514 rule = DNS.decode(expr, op);
519 rule = DayOfWeek.decode(expr, op);
524 rule=TimeOfDay.decode(expr, o
[all...]
H A DGroupDN.java79 * @param expr A string representation of the bind rule.
85 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
87 if (!Pattern.matches(LDAP_URLS, expr)) {
89 WARN_ACI_SYNTAX_INVALID_GROUPDN_EXPRESSION.get(expr);
95 Matcher ldapURLMatcher = ldapURLPattern.matcher(expr);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/authorization/dseecompat/
H A DDayOfWeek.java61 * @param expr A string representation of the bind rule.
67 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
71 String[] dayArray=expr.split(",", -1);
77 LocalizableMessage message = WARN_ACI_SYNTAX_INVALID_DAYOFWEEK.get(expr);
H A DTargetFilter.java59 * @param expr A string representing the target filter.
63 public static TargetFilter decode(EnumTargetOperator op, String expr) argument
67 filter = SearchFilter.createFilterFromString(expr);
71 get(expr);
H A DIP.java75 * @param expr The expression string from the ACI IP bind rule.
81 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
84 String[] ipStrs=expr.split("\\,", -1);
89 WARN_ACI_SYNTAX_INVALID_IP_EXPRESSION.get(expr);
H A DBindRule.java405 * @param expr The expression string to further parse.
410 * @throws AciException If the expr string contains a invalid
413 private static KeywordBindRule decode(String expr, EnumBindRuleKeyword keyword, EnumBindRuleType op) argument
417 return UserDN.decode(expr, op);
421 throw new AciException(WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED.get(expr));
423 return GroupDN.decode(expr, op);
425 return IP.decode(expr, op);
427 return DNS.decode(expr, op);
429 return DayOfWeek.decode(expr, op);
431 return TimeOfDay.decode(expr, o
[all...]
H A DTarget.java107 * @param expr A string representation of the target.
113 String expr, DN aciDN)
115 return new Target(operator, expr, aciDN);
112 decode(EnumTargetOperator operator, String expr, DN aciDN) argument
/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/requirejs/
H A Dr.js4322 function subscripts(expr, allow_calls) {
4325 return subscripts(as("dot", expr, as_name()), allow_calls);
4329 return subscripts(as("sub", expr, prog1(expression, curry(expect, "]"))), allow_calls);
4333 return subscripts(as("call", expr, expr_list(")")), true);
4335 return expr;
4352 function make_unary(tag, op, expr) {
4353 if ((op == "++" || op == "--") && !is_assignable(expr))
4355 return as(tag, op, expr);
4375 var expr = expr_ops(no_in);
4380 return as("conditional", expr, ye
[all...]
/forgerock/opendj2/src/server/org/opends/server/authorization/dseecompat/
H A DDayOfWeek.java61 * @param expr A string representation of the bind rule.
67 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
71 String[] dayArray=expr.split(",", -1);
77 Message message = WARN_ACI_SYNTAX_INVALID_DAYOFWEEK.get(expr);
H A DIP.java75 * @param expr The expression string from the ACI IP bind rule.
81 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
84 String[] ipStrs=expr.split("\\,", -1);
89 WARN_ACI_SYNTAX_INVALID_IP_EXPRESSION.get(expr);
H A DBindRule.java456 * @param expr The expression string to further parse.
461 * @throws AciException If the expr string contains a invalid
464 private static KeywordBindRule decode(String expr, argument
472 rule = UserDN.decode(expr, op);
480 WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED.get(expr);
485 rule = GroupDN.decode(expr, op);
490 rule=IP.decode(expr, op);
495 rule = DNS.decode(expr, op);
500 rule = DayOfWeek.decode(expr, op);
505 rule=TimeOfDay.decode(expr, o
[all...]
H A DGroupDN.java74 * @param expr A string representation of the bind rule.
80 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
82 if (!Pattern.matches(LDAP_URLS, expr)) {
84 WARN_ACI_SYNTAX_INVALID_GROUPDN_EXPRESSION.get(expr);
90 Matcher ldapURLMatcher = ldapURLPattern.matcher(expr);
/forgerock/opendj-b2.6/src/server/org/opends/server/authorization/dseecompat/
H A DBindRule.java475 * @param expr The expression string to further parse.
480 * @throws AciException If the expr string contains a invalid
483 private static KeywordBindRule decode(String expr, argument
491 rule = UserDN.decode(expr, op);
499 WARN_ACI_SYNTAX_ROLEDN_NOT_SUPPORTED.get(expr);
504 rule = GroupDN.decode(expr, op);
509 rule=IP.decode(expr, op);
514 rule = DNS.decode(expr, op);
519 rule = DayOfWeek.decode(expr, op);
524 rule=TimeOfDay.decode(expr, o
[all...]
H A DGroupDN.java79 * @param expr A string representation of the bind rule.
85 public static KeywordBindRule decode(String expr, EnumBindRuleType type) argument
87 if (!Pattern.matches(LDAP_URLS, expr)) {
89 WARN_ACI_SYNTAX_INVALID_GROUPDN_EXPRESSION.get(expr);
95 Matcher ldapURLMatcher = ldapURLPattern.matcher(expr);

Completed in 83 milliseconds

123456