Searched defs:isDisabled (Results 1 - 25 of 26) sorted by relevance

12

/forgerock/opendj2/src/server/org/opends/server/api/
H A DAuthenticationPolicyState.java258 protected ConditionResult isDisabled = ConditionResult.UNDEFINED; field in class:AuthenticationPolicyState
314 public boolean isDisabled() method in class:AuthenticationPolicyState
320 isDisabled = getBoolean(userEntry, type);
329 isDisabled = ConditionResult.TRUE;
341 if (isDisabled == ConditionResult.UNDEFINED)
343 isDisabled = ConditionResult.FALSE;
356 .getDN().toString(), ((isDisabled == ConditionResult.TRUE) ? " is"
360 return isDisabled == ConditionResult.TRUE;
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DAuthenticationPolicyState.java259 protected ConditionResult isDisabled = ConditionResult.UNDEFINED; field in class:AuthenticationPolicyState
315 public boolean isDisabled() method in class:AuthenticationPolicyState
321 isDisabled = getBoolean(userEntry, type);
330 isDisabled = ConditionResult.TRUE;
342 if (isDisabled == ConditionResult.UNDEFINED)
344 isDisabled = ConditionResult.FALSE;
357 .getDN().toString(), ((isDisabled == ConditionResult.TRUE) ? " is"
361 return isDisabled == ConditionResult.TRUE;
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DAuthenticationPolicyState.java259 protected ConditionResult isDisabled = ConditionResult.UNDEFINED; field in class:AuthenticationPolicyState
315 public boolean isDisabled() method in class:AuthenticationPolicyState
321 isDisabled = getBoolean(userEntry, type);
330 isDisabled = ConditionResult.TRUE;
342 if (isDisabled == ConditionResult.UNDEFINED)
344 isDisabled = ConditionResult.FALSE;
357 .getDN().toString(), ((isDisabled == ConditionResult.TRUE) ? " is"
361 return isDisabled == ConditionResult.TRUE;
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DAuthenticationPolicyState.java258 protected ConditionResult isDisabled = ConditionResult.UNDEFINED; field in class:AuthenticationPolicyState
314 public boolean isDisabled() method in class:AuthenticationPolicyState
320 isDisabled = getBoolean(userEntry, type);
329 isDisabled = ConditionResult.TRUE;
341 if (isDisabled == ConditionResult.UNDEFINED)
343 isDisabled = ConditionResult.FALSE;
356 .getDN().toString(), ((isDisabled == ConditionResult.TRUE) ? " is"
360 return isDisabled == ConditionResult.TRUE;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DAuthenticationPolicyState.java259 protected ConditionResult isDisabled = ConditionResult.UNDEFINED; field in class:AuthenticationPolicyState
315 public boolean isDisabled() method in class:AuthenticationPolicyState
321 isDisabled = getBoolean(userEntry, type);
330 isDisabled = ConditionResult.TRUE;
342 if (isDisabled == ConditionResult.UNDEFINED)
344 isDisabled = ConditionResult.FALSE;
357 .getDN().toString(), ((isDisabled == ConditionResult.TRUE) ? " is"
361 return isDisabled == ConditionResult.TRUE;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DAuthenticationPolicyState.java234 protected ConditionResult isDisabled = ConditionResult.UNDEFINED; field in class:AuthenticationPolicyState
290 public boolean isDisabled() method in class:AuthenticationPolicyState
295 isDisabled = getBoolean(userEntry, type);
303 isDisabled = ConditionResult.TRUE;
307 if (isDisabled == ConditionResult.UNDEFINED)
309 isDisabled = ConditionResult.FALSE;
318 final boolean result = isDisabled == ConditionResult.TRUE;
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java59 private final boolean isDisabled; field in class:AuthenticationPolicyTestCase.MockPolicy
112 * @param isDisabled
113 * The result to return from {@code isDisabled}.
115 public MockPolicy(boolean matches, boolean isDisabled) argument
118 this.isDisabled = isDisabled;
157 public boolean isDisabled()
159 return MockPolicy.this.isDisabled;
247 * @param isDisabled
248 * The result to return from {@code isDisabled}
253 testSimpleBind(boolean matches, boolean isDisabled) argument
323 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java58 private final boolean isDisabled; field in class:AuthenticationPolicyTestCase.MockPolicy
111 * @param isDisabled
112 * The result to return from {@code isDisabled}.
114 public MockPolicy(boolean matches, boolean isDisabled) argument
117 this.isDisabled = isDisabled;
156 public boolean isDisabled()
158 return MockPolicy.this.isDisabled;
246 * @param isDisabled
247 * The result to return from {@code isDisabled}
252 testSimpleBind(boolean matches, boolean isDisabled) argument
322 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java59 private final boolean isDisabled; field in class:AuthenticationPolicyTestCase.MockPolicy
112 * @param isDisabled
113 * The result to return from {@code isDisabled}.
115 public MockPolicy(boolean matches, boolean isDisabled) argument
118 this.isDisabled = isDisabled;
157 public boolean isDisabled()
159 return MockPolicy.this.isDisabled;
247 * @param isDisabled
248 * The result to return from {@code isDisabled}
253 testSimpleBind(boolean matches, boolean isDisabled) argument
323 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java58 private final boolean isDisabled; field in class:AuthenticationPolicyTestCase.MockPolicy
111 * @param isDisabled
112 * The result to return from {@code isDisabled}.
114 public MockPolicy(boolean matches, boolean isDisabled) argument
117 this.isDisabled = isDisabled;
156 public boolean isDisabled()
158 return MockPolicy.this.isDisabled;
246 * @param isDisabled
247 * The result to return from {@code isDisabled}
252 testSimpleBind(boolean matches, boolean isDisabled) argument
322 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java59 private final boolean isDisabled; field in class:AuthenticationPolicyTestCase.MockPolicy
112 * @param isDisabled
113 * The result to return from {@code isDisabled}.
115 public MockPolicy(boolean matches, boolean isDisabled) argument
118 this.isDisabled = isDisabled;
157 public boolean isDisabled()
159 return MockPolicy.this.isDisabled;
247 * @param isDisabled
248 * The result to return from {@code isDisabled}
253 testSimpleBind(boolean matches, boolean isDisabled) argument
323 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/api/
H A DAuthenticationPolicyTestCase.java60 private final boolean isDisabled; field in class:AuthenticationPolicyTestCase.MockPolicy
108 * @param isDisabled
109 * The result to return from {@code isDisabled}.
111 public MockPolicy(boolean matches, boolean isDisabled) argument
114 this.isDisabled = isDisabled;
145 public boolean isDisabled()
147 return MockPolicy.this.isDisabled;
229 * @param isDisabled
230 * The result to return from {@code isDisabled}
235 testSimpleBind(boolean matches, boolean isDisabled) argument
305 testSASLPLAINBind(boolean matches, boolean isDisabled) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DPasswordPolicyState.java485 * @param isDisabled
489 public void setDisabled(boolean isDisabled) argument
494 userDNString, isDisabled);
498 if (isDisabled == isDisabled())
503 this.isDisabled = ConditionResult.inverseOf(this.isDisabled);
508 if (isDisabled)
H A DDirectoryServer.java7668 public static boolean isDisabled(Privilege privilege) method in class:DirectoryServer
/forgerock/opendj2/src/server/org/opends/server/core/
H A DPasswordPolicyState.java536 * @param isDisabled
540 public void setDisabled(boolean isDisabled) argument
545 userDNString, isDisabled);
549 if (isDisabled == isDisabled())
554 this.isDisabled = ConditionResult.inverseOf(this.isDisabled);
559 if (isDisabled)
H A DDirectoryServer.java7285 public static boolean isDisabled(Privilege privilege) method in class:DirectoryServer
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DPasswordPolicyState.java485 * @param isDisabled
489 public void setDisabled(boolean isDisabled) argument
494 userDNString, isDisabled);
498 if (isDisabled == isDisabled())
503 this.isDisabled = ConditionResult.inverseOf(this.isDisabled);
508 if (isDisabled)
H A DDirectoryServer.java7668 public static boolean isDisabled(Privilege privilege) method in class:DirectoryServer
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DPasswordPolicyState.java485 * @param isDisabled
489 public void setDisabled(boolean isDisabled) argument
494 userDNString, isDisabled);
498 if (isDisabled == isDisabled())
503 this.isDisabled = ConditionResult.inverseOf(this.isDisabled);
508 if (isDisabled)
H A DDirectoryServer.java7896 public static boolean isDisabled(Privilege privilege) method in class:DirectoryServer
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DPasswordPolicyState.java536 * @param isDisabled
540 public void setDisabled(boolean isDisabled) argument
545 userDNString, isDisabled);
549 if (isDisabled == isDisabled())
554 this.isDisabled = ConditionResult.inverseOf(this.isDisabled);
559 if (isDisabled)
H A DDirectoryServer.java7285 public static boolean isDisabled(Privilege privilege) method in class:DirectoryServer
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DPasswordPolicyState.java464 * @param isDisabled
467 public void setDisabled(boolean isDisabled) argument
471 logger.trace("Updating user %s to set the disabled flag to %b", userDNString, isDisabled);
475 if (isDisabled == isDisabled())
480 this.isDisabled = ConditionResult.not(this.isDisabled);
482 if (isDisabled)
H A DDirectoryServer.java5726 public static boolean isDisabled(Privilege privilege) method in class:DirectoryServer
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...

Completed in 319 milliseconds

12