Searched defs:or (Results 1 - 25 of 39) sorted by relevance

12

/forgerock/openidm-v4/openidm-repo/src/main/java/org/forgerock/openidm/repo/util/
H A DClause.java27 * Model a where-clause or where-clause constituent.
54 Clause or(String clause); method in interface:Clause
62 Clause or(Clause clause); method in interface:Clause
H A DClauses.java41 * the {@link Clause} interface's and(), or(), and not() methods.
50 public Clause or(String clause) { method in class:Clauses.AbstractClause
51 return or(where(clause));
53 public Clause or(Clause or) { argument
54 return new OrClause(this, or);
80 * An abstract composite clause implementation to join multiple clauses using AND or OR.
123 public Clause or(Clause clause) { method in class:Clauses.OrClause
148 public OrClause or(Clause clause) { method in class:Clauses.AndClause
213 * @return a composite "or" claus
215 public static Clause or(Iterable<Clause> clauses) { method in class:Clauses
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/condition/
H A DConditions.java10 * or http://forgerock.org/license/CDDLv1.0.html.
42 * or return conditions.
176 return or(not(premise), implication);
199 * sub-condition is <code>false</code>, or <code>false</code>
205 * if the sub-condition is <code>false</code>, or
225 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/condition/
H A DConditions.java11 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
43 * or return conditions.
177 return or(not(premise), implication);
200 * sub-condition is <code>false</code>, or <code>false</code>
206 * if the sub-condition is <code>false</code>, or
226 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/condition/
H A DConditions.java11 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
43 * or return conditions.
177 return or(not(premise), implication);
200 * sub-condition is <code>false</code>, or <code>false</code>
206 * if the sub-condition is <code>false</code>, or
226 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/opendj2-hg/src/server/org/opends/server/admin/condition/
H A DConditions.java10 * or http://forgerock.org/license/CDDLv1.0.html.
42 * or return conditions.
176 return or(not(premise), implication);
199 * sub-condition is <code>false</code>, or <code>false</code>
205 * if the sub-condition is <code>false</code>, or
225 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/condition/
H A DConditions.java11 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
43 * or return conditions.
177 return or(not(premise), implication);
200 * sub-condition is <code>false</code>, or <code>false</code>
206 * if the sub-condition is <code>false</code>, or
226 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/condition/
H A DConditions.java10 * or http://forgerock.org/license/CDDLv1.0.html.
43 * or return conditions.
165 return or(not(premise), implication);
188 * sub-condition is <code>false</code>, or <code>false</code>
194 * if the sub-condition is <code>false</code>, or
214 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/conditions/
H A DConditions.java10 * or http://forgerock.org/license/CDDLv1.0.html.
37 * This class consists exclusively of static methods that operate on or return
131 return or(not(premise), implication);
149 * sub-condition is <code>false</code>, or <code>false</code> if the
155 * sub-condition is <code>false</code>, or <code>false</code> if the
171 public static Condition or(Condition... conditions) { method in class:Conditions
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/api/filter/
H A DTokenFilterBuilder.java60 public FilterAttributeBuilder or() { method in class:TokenFilterBuilder
85 * be followed by {@link #or()}, {@link #and()}, or
120 * Used when the {@link TokenFilterBuilder} is in either {@link #and()} or {@link #or()} mode.
134 * and so will depend on the preceding call to either {@link #and()} or {@link #or}.
162 tokenFilter.setQuery(type == Type.AND ? QueryFilter.and(criteria) : QueryFilter.or(criteria));
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/api/filter/
H A DTokenFilterBuilder.java60 public FilterAttributeBuilder or() { method in class:TokenFilterBuilder
85 * be followed by {@link #or()}, {@link #and()}, or
144 * Used when the {@link TokenFilterBuilder} is in either {@link #and()} or {@link #or()} mode.
158 * and so will depend on the preceding call to either {@link #and()} or {@link #or}.
200 tokenFilter.setQuery(type == Type.AND ? QueryFilter.and(criteria) : QueryFilter.or(criteria));
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTests.java11 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
260 private static final String BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN = or(BIND_RULE_IP_NOT_LOCALHOST, BIND_RULE_USERDN_ADMIN);
262 private static final String BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL = and(BIND_RULE_USERDN_ADMIN, or(BIND_RULE_AUTHMETHOD_SSL, BIND_RULE_DNS_LOCALHOST));
434 buildAciValue("name", "deny read to uid or cn rdn", "targetattr", "*", "deny(read)", BIND_RULE_USERDN_UID_OR_CN_RDN);
515 buildAciValue("name", "deny if not localhost or admin", "targetattr", "*", "deny(all)", BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN);
519 buildAciValue("name", "deny if admin and localhost or ssl", "targetattr", "*", "deny(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
522 buildAciValue("name", "allow if admin and localhost or ssl", "targetattr", "*", "allow(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
768 // is a - or a \" characer. X and \' imply that it was previously tested and
857 // is only removed if the corresponding mask character is a - or \"
1468 // * Whether the entries were created with the ACIs or the
2720 private static String or(String bindRule1, String bindRule2) { method in class:AciTests
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTests.java10 * or http://forgerock.org/license/CDDLv1.0.html.
250 private static final String BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN = or(BIND_RULE_IP_NOT_LOCALHOST, BIND_RULE_USERDN_ADMIN);
252 private static final String BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL = and(BIND_RULE_USERDN_ADMIN, or(BIND_RULE_AUTHMETHOD_SSL, BIND_RULE_DNS_LOCALHOST));
424 buildAciValue("name", "deny read to uid or cn rdn", "targetattr", "*", "deny(read)", BIND_RULE_USERDN_UID_OR_CN_RDN);
505 buildAciValue("name", "deny if not localhost or admin", "targetattr", "*", "deny(all)", BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN);
509 buildAciValue("name", "deny if admin and localhost or ssl", "targetattr", "*", "deny(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
512 buildAciValue("name", "allow if admin and localhost or ssl", "targetattr", "*", "allow(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
758 // is a - or a \" characer. X and \' imply that it was previously tested and
847 // is only removed if the corresponding mask character is a - or \"
1457 // * Whether the entries were created with the ACIs or the
2652 private static String or(String bindRule1, String bindRule2) { method in class:AciTests
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTests.java11 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
260 private static final String BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN = or(BIND_RULE_IP_NOT_LOCALHOST, BIND_RULE_USERDN_ADMIN);
262 private static final String BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL = and(BIND_RULE_USERDN_ADMIN, or(BIND_RULE_AUTHMETHOD_SSL, BIND_RULE_DNS_LOCALHOST));
434 buildAciValue("name", "deny read to uid or cn rdn", "targetattr", "*", "deny(read)", BIND_RULE_USERDN_UID_OR_CN_RDN);
515 buildAciValue("name", "deny if not localhost or admin", "targetattr", "*", "deny(all)", BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN);
519 buildAciValue("name", "deny if admin and localhost or ssl", "targetattr", "*", "deny(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
522 buildAciValue("name", "allow if admin and localhost or ssl", "targetattr", "*", "allow(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
768 // is a - or a \" characer. X and \' imply that it was previously tested and
857 // is only removed if the corresponding mask character is a - or \"
1468 // * Whether the entries were created with the ACIs or the
2720 private static String or(String bindRule1, String bindRule2) { method in class:AciTests
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTests.java10 * or http://forgerock.org/license/CDDLv1.0.html.
250 private static final String BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN = or(BIND_RULE_IP_NOT_LOCALHOST, BIND_RULE_USERDN_ADMIN);
252 private static final String BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL = and(BIND_RULE_USERDN_ADMIN, or(BIND_RULE_AUTHMETHOD_SSL, BIND_RULE_DNS_LOCALHOST));
424 buildAciValue("name", "deny read to uid or cn rdn", "targetattr", "*", "deny(read)", BIND_RULE_USERDN_UID_OR_CN_RDN);
505 buildAciValue("name", "deny if not localhost or admin", "targetattr", "*", "deny(all)", BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN);
509 buildAciValue("name", "deny if admin and localhost or ssl", "targetattr", "*", "deny(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
512 buildAciValue("name", "allow if admin and localhost or ssl", "targetattr", "*", "allow(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
758 // is a - or a \" characer. X and \' imply that it was previously tested and
847 // is only removed if the corresponding mask character is a - or \"
1457 // * Whether the entries were created with the ACIs or the
2652 private static String or(String bindRule1, String bindRule2) { method in class:AciTests
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/authorization/dseecompat/
H A DAciTests.java11 * or https://OpenDS.dev.java.net/OpenDS.LICENSE.
260 private static final String BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN = or(BIND_RULE_IP_NOT_LOCALHOST, BIND_RULE_USERDN_ADMIN);
262 private static final String BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL = and(BIND_RULE_USERDN_ADMIN, or(BIND_RULE_AUTHMETHOD_SSL, BIND_RULE_DNS_LOCALHOST));
434 buildAciValue("name", "deny read to uid or cn rdn", "targetattr", "*", "deny(read)", BIND_RULE_USERDN_UID_OR_CN_RDN);
515 buildAciValue("name", "deny if not localhost or admin", "targetattr", "*", "deny(all)", BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN);
519 buildAciValue("name", "deny if admin and localhost or ssl", "targetattr", "*", "deny(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
522 buildAciValue("name", "allow if admin and localhost or ssl", "targetattr", "*", "allow(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
768 // is a - or a \" characer. X and \' imply that it was previously tested and
857 // is only removed if the corresponding mask character is a - or \"
1468 // * Whether the entries were created with the ACIs or the
2720 private static String or(String bindRule1, String bindRule2) { method in class:AciTests
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/authorization/dseecompat/
H A DAciTests.java10 * or http://forgerock.org/license/CDDLv1.0.html.
257 private static final String BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN = or(BIND_RULE_IP_NOT_LOCALHOST, BIND_RULE_USERDN_ADMIN);
259 private static final String BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL = and(BIND_RULE_USERDN_ADMIN, or(BIND_RULE_AUTHMETHOD_SSL, BIND_RULE_DNS_LOCALHOST));
429 buildAciValue("name", "deny read to uid or cn rdn", "targetattr", "*", "deny(read)", BIND_RULE_USERDN_UID_OR_CN_RDN);
510 buildAciValue("name", "deny if not localhost or admin", "targetattr", "*", "deny(all)", BIND_RULE_IP_NOT_LOCALHOST_OR_USERDN_ADMIN);
514 buildAciValue("name", "deny if admin and localhost or ssl", "targetattr", "*", "deny(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
517 buildAciValue("name", "allow if admin and localhost or ssl", "targetattr", "*", "allow(all)", BIND_RULE_ADMIN_AND_LOCALHOST_OR_SSL);
764 * is a - or a \" character. X and \' imply that it was previously tested and
856 * is only removed if the corresponding mask character is a - or \"
1467 // * Whether the entries were created with the ACIs or the
2648 private static String or(String bindRule1, String bindRule2) { method in class:AciTests
[all...]
/forgerock/opendj-b2.6/ext/svnkit/
H A Dantlr-runtime.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dantlr-runtime-3.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dantlr-runtime.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dantlr-runtime-3.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/runtime/ org/antlr/runtime/misc/ ...
/forgerock/opendj2/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj2.6.2/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj2-hg/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...

Completed in 233 milliseconds

12