Uses of Enum Class
org.forgerock.opendj.ldap.ConditionResult
Package
Description
Classes and interfaces for core types including connections, entries, and
attributes.
Contains a number of API declarations for use throughout the Directory Server.
Contains various Directory Server backend implementations.
Contains the code for implementing Directory Server pluggable storage backends.
Contains the code for the Directory Server backend that provides an interface for executing administrative tasks.
-
Uses of ConditionResult in org.forgerock.opendj.ldap
Modifier and TypeMethodDescriptionstatic ConditionResult
ConditionResult.and()
Returns the logical AND of zero condition results, which is alwaysTRUE
.ConditionResult.and
(ConditionResult r) Returns the logical AND of the this condition result with the provided condition result, which isTRUE
if both of the condition results areTRUE
,FALSE
if at least one of them isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.and
(ConditionResult... results) Returns the logical AND of the provided condition results, which isTRUE
if all of the provided condition results areTRUE
,FALSE
if at least one of them isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.and
(ConditionResult r1, ConditionResult r2) Returns the logical AND of the provided condition results, which isTRUE
if both of the provided condition results areTRUE
,FALSE
if at least one of them isFALSE
, andUNDEFINED
otherwise.default ConditionResult
Indicates whether the provided attribute should be considered a match for this assertion value according to the matching rule.Assertion.matches
(ByteString normalizedAttributeValue) Indicates whether the provided attribute value should be considered a match for this assertion value according to the matching rule.Indicates whether thisFilter
matches the providedEntry
using the default schema.Indicates whether this filterMatcher
matches the providedEntry
.ConditionResult.not()
Returns the logical NOT of this condition result, which isTRUE
if this condition result isFALSE
,TRUE
if it isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.not
(ConditionResult r) Returns the logical NOT of the provided condition result, which isTRUE
if the provided condition result isFALSE
,TRUE
if it isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.or()
Returns the logical OR of zero condition results, which is alwaysFALSE
.ConditionResult.or
(ConditionResult r) Returns the logical OR of the this condition result with the provided condition result, which isFALSE
if both of the condition results areFALSE
,TRUE
if at least one of them isTRUE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.or
(ConditionResult... results) Returns the logical OR of the provided condition results, which isFALSE
if all of the provided condition results areFALSE
,TRUE
if at least one of them isTRUE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.or
(ConditionResult r1, ConditionResult r2) Returns the logical OR of the provided condition results, which isFALSE
if both of the provided condition results areFALSE
,TRUE
if at least one of them isTRUE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.valueOf
(boolean b) Returns the condition result which is equivalent to the provided boolean value.static ConditionResult
Returns the enum constant of this class with the specified name.static ConditionResult[]
ConditionResult.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionConditionResult.and
(ConditionResult r) Returns the logical AND of the this condition result with the provided condition result, which isTRUE
if both of the condition results areTRUE
,FALSE
if at least one of them isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.and
(ConditionResult... results) Returns the logical AND of the provided condition results, which isTRUE
if all of the provided condition results areTRUE
,FALSE
if at least one of them isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.and
(ConditionResult r1, ConditionResult r2) Returns the logical AND of the provided condition results, which isTRUE
if both of the provided condition results areTRUE
,FALSE
if at least one of them isFALSE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.not
(ConditionResult r) Returns the logical NOT of the provided condition result, which isTRUE
if the provided condition result isFALSE
,TRUE
if it isFALSE
, andUNDEFINED
otherwise.ConditionResult.or
(ConditionResult r) Returns the logical OR of the this condition result with the provided condition result, which isFALSE
if both of the condition results areFALSE
,TRUE
if at least one of them isTRUE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.or
(ConditionResult... results) Returns the logical OR of the provided condition results, which isFALSE
if all of the provided condition results areFALSE
,TRUE
if at least one of them isTRUE
, andUNDEFINED
otherwise.static ConditionResult
ConditionResult.or
(ConditionResult r1, ConditionResult r2) Returns the logical OR of the provided condition results, which isFALSE
if both of the provided condition results areFALSE
,TRUE
if at least one of them isTRUE
, andUNDEFINED
otherwise. -
Uses of ConditionResult in org.opends.server.api
Modifier and TypeFieldDescriptionprotected ConditionResult
AuthenticationPolicyState.isDisabled
A boolean indicating whether the account associated with this authentication state has been administratively disabled.Modifier and TypeMethodDescriptionprotected static ConditionResult
AuthenticationPolicyState.getBoolean
(Entry entry, String attributeName) A utility method which may be used by implementations in order to obtain the value of the specified attribute from the provided entry as a boolean.abstract ConditionResult
LocalBackend.hasSubordinates
(Dn entryDN) Indicates whether the requested entry has any subordinates. -
Uses of ConditionResult in org.opends.server.backends
Modifier and TypeMethodDescriptionChangelogBackend.hasSubordinates
(Dn entryDN) ConfigurationBackend.hasSubordinates
(Dn entryDN) LDIFBackend.hasSubordinates
(Dn entryDN) MemoryBackend.hasSubordinates
(Dn entryDN) MonitorBackend.hasSubordinates
(Dn entryDN) NullBackend.hasSubordinates
(Dn entryDN) RootDSEBackend.hasSubordinates
(Dn entryDN) SchemaBackend.hasSubordinates
(Dn entryDN) -
Uses of ConditionResult in org.opends.server.backends.pluggable
-
Uses of ConditionResult in org.opends.server.backends.task