| /forgerock/opendj-v3/opendj-config/src/main/java/org/forgerock/opendj/config/conditions/ |
| H A D | NOTCondition.java | 38 * A condition which evaluates to <code>true</code> if the sub-condition is 39 * <code>false</code>, or <code>false</code> if the sub-condition is 44 /** The single sub-condition. */ 45 private final Condition condition; field in class:NOTCondition 48 * Creates a new logical NOT condition with the provided sub-condition. 50 * @param condition 51 * The sub-condition which will be inverted. 53 public NOTCondition(Condition condition) { argument [all...] |
| /forgerock/opendj2/src/server/org/opends/server/admin/condition/ |
| H A D | NOTCondition.java | 26 package org.opends.server.admin.condition; 42 * A condition which evaluates to <code>true</code> if the 43 * sub-condition is <code>false</code>, or <code>false</code> if 44 * the sub-condition is <code>true</code>. 48 // The single sub-condition. 49 private final Condition condition; field in class:NOTCondition 54 * Creates a new logical NOT condition with the provided 55 * sub-condition. 57 * @param condition 58 * The sub-condition whic 60 NOTCondition(Condition condition) argument [all...] |
| H A D | ANDCondition.java | 26 package org.opends.server.admin.condition; 45 * A condition which evaluates to <code>true</code> if and only if 56 * Creates a new logical AND condition with the provided 76 for (Condition condition : conditions) { 77 if (!condition.evaluate(context, managedObject)) { 91 for (Condition condition : conditions) { 92 if (!condition.evaluate(managedObject)) { 106 for (Condition condition : conditions) { 107 condition.initialize(d);
|
| H A D | ORCondition.java | 26 package org.opends.server.admin.condition; 45 * A condition which evaluates to <code>false</code> if and only if 56 * Creates a new logical OR condition with the provided 76 for (Condition condition : conditions) { 77 if (condition.evaluate(context, managedObject)) { 91 for (Condition condition : conditions) { 92 if (condition.evaluate(managedObject)) { 106 for (Condition condition : conditions) { 107 condition.initialize(d);
|
| H A D | package-info.java | 35 package org.opends.server.admin.condition;
|
| /forgerock/opendj-b2.6/src/server/org/opends/server/admin/condition/ |
| H A D | NOTCondition.java | 27 package org.opends.server.admin.condition; 43 * A condition which evaluates to <code>true</code> if the 44 * sub-condition is <code>false</code>, or <code>false</code> if 45 * the sub-condition is <code>true</code>. 49 // The single sub-condition. 50 private final Condition condition; field in class:NOTCondition 55 * Creates a new logical NOT condition with the provided 56 * sub-condition. 58 * @param condition 59 * The sub-condition whic 61 NOTCondition(Condition condition) argument [all...] |
| H A D | ANDCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>true</code> if and only if 57 * Creates a new logical AND condition with the provided 77 for (Condition condition : conditions) { 78 if (!condition.evaluate(context, managedObject)) { 92 for (Condition condition : conditions) { 93 if (!condition.evaluate(managedObject)) { 107 for (Condition condition : conditions) { 108 condition.initialize(d);
|
| H A D | ORCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>false</code> if and only if 57 * Creates a new logical OR condition with the provided 77 for (Condition condition : conditions) { 78 if (condition.evaluate(context, managedObject)) { 92 for (Condition condition : conditions) { 93 if (condition.evaluate(managedObject)) { 107 for (Condition condition : conditions) { 108 condition.initialize(d);
|
| H A D | package-info.java | 36 package org.opends.server.admin.condition;
|
| /forgerock/opendj2.6.2/src/server/org/opends/server/admin/condition/ |
| H A D | NOTCondition.java | 27 package org.opends.server.admin.condition; 43 * A condition which evaluates to <code>true</code> if the 44 * sub-condition is <code>false</code>, or <code>false</code> if 45 * the sub-condition is <code>true</code>. 49 // The single sub-condition. 50 private final Condition condition; field in class:NOTCondition 55 * Creates a new logical NOT condition with the provided 56 * sub-condition. 58 * @param condition 59 * The sub-condition whic 61 NOTCondition(Condition condition) argument [all...] |
| H A D | ANDCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>true</code> if and only if 57 * Creates a new logical AND condition with the provided 77 for (Condition condition : conditions) { 78 if (!condition.evaluate(context, managedObject)) { 92 for (Condition condition : conditions) { 93 if (!condition.evaluate(managedObject)) { 107 for (Condition condition : conditions) { 108 condition.initialize(d);
|
| H A D | ORCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>false</code> if and only if 57 * Creates a new logical OR condition with the provided 77 for (Condition condition : conditions) { 78 if (condition.evaluate(context, managedObject)) { 92 for (Condition condition : conditions) { 93 if (condition.evaluate(managedObject)) { 107 for (Condition condition : conditions) { 108 condition.initialize(d);
|
| /forgerock/opendj2-hg/src/server/org/opends/server/admin/condition/ |
| H A D | NOTCondition.java | 26 package org.opends.server.admin.condition; 42 * A condition which evaluates to <code>true</code> if the 43 * sub-condition is <code>false</code>, or <code>false</code> if 44 * the sub-condition is <code>true</code>. 48 // The single sub-condition. 49 private final Condition condition; field in class:NOTCondition 54 * Creates a new logical NOT condition with the provided 55 * sub-condition. 57 * @param condition 58 * The sub-condition whic 60 NOTCondition(Condition condition) argument [all...] |
| H A D | ANDCondition.java | 26 package org.opends.server.admin.condition; 45 * A condition which evaluates to <code>true</code> if and only if 56 * Creates a new logical AND condition with the provided 76 for (Condition condition : conditions) { 77 if (!condition.evaluate(context, managedObject)) { 91 for (Condition condition : conditions) { 92 if (!condition.evaluate(managedObject)) { 106 for (Condition condition : conditions) { 107 condition.initialize(d);
|
| H A D | ORCondition.java | 26 package org.opends.server.admin.condition; 45 * A condition which evaluates to <code>false</code> if and only if 56 * Creates a new logical OR condition with the provided 76 for (Condition condition : conditions) { 77 if (condition.evaluate(context, managedObject)) { 91 for (Condition condition : conditions) { 92 if (condition.evaluate(managedObject)) { 106 for (Condition condition : conditions) { 107 condition.initialize(d);
|
| /forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/condition/ |
| H A D | NOTCondition.java | 27 package org.opends.server.admin.condition; 43 * A condition which evaluates to <code>true</code> if the 44 * sub-condition is <code>false</code>, or <code>false</code> if 45 * the sub-condition is <code>true</code>. 49 // The single sub-condition. 50 private final Condition condition; field in class:NOTCondition 55 * Creates a new logical NOT condition with the provided 56 * sub-condition. 58 * @param condition 59 * The sub-condition whic 61 NOTCondition(Condition condition) argument [all...] |
| H A D | ANDCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>true</code> if and only if 57 * Creates a new logical AND condition with the provided 77 for (Condition condition : conditions) { 78 if (!condition.evaluate(context, managedObject)) { 92 for (Condition condition : conditions) { 93 if (!condition.evaluate(managedObject)) { 107 for (Condition condition : conditions) { 108 condition.initialize(d);
|
| H A D | ORCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>false</code> if and only if 57 * Creates a new logical OR condition with the provided 77 for (Condition condition : conditions) { 78 if (condition.evaluate(context, managedObject)) { 92 for (Condition condition : conditions) { 93 if (condition.evaluate(managedObject)) { 107 for (Condition condition : conditions) { 108 condition.initialize(d);
|
| /forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/admin/condition/ |
| H A D | NOTCondition.java | 27 package org.opends.server.admin.condition; 43 * A condition which evaluates to <code>true</code> if the 44 * sub-condition is <code>false</code>, or <code>false</code> if 45 * the sub-condition is <code>true</code>. 49 /** The single sub-condition. */ 50 private final Condition condition; field in class:NOTCondition 55 * Creates a new logical NOT condition with the provided 56 * sub-condition. 58 * @param condition 59 * The sub-condition whic 61 NOTCondition(Condition condition) argument [all...] |
| H A D | ANDCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>true</code> if and only if 57 * Creates a new logical AND condition with the provided 75 for (Condition condition : conditions) { 76 if (!condition.evaluate(context, managedObject)) { 88 for (Condition condition : conditions) { 89 if (!condition.evaluate(managedObject)) { 101 for (Condition condition : conditions) { 102 condition.initialize(d);
|
| H A D | ORCondition.java | 27 package org.opends.server.admin.condition; 46 * A condition which evaluates to <code>false</code> if and only if 57 * Creates a new logical OR condition with the provided 75 for (Condition condition : conditions) { 76 if (condition.evaluate(context, managedObject)) { 88 for (Condition condition : conditions) { 89 if (condition.evaluate(managedObject)) { 101 for (Condition condition : conditions) { 102 condition.initialize(d);
|
| /forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/property/ |
| H A D | PolicyPropertyXMLBuilder.java | 42 private Condition condition; field in class:PolicyPropertyXMLBuilder 47 * @param condition Condition object for getting property value and syntax. 50 public PolicyPropertyXMLBuilder(Condition condition, AMModel model) { argument 52 this.condition = condition; 56 return condition.getPropertyNames(); 60 return "policy.condition.section.label.values"; 64 return condition.getPropertySyntax(propertyName); 70 return condition.getDisplayName(propertyName, locale); 76 return condition [all...] |
| /forgerock/openam/openam-console/src/main/java/com/sun/identity/console/property/ |
| H A D | PolicyPropertyXMLBuilder.java | 42 private Condition condition; field in class:PolicyPropertyXMLBuilder 47 * @param condition Condition object for getting property value and syntax. 50 public PolicyPropertyXMLBuilder(Condition condition, AMModel model) { argument 52 this.condition = condition; 56 return condition.getPropertyNames(); 60 return "policy.condition.section.label.values"; 64 return condition.getPropertySyntax(propertyName); 70 return condition.getDisplayName(propertyName, locale); 76 return condition [all...] |
| /forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/conditions/environment/ |
| H A D | LDAPFilterConditionTest.java | 15 private LDAPFilterCondition condition; field in class:LDAPFilterConditionTest 23 condition = new LDAPFilterCondition(); 31 condition.setLdapFilter(ldapFilter); 35 copy.setState(condition.getState()); 38 assertThat(copy.getLdapFilter()).isEqualTo(condition.getLdapFilter());
|
| /forgerock/openam/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/conditions/environment/ |
| H A D | LDAPFilterConditionTest.java | 15 private LDAPFilterCondition condition; field in class:LDAPFilterConditionTest 23 condition = new LDAPFilterCondition(); 31 condition.setLdapFilter(ldapFilter); 35 copy.setState(condition.getState()); 38 assertThat(copy.getLdapFilter()).isEqualTo(condition.getLdapFilter());
|