Searched refs:rules (Results 1 - 25 of 69) sorted by relevance

123

/forgerock/openam/openam-ui/openam-ui-ria/
H A D.eslintrc.js18 rules: {
23 * These are rules we're sure about. They will cause the build to fail.
114 * These are rules that we want to turn into errors but can't yet because there are
116 * error rules.
128 * Disabled rules
134 * Disabled because these rules aren't available in ESLint 2.0.
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java42 /* These are all valid rules -- should all pass. */
212 public void testMatch(String[] rules, String[] addrs, String[] hostNames) argument
215 assertTrue(match(rules, addrs, hostNames));
219 public void testWildCardMatch(String[] rules, String[] addrs, argument
222 assertTrue(match(rules, addrs, hostNames));
226 public void testNoMatch(String[] rules, String[] addrs, String[] hostNames) argument
229 assertFalse(match(rules, addrs, hostNames));
245 private boolean match(String[] rules, String[] addrs, String[] hostNames) argument
250 Collection<AddressMask> m = new ArrayList<AddressMask>(rules.length);
252 for (i = 0; i < rules
360 testMatch6(String[] rules, String[] addrs, String[] hostNames) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java41 /* These are all valid rules -- should all pass. */
211 public void testMatch(String[] rules, String[] addrs, String[] hostNames) argument
214 assertTrue(match(rules, addrs, hostNames));
218 public void testWildCardMatch(String[] rules, String[] addrs, argument
221 assertTrue(match(rules, addrs, hostNames));
225 public void testNoMatch(String[] rules, String[] addrs, String[] hostNames) argument
228 assertFalse(match(rules, addrs, hostNames));
244 private boolean match(String[] rules, String[] addrs, String[] hostNames) argument
249 Collection<AddressMask> m = new ArrayList<AddressMask>(rules.length);
251 for (i = 0; i < rules
359 testMatch6(String[] rules, String[] addrs, String[] hostNames) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java42 /* These are all valid rules -- should all pass. */
212 public void testMatch(String[] rules, String[] addrs, String[] hostNames) argument
215 assertTrue(match(rules, addrs, hostNames));
219 public void testWildCardMatch(String[] rules, String[] addrs, argument
222 assertTrue(match(rules, addrs, hostNames));
226 public void testNoMatch(String[] rules, String[] addrs, String[] hostNames) argument
229 assertFalse(match(rules, addrs, hostNames));
245 private boolean match(String[] rules, String[] addrs, String[] hostNames) argument
250 Collection<AddressMask> m = new ArrayList<AddressMask>(rules.length);
252 for (i = 0; i < rules
360 testMatch6(String[] rules, String[] addrs, String[] hostNames) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java41 /* These are all valid rules -- should all pass. */
211 public void testMatch(String[] rules, String[] addrs, String[] hostNames) argument
214 assertTrue(match(rules, addrs, hostNames));
218 public void testWildCardMatch(String[] rules, String[] addrs, argument
221 assertTrue(match(rules, addrs, hostNames));
225 public void testNoMatch(String[] rules, String[] addrs, String[] hostNames) argument
228 assertFalse(match(rules, addrs, hostNames));
244 private boolean match(String[] rules, String[] addrs, String[] hostNames) argument
249 Collection<AddressMask> m = new ArrayList<AddressMask>(rules.length);
251 for (i = 0; i < rules
359 testMatch6(String[] rules, String[] addrs, String[] hostNames) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/types/
H A DTestAddressMask.java42 /* These are all valid rules -- should all pass. */
212 public void testMatch(String[] rules, String[] addrs, String[] hostNames) argument
215 assertTrue(match(rules, addrs, hostNames));
219 public void testWildCardMatch(String[] rules, String[] addrs, argument
222 assertTrue(match(rules, addrs, hostNames));
226 public void testNoMatch(String[] rules, String[] addrs, String[] hostNames) argument
229 assertFalse(match(rules, addrs, hostNames));
245 private boolean match(String[] rules, String[] addrs, String[] hostNames) argument
250 Collection<AddressMask> m = new ArrayList<AddressMask>(rules.length);
252 for (i = 0; i < rules
360 testMatch6(String[] rules, String[] addrs, String[] hostNames) argument
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DFilterEditor.js192 Handlebars.registerHelper("filterDisplay", function (rules, config, options) {
202 if (rules.children && rules.children.length) {
203 rules.children = _.map(rules.children, function (c, index) { return _.extend(c, {index: index, lastChild: false, hasMultiple: (rules.children.length > 1)}); });
204 rules.children[rules.children.length-1].lastChild = true;
207 returnVal += filterDisplayClosure(_.extend(rules, {
212 "selected": rules
[all...]
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DPatternMatcher.java63 ArrayList rules = getPatternRules();
65 for(int i = 0; i < rules.size(); i++) {
66 PatternRule nextRule = (PatternRule) rules.get(i);
/forgerock/opendj2/src/server/org/opends/server/core/
H A DVirtualAttributeConfigManager.java72 * attribute rules.
74 private final ConcurrentMap<DN, VirtualAttributeRule> rules = field in class:VirtualAttributeConfigManager
161 rules.put(cfg.dn(), rule);
287 rules.put(configuration.dn(), rule);
312 VirtualAttributeRule rule = rules.remove(configuration.dn());
373 VirtualAttributeRule existingRule = rules.get(configuration.dn());
382 rules.remove(configuration.dn());
423 rules.put(configuration.dn(), rule);
497 * Retrieves the collection of registered virtual attribute rules.
499 * @return The collection of registered virtual attribute rules
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DVirtualAttributeConfigManager.java72 * attribute rules.
74 private final ConcurrentMap<DN, VirtualAttributeRule> rules = field in class:VirtualAttributeConfigManager
161 rules.put(cfg.dn(), rule);
287 rules.put(configuration.dn(), rule);
312 VirtualAttributeRule rule = rules.remove(configuration.dn());
373 VirtualAttributeRule existingRule = rules.get(configuration.dn());
382 rules.remove(configuration.dn());
423 rules.put(configuration.dn(), rule);
497 * Retrieves the collection of registered virtual attribute rules.
499 * @return The collection of registered virtual attribute rules
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DVirtualAttributeConfigManager.java71 * attribute rules.
73 private final ConcurrentMap<DN, VirtualAttributeRule> rules = new ConcurrentHashMap<>(); field in class:VirtualAttributeConfigManager
160 rules.put(cfg.dn(), rule);
276 rules.put(configuration.dn(), rule);
299 VirtualAttributeRule rule = rules.remove(configuration.dn());
358 VirtualAttributeRule existingRule = rules.get(configuration.dn());
367 rules.remove(configuration.dn());
405 rules.put(configuration.dn(), rule);
477 * Retrieves the collection of registered virtual attribute rules.
479 * @return The collection of registered virtual attribute rules
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DVirtualAttributeConfigManager.java89 // virtual attribute rules.
90 private ConcurrentHashMap<DN,VirtualAttributeRule> rules; field in class:VirtualAttributeConfigManager
99 rules = new ConcurrentHashMap<DN,VirtualAttributeRule>();
197 rules.put(cfg.dn(), rule);
337 rules.put(configuration.dn(), rule);
369 VirtualAttributeRule rule = rules.remove(configuration.dn());
446 VirtualAttributeRule existingRule = rules.get(configuration.dn());
455 rules.remove(configuration.dn());
520 rules.put(configuration.dn(), rule);
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DVirtualAttributeConfigManager.java89 // virtual attribute rules.
90 private ConcurrentHashMap<DN,VirtualAttributeRule> rules; field in class:VirtualAttributeConfigManager
99 rules = new ConcurrentHashMap<DN,VirtualAttributeRule>();
197 rules.put(cfg.dn(), rule);
337 rules.put(configuration.dn(), rule);
369 VirtualAttributeRule rule = rules.remove(configuration.dn());
446 VirtualAttributeRule existingRule = rules.get(configuration.dn());
455 rules.remove(configuration.dn());
520 rules.put(configuration.dn(), rule);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DVirtualAttributeConfigManager.java89 // virtual attribute rules.
90 private ConcurrentHashMap<DN,VirtualAttributeRule> rules; field in class:VirtualAttributeConfigManager
99 rules = new ConcurrentHashMap<DN,VirtualAttributeRule>();
197 rules.put(cfg.dn(), rule);
337 rules.put(configuration.dn(), rule);
369 VirtualAttributeRule rule = rules.remove(configuration.dn());
446 VirtualAttributeRule existingRule = rules.get(configuration.dn());
455 rules.remove(configuration.dn());
520 rules.put(configuration.dn(), rule);
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/conditions/
H A DManageRulesView.js129 * added to the root to give the users somewhere to drop rules into.
400 var rules = this.$el.find("ol#dropbox").nestingSortable("serialize").get(),
405 if (rules.length <= 1) {
406 this.data.entity[this.property] = _.isEmpty(rules[0]) ? null : rules[0];
408 operatorData[this.properties] = rules;
412 if (rules[0] && !_.isEmpty(rules[0])) {
414 this.data.entity[this.property][this.property] = rules[0];
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/authorization/policies/conditions/
H A DManageRulesView.js129 * added to the root to give the users somewhere to drop rules into.
407 var rules = this.$el.find("ol#dropbox").nestingSortable("serialize").get(),
412 if (rules.length <= 1) {
413 this.data.entity[this.property] = _.isEmpty(rules[0]) ? null : rules[0];
415 operatorData[this.properties] = rules;
419 if (rules[0] && !_.isEmpty(rules[0])) {
421 this.data.entity[this.property][this.property] = rules[0];
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/
H A Djersey-server-1.1.1-ea-SNAPSHOT.jar ... jersey/server/impl/uri/ com/sun/jersey/server/impl/uri/rules/ com/sun/jersey/server/impl/uri/rules/automata/ com/sun ...
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/
H A Djersey-server-1.1.1-ea-SNAPSHOT.jar ... jersey/server/impl/uri/ com/sun/jersey/server/impl/uri/rules/ com/sun/jersey/server/impl/uri/rules/automata/ com/sun ...
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicy.java58 * A policy contains a set of rules associated with a collection of
113 private Map rules = new HashMap(); field in class:Policy
552 return (new HashSet(rules.keySet()));
568 Rule rule = (Rule) rules.get(ruleName);
596 if (rules.containsKey(rule.getName())) {
600 } else if (rules.containsValue(rule)) {
606 rules.put(rule.getName(), rule);
629 rules.put(rule.getName(), rule);
644 return ((Rule) rules.remove(ruleName));
1345 if (rules
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicy.java58 * A policy contains a set of rules associated with a collection of
113 private Map rules = new HashMap(); field in class:Policy
552 return (new HashSet(rules.keySet()));
568 Rule rule = (Rule) rules.get(ruleName);
596 if (rules.containsKey(rule.getName())) {
600 } else if (rules.containsValue(rule)) {
606 rules.put(rule.getName(), rule);
629 rules.put(rule.getName(), rule);
644 return ((Rule) rules.remove(ruleName));
1345 if (rules
[all...]
/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java269 //Collation equality and Ordering matching rules share the same
2256 //Some rules might have been removed from the configuration.
2273 Set<ExtensibleMatchingRule> rules =
2281 rules.addAll(extensibleIndexes.getRules(id));
2284 if(rules.isEmpty())
2289 //If all the rules are part of the deletedRules, delete
2291 if(deletedRules.containsAll(rules))
2787 * This class manages all the configured extensible matching rules and
2798 * The mapping of Index ID and Set the matching rules.
2822 * @return A Set of extensible matching rules
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java269 //Collation equality and Ordering matching rules share the same
2253 //Some rules might have been removed from the configuration.
2270 Set<ExtensibleMatchingRule> rules =
2278 rules.addAll(extensibleIndexes.getRules(id));
2281 if(rules.isEmpty())
2286 //If all the rules are part of the deletedRules, delete
2288 if(deletedRules.containsAll(rules))
2784 * This class manages all the configured extensible matching rules and
2795 * The mapping of Index ID and Set the matching rules.
2819 * @return A Set of extensible matching rules
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java269 //Collation equality and Ordering matching rules share the same
2254 //Some rules might have been removed from the configuration.
2271 Set<ExtensibleMatchingRule> rules =
2279 rules.addAll(extensibleIndexes.getRules(id));
2282 if(rules.isEmpty())
2287 //If all the rules are part of the deletedRules, delete
2289 if(deletedRules.containsAll(rules))
2785 * This class manages all the configured extensible matching rules and
2796 * The mapping of Index ID and Set the matching rules.
2820 * @return A Set of extensible matching rules
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java269 //Collation equality and Ordering matching rules share the same
2256 //Some rules might have been removed from the configuration.
2273 Set<ExtensibleMatchingRule> rules =
2281 rules.addAll(extensibleIndexes.getRules(id));
2284 if(rules.isEmpty())
2289 //If all the rules are part of the deletedRules, delete
2291 if(deletedRules.containsAll(rules))
2787 * This class manages all the configured extensible matching rules and
2798 * The mapping of Index ID and Set the matching rules.
2822 * @return A Set of extensible matching rules
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DAttributeIndex.java269 //Collation equality and Ordering matching rules share the same
2253 //Some rules might have been removed from the configuration.
2270 Set<ExtensibleMatchingRule> rules =
2278 rules.addAll(extensibleIndexes.getRules(id));
2281 if(rules.isEmpty())
2286 //If all the rules are part of the deletedRules, delete
2288 if(deletedRules.containsAll(rules))
2784 * This class manages all the configured extensible matching rules and
2795 * The mapping of Index ID and Set the matching rules.
2819 * @return A Set of extensible matching rules
[all...]

Completed in 518 milliseconds

123