Uses of Class
org.forgerock.opendj.ldap.ConditionResult
-
Packages that use ConditionResult Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.backends Contains various Directory Server backend implementations.org.opends.server.backends.pluggable Contains the code for implementing Directory Server pluggable storage backends.org.opends.server.backends.task Contains the code for the Directory Server backend that provides an interface for executing administrative tasks. -
-
Uses of ConditionResult in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return ConditionResult Modifier and Type Method Description static ConditionResult
ConditionResult. and()
Returns the logical AND of zero condition results, which is alwaysTRUE
.ConditionResult
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
Assertion. matches(Attribute attribute)
Indicates whether the provided attribute should be considered a match for this assertion value according to the matching rule.ConditionResult
Assertion. matches(ByteString normalizedAttributeValue)
Indicates whether the provided attribute value should be considered a match for this assertion value according to the matching rule.ConditionResult
Filter. matches(Entry entry)
Indicates whether thisFilter
matches the providedEntry
using the default schema.ConditionResult
Matcher. matches(Entry entry)
Indicates whether this filterMatcher
matches the providedEntry
.ConditionResult
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
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
ConditionResult. valueOf(String name)
Returns the enum constant of this type with the specified name.static ConditionResult[]
ConditionResult. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.opendj.ldap with parameters of type ConditionResult Modifier and Type Method Description ConditionResult
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.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
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
Fields in org.opends.server.api declared as ConditionResult Modifier and Type Field Description protected ConditionResult
AuthenticationPolicyState. isDisabled
A boolean indicating whether the account associated with this authentication state has been administratively disabled.Methods in org.opends.server.api that return ConditionResult Modifier and Type Method Description protected 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
Methods in org.opends.server.backends that return ConditionResult Modifier and Type Method Description ConditionResult
ChangelogBackend. hasSubordinates(Dn entryDN)
ConditionResult
ConfigurationBackend. hasSubordinates(Dn entryDN)
ConditionResult
LDIFBackend. hasSubordinates(Dn entryDN)
ConditionResult
MemoryBackend. hasSubordinates(Dn entryDN)
ConditionResult
MonitorBackend. hasSubordinates(Dn entryDN)
ConditionResult
NullBackend. hasSubordinates(Dn entryDN)
ConditionResult
RootDSEBackend. hasSubordinates(Dn entryDN)
ConditionResult
SchemaBackend. hasSubordinates(Dn entryDN)
-
Uses of ConditionResult in org.opends.server.backends.pluggable
Methods in org.opends.server.backends.pluggable that return ConditionResult Modifier and Type Method Description ConditionResult
BackendImpl. hasSubordinates(Dn entryDN)
-
Uses of ConditionResult in org.opends.server.backends.task
Methods in org.opends.server.backends.task that return ConditionResult Modifier and Type Method Description ConditionResult
TaskBackend. hasSubordinates(Dn entryDN)
-