Uses of Class
org.forgerock.opendj.config.ValueOrExpression
-
Packages that use ValueOrExpression Package Description org.forgerock.opendj.config Common administration classes.org.forgerock.opendj.config.client Common client-side administration classes.org.forgerock.opendj.config.client.spi Client side driver implementation interfaces.org.forgerock.opendj.server.config.client Provides client-side interfaces for querying and managing the Core directory server administrative components.org.forgerock.opendj.setup.model Contains code of the opendj setup model. -
-
Uses of ValueOrExpression in org.forgerock.opendj.config
Methods in org.forgerock.opendj.config that return ValueOrExpression Modifier and Type Method Description ValueOrExpression<T>PropertyDefinition. decodeValue(String value)Parse and validate a string representation of a property value.ValueOrExpression<T>PropertyDefinition. decodeValueOrExpression(String value)Parse and validate a string representation of a property value ot expression.static <T> ValueOrExpression<T>ValueOrExpression. newExpression(String expression)Creates an expression.static ValueOrExpression<String>ValueOrExpression. newFileExpression(String filePath)Creates an expression corresponding to a file path.static <T> ValueOrExpression<T>ValueOrExpression. newValue(T value)Creates a value.static <T> ValueOrExpression<T>ValueOrExpression. newValueOrNull(T value)Creates a new ValueOrExpression that wraps the provided value if the value is notnull.Methods in org.forgerock.opendj.config that return types with arguments of type ValueOrExpression Modifier and Type Method Description static <T> Collection<ValueOrExpression<T>>Expressions. asSetOfValueOrExpression(Collection<T> values)Returns a collection of wrapped values from the provided collection of values.static <T> Collection<ValueOrExpression<T>>Expressions. asSetOfValueOrExpression(T... values)Returns a collection of wrapped values from the provided values.DefaultBehaviorProvider<ValueOrExpression<T>>PropertyDefinition. getDefaultBehaviorProvider()Get the default behavior provider associated with this property definition.<T> SortedSet<ValueOrExpression<T>>DefaultManagedObject. getPropertyValues(PropertyDefinition<T> pd)Gets a mutable copy of the set of property values for the specified property.<T> Collection<ValueOrExpression<T>>PropertyProvider. getPropertyValues(PropertyDefinition<T> d)Get the property values associated with the specified property definition.Methods in org.forgerock.opendj.config with parameters of type ValueOrExpression Modifier and Type Method Description <R,P>
RAciPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<String> value, P p)<R,P>
RAggregationPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<String> value, P p)<R,P>
RAttributeTypePropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<AttributeType> value, P p)<R,P>
RBooleanPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<Boolean> value, P p)<R,P>
RClassPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<String> value, P p)<R,P>
RDnPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<Dn> value, P p)<R,P>
RDurationPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<Long> value, P p)<R,P>
REnumPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<E> value, P p)<R,P>
RHostPortPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<com.forgerock.opendj.util.HostPort> value, P p)<R,P>
RHostPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<com.forgerock.opendj.util.Host> value, P p)<R,P>
RIntegerPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<Integer> value, P p)<R,P>
RIpAddressMaskPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<AddressMask> value, P p)abstract <R,P>
RPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<T> value, P p)Apply a visitor to a property value associated with this property definition.<R,P>
RSizePropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<Long> value, P p)<R,P>
RStringPropertyDefinition. accept(PropertyValueVisitor<R,P> v, ValueOrExpression<String> value, P p)intPropertyDefinition. compare(ValueOrExpression<T> o1, ValueOrExpression<T> o2)Compares two property values for order.StringPropertyDefinition. encodeValue(ValueOrExpression<T> value)Encode the provided property value into its string representation.StringPropertyDefinition. normalizeValue(ValueOrExpression<T> valueOrExpression)Get a normalized string representation of a property value.voidPropertyDefinition. validateValue(ValueOrExpression<T> valueOrExpression)Determine if the provided property value is valid according to this property definition.RPropertyValueVisitor. visitAci(AciPropertyDefinition pd, ValueOrExpression<String> v, P p)Visit a dseecompat ACI.<C extends ConfigurationClient,S extends Configuration>
RPropertyValueVisitor. visitAggregation(AggregationPropertyDefinition<C,S> pd, ValueOrExpression<String> v, P p)Visit an aggregation property value.RPropertyValueVisitor. visitAttributeType(AttributeTypePropertyDefinition pd, ValueOrExpression<AttributeType> v, P p)Visit an attribute type.RPropertyValueVisitor. visitBoolean(BooleanPropertyDefinition pd, ValueOrExpression<Boolean> v, P p)Visit a boolean.RPropertyValueVisitor. visitClass(ClassPropertyDefinition pd, ValueOrExpression<String> v, P p)Visit a class.RPropertyValueVisitor. visitDn(DnPropertyDefinition pd, ValueOrExpression<Dn> v, P p)Visit a DN.RPropertyValueVisitor. visitDuration(DurationPropertyDefinition pd, ValueOrExpression<Long> v, P p)Visit a duration.<E extends Enum<E>>
RPropertyValueVisitor. visitEnum(EnumPropertyDefinition<E> pd, ValueOrExpression<E> v, P p)Visit an enumeration.RPropertyValueVisitor. visitHost(HostPropertyDefinition pd, ValueOrExpression<com.forgerock.opendj.util.Host> v, P p)Visit a host.RPropertyValueVisitor. visitHostPort(HostPortPropertyDefinition pd, ValueOrExpression<com.forgerock.opendj.util.HostPort> v, P p)Visit a host:port.RPropertyValueVisitor. visitInteger(IntegerPropertyDefinition pd, ValueOrExpression<Integer> v, P p)Visit an integer.RPropertyValueVisitor. visitIpAddressMask(IpAddressMaskPropertyDefinition pd, ValueOrExpression<AddressMask> v, P p)Visit a IP address mask.RPropertyValueVisitor. visitSize(SizePropertyDefinition pd, ValueOrExpression<Long> v, P p)Visit a size.RPropertyValueVisitor. visitString(StringPropertyDefinition pd, ValueOrExpression<String> v, P p)Visit a string.<T> RPropertyValueVisitor. visitUnknown(PropertyDefinition<T> pd, ValueOrExpression<T> v, P p)Visit an unknown type of property value.Constructor parameters in org.forgerock.opendj.config with type arguments of type ValueOrExpression Constructor Description PropertyDefinition(AbstractManagedObjectDefinition<?,?> d, Class<T> theClass, String propertyName, EnumSet<PropertyOption> options, AdministratorAction adminAction, DefaultBehaviorProvider<ValueOrExpression<T>> defaultBehavior)Create a property definition. -
Uses of ValueOrExpression in org.forgerock.opendj.config.client
Methods in org.forgerock.opendj.config.client that return ValueOrExpression Modifier and Type Method Description <P> ValueOrExpression<P>DriverBasedManagementContext. getPropertyValue(ManagedObjectPath<?,?> path, PropertyDefinition<P> pd)<P> ValueOrExpression<P>ManagedObject. getPropertyValue(PropertyDefinition<P> pd)Gets the effective value of the specified property.<P> ValueOrExpression<P>ManagementContext. getPropertyValue(ManagedObjectPath<?,?> path, PropertyDefinition<P> pd)Gets the effective value of a property in the named managed object.Methods in org.forgerock.opendj.config.client that return types with arguments of type ValueOrExpression Modifier and Type Method Description <P> SortedSet<ValueOrExpression<P>>ManagedObject. getPropertyDefaultValues(PropertyDefinition<P> pd)Gets a mutable copy of the set of default values for the specified property.<P> SortedSet<ValueOrExpression<P>>DriverBasedManagementContext. getPropertyValues(ManagedObjectPath<?,?> path, PropertyDefinition<P> pd)<P> SortedSet<ValueOrExpression<P>>ManagedObject. getPropertyValues(PropertyDefinition<P> pd)Gets a mutable copy of the set of effective values for the specified property.<P> SortedSet<ValueOrExpression<P>>ManagementContext. getPropertyValues(ManagedObjectPath<?,?> path, PropertyDefinition<P> pd)Gets the effective values of a property in the named managed object.Methods in org.forgerock.opendj.config.client with parameters of type ValueOrExpression Modifier and Type Method Description <P> voidManagedObject. setPropertyValue(PropertyDefinition<P> pd, ValueOrExpression<P> value)Sets a new pending value for the specified property.Method parameters in org.forgerock.opendj.config.client with type arguments of type ValueOrExpression Modifier and Type Method Description <P> voidManagedObject. setPropertyValues(PropertyDefinition<P> pd, Collection<ValueOrExpression<P>> values)Sets a new pending values for the specified property. -
Uses of ValueOrExpression in org.forgerock.opendj.config.client.spi
Methods in org.forgerock.opendj.config.client.spi that return ValueOrExpression Modifier and Type Method Description <P> ValueOrExpression<P>AbstractManagedObject. getPropertyValue(PropertyDefinition<P> pd)Methods in org.forgerock.opendj.config.client.spi that return types with arguments of type ValueOrExpression Modifier and Type Method Description protected <P> Collection<ValueOrExpression<P>>Driver. findDefaultValues(ManagedObjectPath<?,?> p, PropertyDefinition<P> pd, boolean isCreate)Gets the default values for the specified property.SortedSet<ValueOrExpression<T>>Property. getActiveValues()Get an immutable set view of this property's active values.SortedSet<ValueOrExpression<T>>Property. getDefaultValues()Get an immutable set view of this property's default values.SortedSet<ValueOrExpression<T>>Property. getEffectiveValues()Get an immutable set view of this property's effective values.SortedSet<ValueOrExpression<T>>Property. getPendingValues()Get an immutable set view of this property's pending values.<P> SortedSet<ValueOrExpression<P>>AbstractManagedObject. getPropertyDefaultValues(PropertyDefinition<P> pd)<P> SortedSet<ValueOrExpression<P>>AbstractManagedObject. getPropertyValues(PropertyDefinition<P> pd)abstract <C extends ConfigurationClient,S extends Configuration,P>
SortedSet<ValueOrExpression<P>>Driver. getPropertyValues(ManagedObjectPath<C,S> path, PropertyDefinition<P> pd)Gets the effective values of a property in the named managed object.Methods in org.forgerock.opendj.config.client.spi with parameters of type ValueOrExpression Modifier and Type Method Description <P> voidAbstractManagedObject. setPropertyValue(PropertyDefinition<P> pd, ValueOrExpression<P> value)Method parameters in org.forgerock.opendj.config.client.spi with type arguments of type ValueOrExpression Modifier and Type Method Description <T> voidPropertySet. addProperty(PropertyDefinition<T> pd, Collection<ValueOrExpression<T>> defaultValues, Collection<ValueOrExpression<T>> activeValues)Creates a property with the provided sets of pre-validated default and active values.<P> voidAbstractManagedObject. setPropertyValues(PropertyDefinition<P> pd, Collection<ValueOrExpression<P>> values) -
Uses of ValueOrExpression in org.forgerock.opendj.server.config.client
Methods in org.forgerock.opendj.server.config.client that return ValueOrExpression Modifier and Type Method Description ValueOrExpression<Integer>HttpConnectionHandlerCfgClient. getAcceptBacklog()Gets the "accept-backlog" property.ValueOrExpression<Integer>LdapConnectionHandlerCfgClient. getAcceptBacklog()Gets the "accept-backlog" property.ValueOrExpression<Long>HttpOauth2AuthorizationMechanismCfgClient. getAccessTokenCacheExpiration()Gets the "access-token-cache-expiration" property.ValueOrExpression<String>HttpOauth2FileAuthorizationMechanismCfgClient. getAccessTokenDirectory()Gets the "access-token-directory" property.ValueOrExpression<ReplicationServerCfgDefn.AllowUpdatesPolicy>ReplicationServerCfgClient. getAllowUpdatesPolicy()Gets the "allow-updates-policy" property.ValueOrExpression<String>HttpBasicAuthorizationMechanismCfgClient. getAltPasswordHeader()Gets the "alt-password-header" property.ValueOrExpression<String>HttpBasicAuthorizationMechanismCfgClient. getAltUsernameHeader()Gets the "alt-username-header" property.ValueOrExpression<Integer>Argon2PasswordStorageSchemeCfgClient. getArgon2Iterations()Gets the "argon2-iterations" property.ValueOrExpression<Integer>Argon2PasswordStorageSchemeCfgClient. getArgon2Length()Gets the "argon2-length" property.ValueOrExpression<Integer>Argon2PasswordStorageSchemeCfgClient. getArgon2Memory()Gets the "argon2-memory" property.ValueOrExpression<Integer>Argon2PasswordStorageSchemeCfgClient. getArgon2MigrationMemory()Gets the "argon2-migration-memory" property.ValueOrExpression<Integer>Argon2PasswordStorageSchemeCfgClient. getArgon2Parallelism()Gets the "argon2-parallelism" property.ValueOrExpression<Integer>Argon2PasswordStorageSchemeCfgClient. getArgon2SaltLength()Gets the "argon2-salt-length" property.ValueOrExpression<Argon2PasswordStorageSchemeCfgDefn.Argon2Variant>Argon2PasswordStorageSchemeCfgClient. getArgon2Variant()Gets the "argon2-variant" property.ValueOrExpression<AttributeType>BackendIndexCfgClient. getAttribute()Gets the "attribute" property.ValueOrExpression<AttributeType>CollectiveAttributeSubentriesVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>EntityTagVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>EntryDnVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>EntryUuidVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>GoverningStructureRuleVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>HasSubordinatesVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>IsMemberOfVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>NumSubordinatesVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>PasswordExpirationTimeVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>PasswordPolicySubentryVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>StructuralObjectClassVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>SubschemaSubentryVirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<AttributeType>VirtualAttributeCfgClient. getAttributeType()Gets the "attribute-type" property.ValueOrExpression<String>MailServerCfgClient. getAuthPassword()Gets the "auth-password" property.ValueOrExpression<String>MailServerCfgClient. getAuthUsername()Gets the "auth-username" property.ValueOrExpression<String>HttpOauth2AuthorizationMechanismCfgClient. getAuthzidJsonPointer()Gets the "authzid-json-pointer" property.ValueOrExpression<Long>ProxyBackendCfgClient. getAvailabilityCheckInterval()Gets the "availability-check-interval" property.ValueOrExpression<Dn>ProxyBackendCfgClient. getAvailabilityCheckSearchRequestBaseDn()Gets the "availability-check-search-request-base-dn" property.ValueOrExpression<String>ProxyBackendCfgClient. getAvailabilityCheckSearchRequestFilter()Gets the "availability-check-search-request-filter" property.ValueOrExpression<Long>ProxyBackendCfgClient. getAvailabilityCheckTimeout()Gets the "availability-check-timeout" property.ValueOrExpression<String>BackendCfgClient. getBackendId()Gets the "backend-id" property.ValueOrExpression<Dn>BackendVlvIndexCfgClient. getBaseDn()Gets the "base-dn" property.ValueOrExpression<String>HttpOauth2CtsAuthorizationMechanismCfgClient. getBaseDn()Gets the "base-dn" property.ValueOrExpression<Dn>LdapKeyManagerProviderCfgClient. getBaseDn()Gets the "base-dn" property.ValueOrExpression<Dn>LdapTrustManagerProviderCfgClient. getBaseDn()Gets the "base-dn" property.ValueOrExpression<Dn>ReplicationDomainCfgClient. getBaseDn()Gets the "base-dn" property.ValueOrExpression<String>HttpEndpointCfgClient. getBasePath()Gets the "base-path" property.ValueOrExpression<Integer>BcryptPasswordStorageSchemeCfgClient. getBcryptCost()Gets the "bcrypt-cost" property.ValueOrExpression<Dn>ReplicationServiceDiscoveryMechanismCfgClient. getBindDn()Gets the "bind-dn" property.ValueOrExpression<String>ReplicationServiceDiscoveryMechanismCfgClient. getBindPassword()Gets the "bind-password" property.ValueOrExpression<Long>FileBasedAccessLogPublisherCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<Long>FileBasedAuditLogPublisherCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<Long>FileBasedDebugLogPublisherCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<Long>FileBasedErrorLogPublisherCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<Long>FileBasedHttpAccessLogPublisherCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<Long>HttpConnectionHandlerCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<Long>LdapConnectionHandlerCfgClient. getBufferSize()Gets the "buffer-size" property.ValueOrExpression<String>LdapPassThroughAuthenticationPolicyCfgClient. getCachedPasswordStorageScheme()Gets the "cached-password-storage-scheme" property.ValueOrExpression<Long>LdapPassThroughAuthenticationPolicyCfgClient. getCachedPasswordTtl()Gets the "cached-password-ttl" property.ValueOrExpression<Integer>EntryCacheCfgClient. getCacheLevel()Gets the "cache-level" property.ValueOrExpression<AttributeType>ExternalSaslMechanismHandlerCfgClient. getCertificateAttribute()Gets the "certificate-attribute" property.ValueOrExpression<ExternalSaslMechanismHandlerCfgDefn.CertificateValidationPolicy>ExternalSaslMechanismHandlerCfgClient. getCertificateValidationPolicy()Gets the "certificate-validation-policy" property.ValueOrExpression<ReplicationServerCfgDefn.ChangelogEnabled>ReplicationServerCfgClient. getChangelogEnabled()Gets the "changelog-enabled" property.ValueOrExpression<Long>ReplicationSynchronizationProviderCfgClient. getChangetimeHeartbeatInterval()Gets the "changetime-heartbeat-interval" property.ValueOrExpression<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria>ReferentialIntegrityPluginCfgClient. getCheckReferencesScopeCriteria()Gets the "check-references-scope-criteria" property.ValueOrExpression<EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm>EntityTagVirtualAttributeCfgClient. getChecksumAlgorithm()Gets the "checksum-algorithm" property.ValueOrExpression<Integer>CryptoManagerCfgClient. getCipherKeyLength()Gets the "cipher-key-length" property.ValueOrExpression<Integer>PluggableBackendCfgClient. getCipherKeyLength()Gets the "cipher-key-length" property.ValueOrExpression<Integer>ReplicationServerCfgClient. getCipherKeyLength()Gets the "cipher-key-length" property.ValueOrExpression<String>CryptoManagerCfgClient. getCipherTransformation()Gets the "cipher-transformation" property.ValueOrExpression<String>PluggableBackendCfgClient. getCipherTransformation()Gets the "cipher-transformation" property.ValueOrExpression<String>ReplicationServerCfgClient. getCipherTransformation()Gets the "cipher-transformation" property.ValueOrExpression<String>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getClientId()Gets the "client-id" property.ValueOrExpression<String>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getClientSecret()Gets the "client-secret" property.ValueOrExpression<String>SnmpConnectionHandlerCfgClient. getCommunity()Gets the "community" property.ValueOrExpression<String>Rest2ldapEndpointCfgClient. getConfigDirectory()Gets the "config-directory" property.ValueOrExpression<String>ExternalAccessLogPublisherCfgClient. getConfigFile()Gets the "config-file" property.ValueOrExpression<String>ExternalHttpAccessLogPublisherCfgClient. getConfigFile()Gets the "config-file" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>CollectiveAttributeSubentriesVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>EntityTagVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>EntryDnVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>EntryUuidVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>GoverningStructureRuleVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>HasSubordinatesVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>IsMemberOfVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>MemberVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>NumSubordinatesVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>PasswordExpirationTimeVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>PasswordPolicySubentryVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>StructuralObjectClassVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>SubschemaSubentryVirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior>VirtualAttributeCfgClient. getConflictBehavior()Gets the "conflict-behavior" property.ValueOrExpression<Integer>GlobalAccessControlPolicyCfgClient. getConnectionMinimumSsf()Gets the "connection-minimum-ssf" property.ValueOrExpression<Long>ProxyBackendCfgClient. getConnectionPoolIdleTimeout()Gets the "connection-pool-idle-timeout" property.ValueOrExpression<Integer>ProxyBackendCfgClient. getConnectionPoolMaxSize()Gets the "connection-pool-max-size" property.ValueOrExpression<Integer>ProxyBackendCfgClient. getConnectionPoolMinSize()Gets the "connection-pool-min-size" property.ValueOrExpression<Long>LdapPassThroughAuthenticationPolicyCfgClient. getConnectionTimeout()Gets the "connection-timeout" property.ValueOrExpression<Long>ProxyBackendCfgClient. getConnectionTimeout()Gets the "connection-timeout" property.ValueOrExpression<Long>ReplicationSynchronizationProviderCfgClient. getConnectionTimeout()Gets the "connection-timeout" property.ValueOrExpression<CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm>CryptPasswordStorageSchemeCfgClient. getCryptPasswordStorageEncryptionAlgorithm()Gets the "crypt-password-storage-encryption-algorithm" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getCsvDelimiterChar()Gets the "csv-delimiter-char" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getCsvDelimiterChar()Gets the "csv-delimiter-char" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getCsvEolSymbols()Gets the "csv-eol-symbols" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getCsvEolSymbols()Gets the "csv-eol-symbols" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getCsvQuoteChar()Gets the "csv-quote-char" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getCsvQuoteChar()Gets the "csv-quote-char" property.ValueOrExpression<JeBackendCfgDefn.DbCacheMode>JeBackendCfgClient. getDbCacheMode()Gets the "db-cache-mode" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbCachePercent()Gets the "db-cache-percent" property.ValueOrExpression<Long>JeBackendCfgClient. getDbCacheSize()Gets the "db-cache-size" property.ValueOrExpression<Long>JeBackendCfgClient. getDbCheckpointerBytesInterval()Gets the "db-checkpointer-bytes-interval" property.ValueOrExpression<Long>JeBackendCfgClient. getDbCheckpointerWakeupInterval()Gets the "db-checkpointer-wakeup-interval" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbCleanerMinUtilization()Gets the "db-cleaner-min-utilization" property.ValueOrExpression<String>JeBackendCfgClient. getDbDirectory()Gets the "db-directory" property.ValueOrExpression<String>JeBackendCfgClient. getDbDirectoryPermissions()Gets the "db-directory-permissions" property.ValueOrExpression<JeBackendCfgDefn.DbDurability>JeBackendCfgClient. getDbDurability()Gets the "db-durability" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbEvictorCoreThreads()Gets the "db-evictor-core-threads" property.ValueOrExpression<Long>JeBackendCfgClient. getDbEvictorKeepAlive()Gets the "db-evictor-keep-alive" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbEvictorMaxThreads()Gets the "db-evictor-max-threads" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbLogFilecacheSize()Gets the "db-log-filecache-size" property.ValueOrExpression<Long>JeBackendCfgClient. getDbLogFileMax()Gets the "db-log-file-max" property.ValueOrExpression<String>JeBackendCfgClient. getDbLoggingLevel()Gets the "db-logging-level" property.ValueOrExpression<String>JeBackendCfgClient. getDbLogVerifierSchedule()Gets the "db-log-verifier-schedule" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbNumCleanerThreads()Gets the "db-num-cleaner-threads" property.ValueOrExpression<Integer>JeBackendCfgClient. getDbNumLockTables()Gets the "db-num-lock-tables" property.ValueOrExpression<String>DebugTargetCfgClient. getDebugScope()Gets the "debug-scope" property.ValueOrExpression<String>GlobalCfgClient. getDefaultPasswordPolicy()Gets the "default-password-policy" property.ValueOrExpression<Integer>DebugLogPublisherCfgClient. getDefaultThrowableStackFrames()Gets the "default-throwable-stack-frames" property.ValueOrExpression<Integer>ReplicationServerCfgClient. getDegradedStatusThreshold()Gets the "degraded-status-threshold" property.ValueOrExpression<String>DictionaryPasswordValidatorCfgClient. getDictionaryFile()Gets the "dictionary-file" property.ValueOrExpression<String>CryptoManagerCfgClient. getDigestAlgorithm()Gets the "digest-algorithm" property.ValueOrExpression<Long>ProxyBackendCfgClient. getDiscoveryInterval()Gets the "discovery-interval" property.ValueOrExpression<Long>ReplicationServiceDiscoveryMechanismCfgClient. getDiscoveryInterval()Gets the "discovery-interval" property.ValueOrExpression<Long>StaticServiceDiscoveryMechanismCfgClient. getDiscoveryInterval()Gets the "discovery-interval" property.ValueOrExpression<Long>JeBackendCfgClient. getDiskFullThreshold()Gets the "disk-full-threshold" property.ValueOrExpression<Long>ReplicationServerCfgClient. getDiskFullThreshold()Gets the "disk-full-threshold" property.ValueOrExpression<Long>JeBackendCfgClient. getDiskLowThreshold()Gets the "disk-low-threshold" property.ValueOrExpression<Long>ReplicationServerCfgClient. getDiskLowThreshold()Gets the "disk-low-threshold" property.ValueOrExpression<Long>SizeLimitLogRetentionPolicyCfgClient. getDiskSpaceUsed()Gets the "disk-space-used" property.ValueOrExpression<GlobalCfgDefn.EtimeResolution>GlobalCfgClient. getEtimeResolution()Gets the "etime-resolution" property.ValueOrExpression<Long>SizeLimitLogRotationPolicyCfgClient. getFileSizeLimit()Gets the "file-size-limit" property.ValueOrExpression<String>BackendVlvIndexCfgClient. getFilter()Gets the "filter" property.ValueOrExpression<AccessLogPublisherCfgDefn.FilteringPolicy>AccessLogPublisherCfgClient. getFilteringPolicy()Gets the "filtering-policy" property.ValueOrExpression<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm>FingerprintCertificateMapperCfgClient. getFingerprintAlgorithm()Gets the "fingerprint-algorithm" property.ValueOrExpression<AttributeType>FingerprintCertificateMapperCfgClient. getFingerprintAttribute()Gets the "fingerprint-attribute" property.ValueOrExpression<Long>FreeDiskSpaceLogRetentionPolicyCfgClient. getFreeDiskSpace()Gets the "free-disk-space" property.ValueOrExpression<Integer>PasswordPolicyCfgClient. getGraceLoginCount()Gets the "grace-login-count" property.ValueOrExpression<com.forgerock.opendj.util.HostPort>GraphiteMonitorReporterPluginCfgClient. getGraphiteServer()Gets the "graphite-server" property.ValueOrExpression<String>GlobalCfgClient. getGroupId()Gets the "group-id" property.ValueOrExpression<String>GlobalCfgClient. getGroupIdFailoverOrder()Gets the "group-id-failover-order" property.ValueOrExpression<ProxyBackendCfgDefn.HashFunction>ProxyBackendCfgClient. getHashFunction()Gets the "hash-function" property.ValueOrExpression<Long>ReplicationSynchronizationProviderCfgClient. getHeartbeatInterval()Gets the "heartbeat-interval" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getIdleLockoutInterval()Gets the "idle-lockout-interval" property.ValueOrExpression<Long>GlobalCfgClient. getIdleTimeLimit()Gets the "idle-time-limit" property.ValueOrExpression<Long>PluggableBackendCfgClient. getImportOffheapMemorySize()Gets the "import-offheap-memory-size" property.ValueOrExpression<Integer>BackendIndexCfgClient. getIndexEntryLimit()Gets the "index-entry-limit" property.ValueOrExpression<Integer>PluggableBackendCfgClient. getIndexEntryLimit()Gets the "index-entry-limit" property.ValueOrExpression<Integer>PluggableBackendCfgClient. getIndexFilterAnalyzerMaxFilters()Gets the "index-filter-analyzer-max-filters" property.ValueOrExpression<Integer>ReplicationSynchronizationProviderCfgClient. getInitializationWindowSize()Gets the "initialization-window-size" property.ValueOrExpression<GlobalCfgDefn.InvalidAttributeSyntaxBehavior>GlobalCfgClient. getInvalidAttributeSyntaxBehavior()Gets the "invalid-attribute-syntax-behavior" property.ValueOrExpression<ReplicationSynchronizationProviderCfgDefn.IsolationPolicy>ReplicationSynchronizationProviderCfgClient. getIsolationPolicy()Gets the "isolation-policy" property.ValueOrExpression<AttributeType>CertificateMapperCfgClient. getIssuerAttribute()Gets the "issuer-attribute" property.ValueOrExpression<String>AccessControlHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AccountStatusNotificationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AdminDataTrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AdminEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AesPasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AlertHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AliveEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AnonymousSaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Argon2PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AttributeCleanupPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AttributeValuePasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>AuthenticationPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>BackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Base64PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>BcryptPasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>BlindTrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>BlowfishPasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CancelExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CertificateMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ChangeNumberControlPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CharacterSetPasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ClearPasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CollectiveAttributeSubentriesVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ConnectionHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ConsoleErrorLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CoreSchemaCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CramMd5SaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CrestMetricsEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CryptPasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>DebugLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>DictionaryPasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>DigestMd5SaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>DseeCompatAccessControlHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>EntityTagPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>EntityTagVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>EntryCacheCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>EntryDnVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>EntryUuidPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>EntryUuidVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ErrorLogAccountStatusNotificationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ErrorLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ExactMatchIdentityMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ExternalAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ExternalHttpAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ExternalSaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FifoEntryCacheCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedAuditLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedDebugLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedErrorLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedHttpAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedKeyManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileBasedTrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FileCountLogRetentionPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FingerprintCertificateMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FixedTimeLogRotationPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>FreeDiskSpaceLogRetentionPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>GetConnectionIdExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>GetSymmetricKeyExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>GoverningStructureRuleVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>GraphiteMonitorReporterPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>GssapiSaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HasSubordinatesVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HealthyEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpAnonymousAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpBasicAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpConnectionHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpOauth2CtsAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpOauth2FileAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpOauth2OpenamAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>IdentityMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>IsMemberOfVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JeBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JmxAlertHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JmxConnectionHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JsonEqualityMatchingRuleCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JsonFileAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JsonFileHttpAccessLogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JsonOrderingMatchingRuleCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JsonQueryEqualityMatchingRuleCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>KeyManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LastModPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdapAttributeDescriptionListPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdapConnectionHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdapKeyManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdapPassThroughAuthenticationPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdapTrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdifBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LdifConnectionHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LengthBasedPasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LogPublisherCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LogRetentionPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>LogRotationPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Md5PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>MemberVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>MemoryBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>MonitorBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>NullBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>NumSubordinatesVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordExpirationTimeVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordGeneratorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordModifyExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordPolicyImportPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordPolicyStateExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordPolicySubentryVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Pbkdf2HmacSha256PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Pbkdf2HmacSha512PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Pbkdf2PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PemKeyManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PemTrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Pkcs11KeyManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Pkcs11TrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Pkcs5s2PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PlainSaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PolicyBasedAccessControlHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>PrometheusEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ProxyBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>RandomPasswordGeneratorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Rc4PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ReferentialIntegrityPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>RegularExpressionIdentityMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>RepeatedCharactersPasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ReplicationServiceDiscoveryMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ReplicationSynchronizationProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Rest2ldapEndpointCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SaltedMd5PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SaltedSha1PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SaltedSha256PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SaltedSha384PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SaltedSha512PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SambaPasswordPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SchemaBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SchemaProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ScramSha256PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ScramSha256SaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ScramSha512PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ScramSha512SaslMechanismHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>ServiceDiscoveryMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SevenBitCleanPluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>Sha1PasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SimilarityBasedPasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SizeLimitLogRetentionPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SizeLimitLogRotationPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SmtpAccountStatusNotificationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SmtpAlertHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SnmpConnectionHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SoftReferenceEntryCacheCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>StartTlsExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>StaticServiceDiscoveryMechanismCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>StructuralObjectClassVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SubjectAttributeToUserAttributeCertificateMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SubjectDnToUserAttributeCertificateMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SubjectEqualsDnCertificateMapperCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SubschemaSubentryVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>SynchronizationProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>TaskBackendCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>TimeLimitLogRotationPolicyCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>TraditionalWorkQueueCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>TripleDesPasswordStorageSchemeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>TrustManagerProviderCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>UniqueAttributePluginCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>UniqueCharactersPasswordValidatorCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>UserDefinedVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>UserTemplateVirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>VirtualAttributeCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>WhoAmIExtendedOperationHandlerCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>WorkQueueCfgClient. getJavaClass()Gets the "java-class" property.ValueOrExpression<String>JsonEqualityMatchingRuleCfgClient. getJsonKeys()Gets the "json-keys" property.ValueOrExpression<String>JsonOrderingMatchingRuleCfgClient. getJsonKeys()Gets the "json-keys" property.ValueOrExpression<CoreSchemaCfgDefn.JsonValidationPolicy>CoreSchemaCfgClient. getJsonValidationPolicy()Gets the "json-validation-policy" property.ValueOrExpression<String>GssapiSaslMechanismHandlerCfgClient. getKdcAddress()Gets the "kdc-address" property.ValueOrExpression<Long>ProxyBackendCfgClient. getKeepAliveInterval()Gets the "keep-alive-interval" property.ValueOrExpression<Dn>ProxyBackendCfgClient. getKeepAliveSearchRequestBaseDn()Gets the "keep-alive-search-request-base-dn" property.ValueOrExpression<String>ProxyBackendCfgClient. getKeepAliveSearchRequestFilter()Gets the "keep-alive-search-request-filter" property.ValueOrExpression<Long>ProxyBackendCfgClient. getKeepAliveTimeout()Gets the "keep-alive-timeout" property.ValueOrExpression<String>AdministrationConnectorCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>CryptoManagerCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>HttpConnectionHandlerCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>HttpOauth2OpenamAuthorizationMechanismCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>JmxConnectionHandlerCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>LdapConnectionHandlerCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>ProxyBackendCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>ReplicationServiceDiscoveryMechanismCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>ReplicationSynchronizationProviderCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>StaticServiceDiscoveryMechanismCfgClient. getKeyManagerProvider()Gets the "key-manager-provider" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getKeyStoreFile()Gets the "key-store-file" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getKeyStoreFile()Gets the "key-store-file" property.ValueOrExpression<String>FileBasedKeyManagerProviderCfgClient. getKeyStoreFile()Gets the "key-store-file" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getKeyStorePin()Gets the "key-store-pin" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getKeyStorePin()Gets the "key-store-pin" property.ValueOrExpression<String>FileBasedKeyManagerProviderCfgClient. getKeyStorePin()Gets the "key-store-pin" property.ValueOrExpression<String>LdapKeyManagerProviderCfgClient. getKeyStorePin()Gets the "key-store-pin" property.ValueOrExpression<String>Pkcs11KeyManagerProviderCfgClient. getKeyStorePin()Gets the "key-store-pin" property.ValueOrExpression<String>FileBasedKeyManagerProviderCfgClient. getKeyStoreType()Gets the "key-store-type" property.ValueOrExpression<String>Pkcs11KeyManagerProviderCfgClient. getKeyStoreType()Gets the "key-store-type" property.ValueOrExpression<String>GssapiSaslMechanismHandlerCfgClient. getKeytab()Gets the "keytab" property.ValueOrExpression<CryptoManagerCfgDefn.KeyWrappingMode>CryptoManagerCfgClient. getKeyWrappingMode()Gets the "key-wrapping-mode" property.ValueOrExpression<String>CryptoManagerCfgClient. getKeyWrappingTransformation()Gets the "key-wrapping-transformation" property.ValueOrExpression<AttributeType>PasswordPolicyCfgClient. getLastLoginTimeAttribute()Gets the "last-login-time-attribute" property.ValueOrExpression<String>PasswordPolicyCfgClient. getLastLoginTimeFormat()Gets the "last-login-time-format" property.ValueOrExpression<String>LdifConnectionHandlerCfgClient. getLdifDirectory()Gets the "ldif-directory" property.ValueOrExpression<String>LdifBackendCfgClient. getLdifFile()Gets the "ldif-file" property.ValueOrExpression<com.forgerock.opendj.util.Host>JmxConnectionHandlerCfgClient. getListenAddress()Gets the "listen-address" property.ValueOrExpression<Integer>AdministrationConnectorCfgClient. getListenPort()Gets the "listen-port" property.ValueOrExpression<Integer>HttpConnectionHandlerCfgClient. getListenPort()Gets the "listen-port" property.ValueOrExpression<Integer>JmxConnectionHandlerCfgClient. getListenPort()Gets the "listen-port" property.ValueOrExpression<Integer>LdapConnectionHandlerCfgClient. getListenPort()Gets the "listen-port" property.ValueOrExpression<Integer>SnmpConnectionHandlerCfgClient. getListenPort()Gets the "listen-port" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getLockoutDuration()Gets the "lockout-duration" property.ValueOrExpression<Integer>PasswordPolicyCfgClient. getLockoutFailureCount()Gets the "lockout-failure-count" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getLockoutFailureExpirationInterval()Gets the "lockout-failure-expiration-interval" property.ValueOrExpression<Long>FifoEntryCacheCfgClient. getLockTimeout()Gets the "lock-timeout" property.ValueOrExpression<Long>SoftReferenceEntryCacheCfgClient. getLockTimeout()Gets the "lock-timeout" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getLogDirectory()Gets the "log-directory" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getLogDirectory()Gets the "log-directory" property.ValueOrExpression<String>JsonFileAccessLogPublisherCfgClient. getLogDirectory()Gets the "log-directory" property.ValueOrExpression<String>JsonFileHttpAccessLogPublisherCfgClient. getLogDirectory()Gets the "log-directory" property.ValueOrExpression<String>FileBasedAccessLogPublisherCfgClient. getLogFile()Gets the "log-file" property.ValueOrExpression<String>FileBasedAuditLogPublisherCfgClient. getLogFile()Gets the "log-file" property.ValueOrExpression<String>FileBasedDebugLogPublisherCfgClient. getLogFile()Gets the "log-file" property.ValueOrExpression<String>FileBasedErrorLogPublisherCfgClient. getLogFile()Gets the "log-file" property.ValueOrExpression<String>FileBasedHttpAccessLogPublisherCfgClient. getLogFile()Gets the "log-file" property.ValueOrExpression<String>ReferentialIntegrityPluginCfgClient. getLogFile()Gets the "log-file" property.ValueOrExpression<String>CsvFileAccessLogPublisherCfgClient. getLogFileNamePrefix()Gets the "log-file-name-prefix" property.ValueOrExpression<String>CsvFileHttpAccessLogPublisherCfgClient. getLogFileNamePrefix()Gets the "log-file-name-prefix" property.ValueOrExpression<String>JsonFileAccessLogPublisherCfgClient. getLogFileNamePrefix()Gets the "log-file-name-prefix" property.ValueOrExpression<String>JsonFileHttpAccessLogPublisherCfgClient. getLogFileNamePrefix()Gets the "log-file-name-prefix" property.ValueOrExpression<String>FileBasedAccessLogPublisherCfgClient. getLogFilePermissions()Gets the "log-file-permissions" property.ValueOrExpression<String>FileBasedAuditLogPublisherCfgClient. getLogFilePermissions()Gets the "log-file-permissions" property.ValueOrExpression<String>FileBasedDebugLogPublisherCfgClient. getLogFilePermissions()Gets the "log-file-permissions" property.ValueOrExpression<String>FileBasedErrorLogPublisherCfgClient. getLogFilePermissions()Gets the "log-file-permissions" property.ValueOrExpression<String>FileBasedHttpAccessLogPublisherCfgClient. getLogFilePermissions()Gets the "log-file-permissions" property.ValueOrExpression<FileBasedAccessLogPublisherCfgDefn.LogFormat>FileBasedAccessLogPublisherCfgClient. getLogFormat()Gets the "log-format" property.ValueOrExpression<String>FileBasedHttpAccessLogPublisherCfgClient. getLogFormat()Gets the "log-format" property.ValueOrExpression<String>FileBasedAccessLogPublisherCfgClient. getLogRecordTimeFormat()Gets the "log-record-time-format" property.ValueOrExpression<String>FileBasedHttpAccessLogPublisherCfgClient. getLogRecordTimeFormat()Gets the "log-record-time-format" property.ValueOrExpression<String>CryptoManagerCfgClient. getMacAlgorithm()Gets the "mac-algorithm" property.ValueOrExpression<Integer>CryptoManagerCfgClient. getMacKeyLength()Gets the "mac-key-length" property.ValueOrExpression<Dn>LdapPassThroughAuthenticationPolicyCfgClient. getMappedSearchBindDn()Gets the "mapped-search-bind-dn" property.ValueOrExpression<String>LdapPassThroughAuthenticationPolicyCfgClient. getMappedSearchBindPassword()Gets the "mapped-search-bind-password" property.ValueOrExpression<String>LdapPassThroughAuthenticationPolicyCfgClient. getMappedSearchFilterTemplate()Gets the "mapped-search-filter-template" property.ValueOrExpression<LdapPassThroughAuthenticationPolicyCfgDefn.MappingPolicy>LdapPassThroughAuthenticationPolicyCfgClient. getMappingPolicy()Gets the "mapping-policy" property.ValueOrExpression<String>CryptoManagerCfgClient. getMasterKeyAlias()Gets the "master-key-alias" property.ValueOrExpression<String>JsonEqualityMatchingRuleCfgClient. getMatchingRuleName()Gets the "matching-rule-name" property.ValueOrExpression<String>JsonOrderingMatchingRuleCfgClient. getMatchingRuleName()Gets the "matching-rule-name" property.ValueOrExpression<String>JsonQueryEqualityMatchingRuleCfgClient. getMatchingRuleName()Gets the "matching-rule-name" property.ValueOrExpression<String>JsonEqualityMatchingRuleCfgClient. getMatchingRuleOid()Gets the "matching-rule-oid" property.ValueOrExpression<String>JsonOrderingMatchingRuleCfgClient. getMatchingRuleOid()Gets the "matching-rule-oid" property.ValueOrExpression<String>JsonQueryEqualityMatchingRuleCfgClient. getMatchingRuleOid()Gets the "matching-rule-oid" property.ValueOrExpression<String>RegularExpressionIdentityMapperCfgClient. getMatchPattern()Gets the "match-pattern" property.ValueOrExpression<Integer>GlobalCfgClient. getMaxAllowedClientConnections()Gets the "max-allowed-client-connections" property.ValueOrExpression<Long>HttpConnectionHandlerCfgClient. getMaxBlockedWriteTimeLimit()Gets the "max-blocked-write-time-limit" property.ValueOrExpression<Long>LdapConnectionHandlerCfgClient. getMaxBlockedWriteTimeLimit()Gets the "max-blocked-write-time-limit" property.ValueOrExpression<Integer>GlobalCfgClient. getMaxCandidateSetSize()Gets the "max-candidate-set-size" property.ValueOrExpression<Integer>HttpConnectionHandlerCfgClient. getMaxConcurrentOpsPerConnection()Gets the "max-concurrent-ops-per-connection" property.ValueOrExpression<Integer>RepeatedCharactersPasswordValidatorCfgClient. getMaxConsecutiveLength()Gets the "max-consecutive-length" property.ValueOrExpression<Integer>FifoEntryCacheCfgClient. getMaxEntries()Gets the "max-entries" property.ValueOrExpression<Long>GlobalCfgClient. getMaxInternalBufferSize()Gets the "max-internal-buffer-size" property.ValueOrExpression<Integer>FifoEntryCacheCfgClient. getMaxMemoryPercent()Gets the "max-memory-percent" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getMaxPasswordAge()Gets the "max-password-age" property.ValueOrExpression<Integer>LengthBasedPasswordValidatorCfgClient. getMaxPasswordLength()Gets the "max-password-length" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getMaxPasswordResetAge()Gets the "max-password-reset-age" property.ValueOrExpression<Integer>GlobalCfgClient. getMaxPsearches()Gets the "max-psearches" property.ValueOrExpression<Long>ReplicationSynchronizationProviderCfgClient. getMaxReplicationDelayHealthCheck()Gets the "max-replication-delay-health-check" property.ValueOrExpression<Long>HttpConnectionHandlerCfgClient. getMaxRequestSize()Gets the "max-request-size" property.ValueOrExpression<Long>LdapConnectionHandlerCfgClient. getMaxRequestSize()Gets the "max-request-size" property.ValueOrExpression<String>SmtpAlertHandlerCfgClient. getMessageBody()Gets the "message-body" property.ValueOrExpression<String>SmtpAlertHandlerCfgClient. getMessageSubject()Gets the "message-subject" property.ValueOrExpression<String>GraphiteMonitorReporterPluginCfgClient. getMetricNamePrefix()Gets the "metric-name-prefix" property.ValueOrExpression<Integer>CharacterSetPasswordValidatorCfgClient. getMinCharacterSets()Gets the "min-character-sets" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getMinPasswordAge()Gets the "min-password-age" property.ValueOrExpression<Integer>SimilarityBasedPasswordValidatorCfgClient. getMinPasswordDifference()Gets the "min-password-difference" property.ValueOrExpression<Integer>LengthBasedPasswordValidatorCfgClient. getMinPasswordLength()Gets the "min-password-length" property.ValueOrExpression<Integer>AttributeValuePasswordValidatorCfgClient. getMinSubstringLength()Gets the "min-substring-length" property.ValueOrExpression<Integer>DictionaryPasswordValidatorCfgClient. getMinSubstringLength()Gets the "min-substring-length" property.ValueOrExpression<Integer>UniqueCharactersPasswordValidatorCfgClient. getMinUniqueCharacters()Gets the "min-unique-characters" property.ValueOrExpression<String>BackendVlvIndexCfgClient. getName()Gets the "name" property.ValueOrExpression<String>TaskBackendCfgClient. getNotificationSenderAddress()Gets the "notification-sender-address" property.ValueOrExpression<Integer>FileCountLogRetentionPolicyCfgClient. getNumberOfFiles()Gets the "number-of-files" property.ValueOrExpression<Integer>HttpConnectionHandlerCfgClient. getNumRequestHandlers()Gets the "num-request-handlers" property.ValueOrExpression<Integer>LdapConnectionHandlerCfgClient. getNumRequestHandlers()Gets the "num-request-handlers" property.ValueOrExpression<Integer>ReplicationSynchronizationProviderCfgClient. getNumUpdateReplayThreads()Gets the "num-update-replay-threads" property.ValueOrExpression<Integer>TraditionalWorkQueueCfgClient. getNumWorkerThreads()Gets the "num-worker-threads" property.ValueOrExpression<AttributeType>PasswordPolicyCfgClient. getPasswordAttribute()Gets the "password-attribute" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getPasswordExpirationWarningInterval()Gets the "password-expiration-warning-interval" property.ValueOrExpression<String>RandomPasswordGeneratorCfgClient. getPasswordFormat()Gets the "password-format" property.ValueOrExpression<String>PasswordPolicyCfgClient. getPasswordGenerator()Gets the "password-generator" property.ValueOrExpression<Integer>PasswordPolicyCfgClient. getPasswordHistoryCount()Gets the "password-history-count" property.ValueOrExpression<Long>PasswordPolicyCfgClient. getPasswordHistoryDuration()Gets the "password-history-duration" property.ValueOrExpression<Integer>Pbkdf2PasswordStorageSchemeCfgClient. getPbkdf2Iterations()Gets the "pbkdf2-iterations" property.ValueOrExpression<String>PemKeyManagerProviderCfgClient. getPemDirectory()Gets the "pem-directory" property.ValueOrExpression<String>PemTrustManagerProviderCfgClient. getPemDirectory()Gets the "pem-directory" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderIntermediateResponse()Gets the "plugin-order-intermediate-response" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderLdifImport()Gets the "plugin-order-ldif-import" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderLdifImportBegin()Gets the "plugin-order-ldif-import-begin" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderLdifImportEnd()Gets the "plugin-order-ldif-import-end" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostConnect()Gets the "plugin-order-post-connect" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostDisconnect()Gets the "plugin-order-post-disconnect" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationAbandon()Gets the "plugin-order-post-operation-abandon" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationAdd()Gets the "plugin-order-post-operation-add" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationBind()Gets the "plugin-order-post-operation-bind" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationCompare()Gets the "plugin-order-post-operation-compare" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationDelete()Gets the "plugin-order-post-operation-delete" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationExtended()Gets the "plugin-order-post-operation-extended" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationModify()Gets the "plugin-order-post-operation-modify" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationModifyDn()Gets the "plugin-order-post-operation-modify-dn" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationSearch()Gets the "plugin-order-post-operation-search" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostOperationUnbind()Gets the "plugin-order-post-operation-unbind" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseAdd()Gets the "plugin-order-post-response-add" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseBind()Gets the "plugin-order-post-response-bind" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseCompare()Gets the "plugin-order-post-response-compare" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseDelete()Gets the "plugin-order-post-response-delete" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseExtended()Gets the "plugin-order-post-response-extended" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseModify()Gets the "plugin-order-post-response-modify" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseModifyDn()Gets the "plugin-order-post-response-modify-dn" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostResponseSearch()Gets the "plugin-order-post-response-search" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostSynchronizationAdd()Gets the "plugin-order-post-synchronization-add" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostSynchronizationDelete()Gets the "plugin-order-post-synchronization-delete" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostSynchronizationModify()Gets the "plugin-order-post-synchronization-modify" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPostSynchronizationModifyDn()Gets the "plugin-order-post-synchronization-modify-dn" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationAdd()Gets the "plugin-order-pre-operation-add" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationBind()Gets the "plugin-order-pre-operation-bind" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationCompare()Gets the "plugin-order-pre-operation-compare" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationDelete()Gets the "plugin-order-pre-operation-delete" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationExtended()Gets the "plugin-order-pre-operation-extended" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationModify()Gets the "plugin-order-pre-operation-modify" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationModifyDn()Gets the "plugin-order-pre-operation-modify-dn" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreOperationSearch()Gets the "plugin-order-pre-operation-search" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseAbandon()Gets the "plugin-order-pre-parse-abandon" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseAdd()Gets the "plugin-order-pre-parse-add" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseBind()Gets the "plugin-order-pre-parse-bind" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseCompare()Gets the "plugin-order-pre-parse-compare" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseDelete()Gets the "plugin-order-pre-parse-delete" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseExtended()Gets the "plugin-order-pre-parse-extended" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseModify()Gets the "plugin-order-pre-parse-modify" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseModifyDn()Gets the "plugin-order-pre-parse-modify-dn" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseSearch()Gets the "plugin-order-pre-parse-search" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderPreParseUnbind()Gets the "plugin-order-pre-parse-unbind" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderSearchResultEntry()Gets the "plugin-order-search-result-entry" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderSearchResultReference()Gets the "plugin-order-search-result-reference" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderShutdown()Gets the "plugin-order-shutdown" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderStartup()Gets the "plugin-order-startup" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderSubordinateDelete()Gets the "plugin-order-subordinate-delete" property.ValueOrExpression<String>PluginRootCfgClient. getPluginOrderSubordinateModifyDn()Gets the "plugin-order-subordinate-modify-dn" property.ValueOrExpression<Long>LdifConnectionHandlerCfgClient. getPollInterval()Gets the "poll-interval" property.ValueOrExpression<Long>PluggableBackendCfgClient. getPreloadTimeLimit()Gets the "preload-time-limit" property.ValueOrExpression<String>ReplicationServiceDiscoveryMechanismCfgClient. getPrimaryGroupId()Gets the "primary-group-id" property.ValueOrExpression<String>GssapiSaslMechanismHandlerCfgClient. getPrincipalName()Gets the "principal-name" property.ValueOrExpression<Dn>ProxyBackendCfgClient. getProxyUserDn()Gets the "proxy-user-dn" property.ValueOrExpression<String>ProxyBackendCfgClient. getProxyUserPassword()Gets the "proxy-user-password" property.ValueOrExpression<DigestMd5SaslMechanismHandlerCfgDefn.QualityOfProtection>DigestMd5SaslMechanismHandlerCfgClient. getQualityOfProtection()Gets the "quality-of-protection" property.ValueOrExpression<GssapiSaslMechanismHandlerCfgDefn.QualityOfProtection>GssapiSaslMechanismHandlerCfgClient. getQualityOfProtection()Gets the "quality-of-protection" property.ValueOrExpression<Integer>FileBasedAccessLogPublisherCfgClient. getQueueSize()Gets the "queue-size" property.ValueOrExpression<Integer>FileBasedAuditLogPublisherCfgClient. getQueueSize()Gets the "queue-size" property.ValueOrExpression<Integer>FileBasedDebugLogPublisherCfgClient. getQueueSize()Gets the "queue-size" property.ValueOrExpression<Integer>FileBasedErrorLogPublisherCfgClient. getQueueSize()Gets the "queue-size" property.ValueOrExpression<Integer>FileBasedHttpAccessLogPublisherCfgClient. getQueueSize()Gets the "queue-size" property.ValueOrExpression<String>DigestMd5SaslMechanismHandlerCfgClient. getRealm()Gets the "realm" property.ValueOrExpression<String>GssapiSaslMechanismHandlerCfgClient. getRealm()Gets the "realm" property.ValueOrExpression<Argon2PasswordStorageSchemeCfgDefn.RehashPolicy>Argon2PasswordStorageSchemeCfgClient. getRehashPolicy()Gets the "rehash-policy" property.ValueOrExpression<BcryptPasswordStorageSchemeCfgDefn.RehashPolicy>BcryptPasswordStorageSchemeCfgClient. getRehashPolicy()Gets the "rehash-policy" property.ValueOrExpression<Pbkdf2PasswordStorageSchemeCfgDefn.RehashPolicy>Pbkdf2PasswordStorageSchemeCfgClient. getRehashPolicy()Gets the "rehash-policy" property.ValueOrExpression<String>RegularExpressionIdentityMapperCfgClient. getReplacePattern()Gets the "replace-pattern" property.ValueOrExpression<String>ReplicationServerCfgClient. getReplicationDbDirectory()Gets the "replication-db-directory" property.ValueOrExpression<Integer>ReplicationServerCfgClient. getReplicationPort()Gets the "replication-port" property.ValueOrExpression<Long>ReplicationSynchronizationProviderCfgClient. getReplicationPurgeDelay()Gets the "replication-purge-delay" property.ValueOrExpression<Long>GraphiteMonitorReporterPluginCfgClient. getReportingInterval()Gets the "reporting-interval" property.ValueOrExpression<String>PasswordPolicyCfgClient. getRequireChangeByTime()Gets the "require-change-by-time" property.ValueOrExpression<Long>AccessLogFilteringCriteriaCfgClient. getResponseEntrySizeGreaterThan()Gets the "response-entry-size-greater-than" property.ValueOrExpression<Integer>AccessLogFilteringCriteriaCfgClient. getResponseEtimeGreaterThan()Gets the "response-etime-greater-than" property.ValueOrExpression<Integer>AccessLogFilteringCriteriaCfgClient. getResponseEtimeLessThan()Gets the "response-etime-less-than" property.ValueOrExpression<Integer>AdministrationConnectorCfgClient. getRestrictedClientConnectionLimit()Gets the "restricted-client-connection-limit" property.ValueOrExpression<Integer>ConnectionHandlerCfgClient. getRestrictedClientConnectionLimit()Gets the "restricted-client-connection-limit" property.ValueOrExpression<Integer>GlobalCfgClient. getRestrictedClientConnectionLimit()Gets the "restricted-client-connection-limit" property.ValueOrExpression<Integer>JmxConnectionHandlerCfgClient. getRmiPort()Gets the "rmi-port" property.ValueOrExpression<Long>TimeLimitLogRotationPolicyCfgClient. getRotationInterval()Gets the "rotation-interval" property.ValueOrExpression<Dn>SambaPasswordPluginCfgClient. getSambaAdministratorDn()Gets the "samba-administrator-dn" property.ValueOrExpression<BackendVlvIndexCfgDefn.Scope>BackendVlvIndexCfgClient. getScope()Gets the "scope" property.ValueOrExpression<VirtualAttributeCfgDefn.Scope>VirtualAttributeCfgClient. getScope()Gets the "scope" property.ValueOrExpression<Integer>ScramSha256PasswordStorageSchemeCfgClient. getScramIterations()Gets the "scram-iterations" property.ValueOrExpression<Integer>ScramSha512PasswordStorageSchemeCfgClient. getScramIterations()Gets the "scram-iterations" property.ValueOrExpression<Integer>AccessLogFilteringCriteriaCfgClient. getSearchResponseNentriesGreaterThan()Gets the "search-response-nentries-greater-than" property.ValueOrExpression<Integer>AccessLogFilteringCriteriaCfgClient. getSearchResponseNentriesLessThan()Gets the "search-response-nentries-less-than" property.ValueOrExpression<String>SnmpConnectionHandlerCfgClient. getSecurityAgentFile()Gets the "security-agent-file" property.ValueOrExpression<SnmpConnectionHandlerCfgDefn.SecurityLevel>SnmpConnectionHandlerCfgClient. getSecurityLevel()Gets the "security-level" property.ValueOrExpression<String>SmtpAccountStatusNotificationHandlerCfgClient. getSenderAddress()Gets the "sender-address" property.ValueOrExpression<String>SmtpAlertHandlerCfgClient. getSenderAddress()Gets the "sender-address" property.ValueOrExpression<String>DigestMd5SaslMechanismHandlerCfgClient. getServerFqdn()Gets the "server-fqdn" property.ValueOrExpression<String>GssapiSaslMechanismHandlerCfgClient. getServerFqdn()Gets the "server-fqdn" property.ValueOrExpression<String>GlobalCfgClient. getServerId()Gets the "server-id" property.ValueOrExpression<Long>CsvFileAccessLogPublisherCfgClient. getSignatureTimeInterval()Gets the "signature-time-interval" property.ValueOrExpression<Long>CsvFileHttpAccessLogPublisherCfgClient. getSignatureTimeInterval()Gets the "signature-time-interval" property.ValueOrExpression<GlobalCfgDefn.SingleStructuralObjectclassBehavior>GlobalCfgClient. getSingleStructuralObjectclassBehavior()Gets the "single-structural-objectclass-behavior" property.ValueOrExpression<Integer>GlobalCfgClient. getSizeLimit()Gets the "size-limit" property.ValueOrExpression<String>MailServerCfgClient. getSmtpServer()Gets the "smtp-server" property.ValueOrExpression<String>BackendVlvIndexCfgClient. getSortOrder()Gets the "sort-order" property.ValueOrExpression<com.forgerock.opendj.util.Host>LdapPassThroughAuthenticationPolicyCfgClient. getSourceAddress()Gets the "source-address" property.ValueOrExpression<com.forgerock.opendj.util.Host>ReplicationSynchronizationProviderCfgClient. getSourceAddress()Gets the "source-address" property.ValueOrExpression<HttpConnectionHandlerCfgDefn.SslClientAuthPolicy>HttpConnectionHandlerCfgClient. getSslClientAuthPolicy()Gets the "ssl-client-auth-policy" property.ValueOrExpression<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy>LdapConnectionHandlerCfgClient. getSslClientAuthPolicy()Gets the "ssl-client-auth-policy" property.ValueOrExpression<PasswordPolicyCfgDefn.StateUpdateFailurePolicy>PasswordPolicyCfgClient. getStateUpdateFailurePolicy()Gets the "state-update-failure-policy" property.ValueOrExpression<AttributeType>SubjectDnToUserAttributeCertificateMapperCfgClient. getSubjectAttribute()Gets the "subject-attribute" property.ValueOrExpression<Integer>BackendIndexCfgClient. getSubstringLength()Gets the "substring-length" property.ValueOrExpression<String>TaskBackendCfgClient. getTaskBackingFile()Gets the "task-backing-file" property.ValueOrExpression<Long>TaskBackendCfgClient. getTaskRetentionTime()Gets the "task-retention-time" property.ValueOrExpression<String>UserTemplateVirtualAttributeCfgClient. getTemplate()Gets the "template" property.ValueOrExpression<Integer>DebugTargetCfgClient. getThrowableStackFrames()Gets the "throwable-stack-frames" property.ValueOrExpression<Long>FileBasedAccessLogPublisherCfgClient. getTimeInterval()Gets the "time-interval" property.ValueOrExpression<Long>FileBasedAuditLogPublisherCfgClient. getTimeInterval()Gets the "time-interval" property.ValueOrExpression<Long>FileBasedDebugLogPublisherCfgClient. getTimeInterval()Gets the "time-interval" property.ValueOrExpression<Long>FileBasedErrorLogPublisherCfgClient. getTimeInterval()Gets the "time-interval" property.ValueOrExpression<Long>FileBasedHttpAccessLogPublisherCfgClient. getTimeInterval()Gets the "time-interval" property.ValueOrExpression<Long>GlobalCfgClient. getTimeLimit()Gets the "time-limit" property.ValueOrExpression<String>HttpOauth2OpenamAuthorizationMechanismCfgClient. getTokenInfoUrl()Gets the "token-info-url" property.ValueOrExpression<String>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getTokenIntrospectionUrl()Gets the "token-introspection-url" property.ValueOrExpression<Integer>SnmpConnectionHandlerCfgClient. getTrapPort()Gets the "trap-port" property.ValueOrExpression<String>SnmpConnectionHandlerCfgClient. getTrapsCommunity()Gets the "traps-community" property.ValueOrExpression<String>HttpOauth2OpenamAuthorizationMechanismCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.ValueOrExpression<String>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.ValueOrExpression<String>LdapPassThroughAuthenticationPolicyCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.ValueOrExpression<String>MailServerCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.ValueOrExpression<String>ReplicationServiceDiscoveryMechanismCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.ValueOrExpression<String>StaticServiceDiscoveryMechanismCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.ValueOrExpression<String>FileBasedTrustManagerProviderCfgClient. getTrustStoreFile()Gets the "trust-store-file" property.ValueOrExpression<String>FileBasedTrustManagerProviderCfgClient. getTrustStorePin()Gets the "trust-store-pin" property.ValueOrExpression<String>LdapTrustManagerProviderCfgClient. getTrustStorePin()Gets the "trust-store-pin" property.ValueOrExpression<String>Pkcs11TrustManagerProviderCfgClient. getTrustStorePin()Gets the "trust-store-pin" property.ValueOrExpression<String>FileBasedTrustManagerProviderCfgClient. getTrustStoreType()Gets the "trust-store-type" property.ValueOrExpression<String>Pkcs11TrustManagerProviderCfgClient. getTrustStoreType()Gets the "trust-store-type" property.ValueOrExpression<Long>BackendIndexCfgClient. getTtlAge()Gets the "ttl-age" property.ValueOrExpression<GlobalCfgDefn.UnauthenticatedRequestsPolicy>GlobalCfgClient. getUnauthenticatedRequestsPolicy()Gets the "unauthenticated-requests-policy" property.ValueOrExpression<Long>ReferentialIntegrityPluginCfgClient. getUpdateInterval()Gets the "update-interval" property.ValueOrExpression<Dn>HttpAnonymousAuthorizationMechanismCfgClient. getUserDn()Gets the "user-dn" property.ValueOrExpression<Integer>ReplicationServerCfgClient. getWeight()Gets the "weight" property.ValueOrExpression<GlobalCfgDefn.WritabilityMode>GlobalCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>LdifBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>LocalBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>MemoryBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>MonitorBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>NullBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>PluggableBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>SchemaBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<LocalBackendCfgDefn.WritabilityMode>TaskBackendCfgClient. getWritabilityMode()Gets the "writability-mode" property.ValueOrExpression<Boolean>HttpOauth2AuthorizationMechanismCfgClient. isAccessTokenCacheEnabled()Gets the "access-token-cache-enabled" property.ValueOrExpression<Boolean>GlobalCfgClient. isAddMissingRdnAttributes()Gets the "add-missing-rdn-attributes" property.ValueOrExpression<Boolean>GlobalCfgClient. isAllowAttributeNameExceptions()Gets the "allow-attribute-name-exceptions" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isAllowAttributeTypesWithNoSupOrSyntax()Gets the "allow-attribute-types-with-no-sup-or-syntax" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isAllowExpiredPasswordChanges()Gets the "allow-expired-password-changes" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isAllowLdapV2()Gets the "allow-ldap-v2" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isAllowMultiplePasswordValues()Gets the "allow-multiple-password-values" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isAllowPreEncodedPasswords()Gets the "allow-pre-encoded-passwords" property.ValueOrExpression<Boolean>MemberVirtualAttributeCfgClient. isAllowRetrievingMembership()Gets the "allow-retrieving-membership" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isAllowStartTls()Gets the "allow-start-tls" property.ValueOrExpression<Boolean>HttpConnectionHandlerCfgClient. isAllowTcpReuseAddress()Gets the "allow-tcp-reuse-address" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isAllowTcpReuseAddress()Gets the "allow-tcp-reuse-address" property.ValueOrExpression<Boolean>CharacterSetPasswordValidatorCfgClient. isAllowUnclassifiedCharacters()Gets the "allow-unclassified-characters" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isAllowUserPasswordChanges()Gets the "allow-user-password-changes" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isAllowZeroLengthValuesDirectoryString()Gets the "allow-zero-length-values-directory-string" property.ValueOrExpression<Boolean>HttpBasicAuthorizationMechanismCfgClient. isAltAuthenticationEnabled()Gets the "alt-authentication-enabled" property.ValueOrExpression<Boolean>HttpConnectionHandlerCfgClient. isApiDescriptorEnabled()Gets the "api-descriptor-enabled" property.ValueOrExpression<Boolean>FileBasedAccessLogPublisherCfgClient. isAppend()Gets the "append" property.ValueOrExpression<Boolean>FileBasedAuditLogPublisherCfgClient. isAppend()Gets the "append" property.ValueOrExpression<Boolean>FileBasedDebugLogPublisherCfgClient. isAppend()Gets the "append" property.ValueOrExpression<Boolean>FileBasedErrorLogPublisherCfgClient. isAppend()Gets the "append" property.ValueOrExpression<Boolean>FileBasedHttpAccessLogPublisherCfgClient. isAppend()Gets the "append" property.ValueOrExpression<Boolean>CsvFileAccessLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>CsvFileHttpAccessLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>FileBasedAccessLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>FileBasedAuditLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>FileBasedDebugLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>FileBasedErrorLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>FileBasedHttpAccessLogPublisherCfgClient. isAsynchronous()Gets the "asynchronous" property.ValueOrExpression<Boolean>GlobalAccessControlPolicyCfgClient. isAuthenticationRequired()Gets the "authentication-required" property.ValueOrExpression<Boolean>CsvFileAccessLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>CsvFileHttpAccessLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>FileBasedAccessLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>FileBasedAuditLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>FileBasedDebugLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>FileBasedErrorLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>FileBasedHttpAccessLogPublisherCfgClient. isAutoFlush()Gets the "auto-flush" property.ValueOrExpression<Boolean>GlobalCfgClient. isBindWithDnRequiresPassword()Gets the "bind-with-dn-requires-password" property.ValueOrExpression<Boolean>JsonEqualityMatchingRuleCfgClient. isCaseSensitiveStrings()Gets the "case-sensitive-strings" property.ValueOrExpression<Boolean>JsonOrderingMatchingRuleCfgClient. isCaseSensitiveStrings()Gets the "case-sensitive-strings" property.ValueOrExpression<Boolean>JsonQueryEqualityMatchingRuleCfgClient. isCaseSensitiveStrings()Gets the "case-sensitive-strings" property.ValueOrExpression<Boolean>DictionaryPasswordValidatorCfgClient. isCaseSensitiveValidation()Gets the "case-sensitive-validation" property.ValueOrExpression<Boolean>RepeatedCharactersPasswordValidatorCfgClient. isCaseSensitiveValidation()Gets the "case-sensitive-validation" property.ValueOrExpression<Boolean>UniqueCharactersPasswordValidatorCfgClient. isCaseSensitiveValidation()Gets the "case-sensitive-validation" property.ValueOrExpression<Boolean>ReferentialIntegrityPluginCfgClient. isCheckReferences()Gets the "check-references" property.ValueOrExpression<Boolean>GlobalCfgClient. isCheckSchema()Gets the "check-schema" property.ValueOrExpression<Boolean>AttributeValuePasswordValidatorCfgClient. isCheckSubstrings()Gets the "check-substrings" property.ValueOrExpression<Boolean>DictionaryPasswordValidatorCfgClient. isCheckSubstrings()Gets the "check-substrings" property.ValueOrExpression<Boolean>PluggableBackendCfgClient. isCompactEncoding()Gets the "compact-encoding" property.ValueOrExpression<Boolean>BackendIndexCfgClient. isConfidentialityEnabled()Gets the "confidentiality-enabled" property.ValueOrExpression<Boolean>PluggableBackendCfgClient. isConfidentialityEnabled()Gets the "confidentiality-enabled" property.ValueOrExpression<Boolean>ReplicationServerCfgClient. isConfidentialityEnabled()Gets the "confidentiality-enabled" property.ValueOrExpression<Boolean>JeBackendCfgClient. isDbLoggingFileHandlerOn()Gets the "db-logging-file-handler-on" property.ValueOrExpression<Boolean>JeBackendCfgClient. isDbRunCleaner()Gets the "db-run-cleaner" property.ValueOrExpression<Boolean>JeBackendCfgClient. isDbRunLogVerifier()Gets the "db-run-log-verifier" property.ValueOrExpression<Boolean>DebugTargetCfgClient. isDebugExceptionsOnly()Gets the "debug-exceptions-only" property.ValueOrExpression<Boolean>DebugLogPublisherCfgClient. isDefaultDebugExceptionsOnly()Gets the "default-debug-exceptions-only" property.ValueOrExpression<Boolean>DebugLogPublisherCfgClient. isDefaultIncludeThrowableCause()Gets the "default-include-throwable-cause" property.ValueOrExpression<Boolean>DebugLogPublisherCfgClient. isDefaultOmitMethodEntryArguments()Gets the "default-omit-method-entry-arguments" property.ValueOrExpression<Boolean>DebugLogPublisherCfgClient. isDefaultOmitMethodReturnValue()Gets the "default-omit-method-return-value" property.ValueOrExpression<Boolean>AccessControlHandlerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>AccountStatusNotificationHandlerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>AlertHandlerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>BackendCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>CertificateMapperCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>ConnectionHandlerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>DebugTargetCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>EntryCacheCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>ExtendedOperationHandlerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>HttpAuthorizationMechanismCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>HttpEndpointCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>IdentityMapperCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>KeyManagerProviderCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>LogPublisherCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>MailServerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>PasswordGeneratorCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>PasswordStorageSchemeCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>PasswordValidatorCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>PluginCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>ReplicationDomainCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>SaslMechanismHandlerCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>SchemaProviderCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>SynchronizationProviderCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>TrustManagerProviderCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>VirtualAttributeCfgClient. isEnabled()Gets the "enabled" property.ValueOrExpression<Boolean>PluggableBackendCfgClient. isEntriesCompressed()Gets the "entries-compressed" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isExpirePasswordsWithoutWarning()Gets the "expire-passwords-without-warning" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isForceChangeOnAdd()Gets the "force-change-on-add" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isForceChangeOnReset()Gets the "force-change-on-reset" property.ValueOrExpression<Boolean>ReplicationSynchronizationProviderCfgClient. isHealthChecksEnabled()Gets the "health-checks-enabled" property.ValueOrExpression<Boolean>JsonEqualityMatchingRuleCfgClient. isIgnoreWhiteSpace()Gets the "ignore-white-space" property.ValueOrExpression<Boolean>JsonOrderingMatchingRuleCfgClient. isIgnoreWhiteSpace()Gets the "ignore-white-space" property.ValueOrExpression<Boolean>JsonQueryEqualityMatchingRuleCfgClient. isIgnoreWhiteSpace()Gets the "ignore-white-space" property.ValueOrExpression<Boolean>DebugTargetCfgClient. isIncludeThrowableCause()Gets the "include-throwable-cause" property.ValueOrExpression<Boolean>PluggableBackendCfgClient. isIndexFilterAnalyzerEnabled()Gets the "index-filter-analyzer-enabled" property.ValueOrExpression<Boolean>AttributeCleanupPluginCfgClient. isInvokeForInternalOperations()Gets the "invoke-for-internal-operations" property.ValueOrExpression<Boolean>PasswordPolicyImportPluginCfgClient. isInvokeForInternalOperations()Gets the "invoke-for-internal-operations" property.ValueOrExpression<Boolean>PluginCfgClient. isInvokeForInternalOperations()Gets the "invoke-for-internal-operations" property.ValueOrExpression<Boolean>LdifBackendCfgClient. isIsPrivateBackend()Gets the "is-private-backend" property.ValueOrExpression<Boolean>GlobalCfgClient. isJeBackendSharedCacheEnabled()Gets the "je-backend-shared-cache-enabled" property.ValueOrExpression<Boolean>HttpConnectionHandlerCfgClient. isKeepStats()Gets the "keep-stats" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isKeepStats()Gets the "keep-stats" property.ValueOrExpression<Boolean>ReplicationSynchronizationProviderCfgClient. isLogChangenumber()Gets the "log-changenumber" property.ValueOrExpression<Boolean>CommonAuditAccessLogPublisherCfgClient. isLogControlOids()Gets the "log-control-oids" property.ValueOrExpression<Boolean>FileBasedAccessLogPublisherCfgClient. isLogControlOids()Gets the "log-control-oids" property.ValueOrExpression<Boolean>GlobalCfgClient. isNotifyAbandonedOperations()Gets the "notify-abandoned-operations" property.ValueOrExpression<Boolean>DebugTargetCfgClient. isOmitMethodEntryArguments()Gets the "omit-method-entry-arguments" property.ValueOrExpression<Boolean>DebugTargetCfgClient. isOmitMethodReturnValue()Gets the "omit-method-return-value" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isPasswordChangeRequiresCurrentPassword()Gets the "password-change-requires-current-password" property.ValueOrExpression<Boolean>AdministrationConnectorCfgClient. isProxyProtocolEnabled()Gets the "proxy-protocol-enabled" property.ValueOrExpression<Boolean>GlobalCfgClient. isProxyProtocolEnabled()Gets the "proxy-protocol-enabled" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isProxyProtocolEnabled()Gets the "proxy-protocol-enabled" property.ValueOrExpression<Boolean>SnmpConnectionHandlerCfgClient. isRegisteredMbean()Gets the "registered-mbean" property.ValueOrExpression<Boolean>GlobalAccessControlPolicyCfgClient. isRequestTargetDnEqualToUserDn()Gets the "request-target-dn-equal-to-user-dn" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isRequireSecureAuthentication()Gets the "require-secure-authentication" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isRequireSecurePasswordChanges()Gets the "require-secure-password-changes" property.ValueOrExpression<Boolean>GlobalCfgClient. isReturnBindErrorMessages()Gets the "return-bind-error-messages" property.ValueOrExpression<Boolean>Rest2ldapEndpointCfgClient. isReturnNullForMissingProperties()Gets the "return-null-for-missing-properties" property.ValueOrExpression<Boolean>ProxyBackendCfgClient. isRouteAll()Gets the "route-all" property.ValueOrExpression<Boolean>GlobalCfgClient. isSaveConfigOnSuccessfulStartup()Gets the "save-config-on-successful-startup" property.ValueOrExpression<Boolean>AccessLogFilteringCriteriaCfgClient. isSearchResponseIsIndexed()Gets the "search-response-is-indexed" property.ValueOrExpression<Boolean>SmtpAccountStatusNotificationHandlerCfgClient. isSendEmailAsHtml()Gets the "send-email-as-html" property.ValueOrExpression<Boolean>SmtpAccountStatusNotificationHandlerCfgClient. isSendMessageWithoutEndUserAddress()Gets the "send-message-without-end-user-address" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isSendRejectionNotice()Gets the "send-rejection-notice" property.ValueOrExpression<Boolean>RootDseBackendCfgClient. isShowAllAttributes()Gets the "show-all-attributes" property.ValueOrExpression<Boolean>SchemaBackendCfgClient. isShowAllAttributes()Gets the "show-all-attributes" property.ValueOrExpression<Boolean>RootDseBackendCfgClient. isShowSubordinateNamingContexts()Gets the "show-subordinate-naming-contexts" property.ValueOrExpression<Boolean>PasswordPolicyCfgClient. isSkipValidationForAdministrators()Gets the "skip-validation-for-administrators" property.ValueOrExpression<Boolean>ReplicationSynchronizationProviderCfgClient. isSolveConflicts()Gets the "solve-conflicts" property.ValueOrExpression<Boolean>ReplicationSynchronizationProviderCfgClient. isSslEncryption()Gets the "ssl-encryption" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isStrictFormatBoolean()Gets the "strict-format-boolean" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isStrictFormatCertificates()Gets the "strict-format-certificates" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isStrictFormatCountryString()Gets the "strict-format-country-string" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isStrictFormatJpegPhotos()Gets the "strict-format-jpeg-photos" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isStrictFormatTelephoneNumbers()Gets the "strict-format-telephone-numbers" property.ValueOrExpression<Boolean>CoreSchemaCfgClient. isStripSyntaxMinUpperBoundAttributeTypeDescription()Gets the "strip-syntax-min-upper-bound-attribute-type-description" property.ValueOrExpression<Boolean>AccessLogPublisherCfgClient. isSuppressInternalOperations()Gets the "suppress-internal-operations" property.ValueOrExpression<Boolean>AccessLogPublisherCfgClient. isSuppressSynchronizationOperations()Gets the "suppress-synchronization-operations" property.ValueOrExpression<Boolean>CsvFileAccessLogPublisherCfgClient. isTamperEvident()Gets the "tamper-evident" property.ValueOrExpression<Boolean>CsvFileHttpAccessLogPublisherCfgClient. isTamperEvident()Gets the "tamper-evident" property.ValueOrExpression<Boolean>AttributeValuePasswordValidatorCfgClient. isTestReversedPassword()Gets the "test-reversed-password" property.ValueOrExpression<Boolean>DictionaryPasswordValidatorCfgClient. isTestReversedPassword()Gets the "test-reversed-password" property.ValueOrExpression<Boolean>GlobalCfgClient. isTrustTransactionIds()Gets the "trust-transaction-ids" property.ValueOrExpression<Boolean>BackendIndexCfgClient. isTtlEnabled()Gets the "ttl-enabled" property.ValueOrExpression<Boolean>LdapPassThroughAuthenticationPolicyCfgClient. isUsePasswordCaching()Gets the "use-password-caching" property.ValueOrExpression<Boolean>ProxyBackendCfgClient. isUseSaslExternal()Gets the "use-sasl-external" property.ValueOrExpression<Boolean>ReplicationServiceDiscoveryMechanismCfgClient. isUseSaslExternal()Gets the "use-sasl-external" property.ValueOrExpression<Boolean>StaticServiceDiscoveryMechanismCfgClient. isUseSaslExternal()Gets the "use-sasl-external" property.ValueOrExpression<Boolean>HttpConnectionHandlerCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>JmxConnectionHandlerCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>LdapPassThroughAuthenticationPolicyCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>MailServerCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>ReplicationServiceDiscoveryMechanismCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>StaticServiceDiscoveryMechanismCfgClient. isUseSsl()Gets the "use-ssl" property.ValueOrExpression<Boolean>MailServerCfgClient. isUseStartTls()Gets the "use-start-tls" property.ValueOrExpression<Boolean>ReplicationServiceDiscoveryMechanismCfgClient. isUseStartTls()Gets the "use-start-tls" property.ValueOrExpression<Boolean>StaticServiceDiscoveryMechanismCfgClient. isUseStartTls()Gets the "use-start-tls" property.ValueOrExpression<Boolean>HttpConnectionHandlerCfgClient. isUseTcpKeepAlive()Gets the "use-tcp-keep-alive" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isUseTcpKeepAlive()Gets the "use-tcp-keep-alive" property.ValueOrExpression<Boolean>LdapPassThroughAuthenticationPolicyCfgClient. isUseTcpKeepAlive()Gets the "use-tcp-keep-alive" property.ValueOrExpression<Boolean>HttpConnectionHandlerCfgClient. isUseTcpNoDelay()Gets the "use-tcp-no-delay" property.ValueOrExpression<Boolean>LdapConnectionHandlerCfgClient. isUseTcpNoDelay()Gets the "use-tcp-no-delay" property.ValueOrExpression<Boolean>LdapPassThroughAuthenticationPolicyCfgClient. isUseTcpNoDelay()Gets the "use-tcp-no-delay" property.Methods in org.forgerock.opendj.server.config.client that return types with arguments of type ValueOrExpression Modifier and Type Method Description SortedSet<ValueOrExpression<String>>PasswordPolicyCfgClient. getAccountStatusNotificationHandler()Gets the "account-status-notification-handler" property.SortedSet<ValueOrExpression<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType>>ErrorLogAccountStatusNotificationHandlerCfgClient. getAccountStatusNotificationType()Gets the "account-status-notification-type" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>AdministrationConnectorCfgClient. getAdvertisedListenAddress()Gets the "advertised-listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>GlobalCfgClient. getAdvertisedListenAddress()Gets the "advertised-listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>HttpConnectionHandlerCfgClient. getAdvertisedListenAddress()Gets the "advertised-listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>LdapConnectionHandlerCfgClient. getAdvertisedListenAddress()Gets the "advertised-listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>ReplicationServerCfgClient. getAdvertisedListenAddress()Gets the "advertised-listen-address" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getAllowedAttribute()Gets the "allowed-attribute" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getAllowedAttributeException()Gets the "allowed-attribute-exception" property.SortedSet<ValueOrExpression<AddressMask>>AdministrationConnectorCfgClient. getAllowedClient()Gets the "allowed-client" property.SortedSet<ValueOrExpression<AddressMask>>ConnectionHandlerCfgClient. getAllowedClient()Gets the "allowed-client" property.SortedSet<ValueOrExpression<AddressMask>>GlobalCfgClient. getAllowedClient()Gets the "allowed-client" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getAllowedControl()Gets the "allowed-control" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getAllowedExtendedOperation()Gets the "allowed-extended-operation" property.SortedSet<ValueOrExpression<String>>SnmpConnectionHandlerCfgClient. getAllowedManager()Gets the "allowed-manager" property.SortedSet<ValueOrExpression<String>>GlobalCfgClient. getAllowedTask()Gets the "allowed-task" property.SortedSet<ValueOrExpression<String>>SnmpConnectionHandlerCfgClient. getAllowedUser()Gets the "allowed-user" property.SortedSet<ValueOrExpression<String>>ReplicationServerCfgClient. getAllowUpdatesServerFingerprints()Gets the "allow-updates-server-fingerprints" property.SortedSet<ValueOrExpression<AttributeType>>ReferentialIntegrityPluginCfgClient. getAttributeType()Gets the "attribute-type" property.SortedSet<ValueOrExpression<AttributeType>>SevenBitCleanPluginCfgClient. getAttributeType()Gets the "attribute-type" property.SortedSet<ValueOrExpression<String>>HttpEndpointCfgClient. getAuthorizationMechanism()Gets the "authorization-mechanism" property.SortedSet<ValueOrExpression<Dn>>LdifBackendCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>MemoryBackendCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>NullBackendCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>PluggableBackendCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>ProxyBackendCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>ReferentialIntegrityPluginCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>SevenBitCleanPluginCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>UniqueAttributePluginCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<Dn>>VirtualAttributeCfgClient. getBaseDn()Gets the "base-dn" property.SortedSet<ValueOrExpression<String>>BackendIndexCfgClient. getBigIndexIncludedAttributeValue()Gets the "big-index-included-attribute-value" property.SortedSet<ValueOrExpression<String>>BackendIndexCfgClient. getBigIndexMatchingRule()Gets the "big-index-matching-rule" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.HostPort>>ReplicationServiceDiscoveryMechanismCfgClient. getBootstrapReplicationServer()Gets the "bootstrap-replication-server" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.HostPort>>ReplicationSynchronizationProviderCfgClient. getBootstrapReplicationServer()Gets the "bootstrap-replication-server" property.SortedSet<ValueOrExpression<String>>ExternalSaslMechanismHandlerCfgClient. getCertificateMapper()Gets the "certificate-mapper" property.SortedSet<ValueOrExpression<Dn>>ReplicationServerCfgClient. getChangelogEnabledExcludedDomains()Gets the "changelog-enabled-excluded-domains" property.SortedSet<ValueOrExpression<String>>CharacterSetPasswordValidatorCfgClient. getCharacterSet()Gets the "character-set" property.SortedSet<ValueOrExpression<String>>CharacterSetPasswordValidatorCfgClient. getCharacterSetRanges()Gets the "character-set-ranges" property.SortedSet<ValueOrExpression<String>>ReferentialIntegrityPluginCfgClient. getCheckReferencesFilterCriteria()Gets the "check-references-filter-criteria" property.SortedSet<ValueOrExpression<AddressMask>>AccessLogFilteringCriteriaCfgClient. getConnectionClientAddressEqualTo()Gets the "connection-client-address-equal-to" property.SortedSet<ValueOrExpression<AddressMask>>GlobalAccessControlPolicyCfgClient. getConnectionClientAddressEqualTo()Gets the "connection-client-address-equal-to" property.SortedSet<ValueOrExpression<AddressMask>>AccessLogFilteringCriteriaCfgClient. getConnectionClientAddressNotEqualTo()Gets the "connection-client-address-not-equal-to" property.SortedSet<ValueOrExpression<AddressMask>>GlobalAccessControlPolicyCfgClient. getConnectionClientAddressNotEqualTo()Gets the "connection-client-address-not-equal-to" property.SortedSet<ValueOrExpression<Integer>>AccessLogFilteringCriteriaCfgClient. getConnectionPortEqualTo()Gets the "connection-port-equal-to" property.SortedSet<ValueOrExpression<Integer>>GlobalAccessControlPolicyCfgClient. getConnectionPortEqualTo()Gets the "connection-port-equal-to" property.SortedSet<ValueOrExpression<String>>AccessLogFilteringCriteriaCfgClient. getConnectionProtocolEqualTo()Gets the "connection-protocol-equal-to" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getConnectionProtocolEqualTo()Gets the "connection-protocol-equal-to" property.SortedSet<ValueOrExpression<String>>PasswordPolicyImportPluginCfgClient. getDefaultAuthPasswordStorageScheme()Gets the "default-auth-password-storage-scheme" property.SortedSet<ValueOrExpression<String>>PasswordPolicyCfgClient. getDefaultPasswordStorageScheme()Gets the "default-password-storage-scheme" property.SortedSet<ValueOrExpression<ErrorLogPublisherCfgDefn.DefaultSeverity>>ErrorLogPublisherCfgClient. getDefaultSeverity()Gets the "default-severity" property.SortedSet<ValueOrExpression<String>>PasswordPolicyImportPluginCfgClient. getDefaultUserPasswordStorageScheme()Gets the "default-user-password-storage-scheme" property.SortedSet<ValueOrExpression<AddressMask>>AdministrationConnectorCfgClient. getDeniedClient()Gets the "denied-client" property.SortedSet<ValueOrExpression<AddressMask>>ConnectionHandlerCfgClient. getDeniedClient()Gets the "denied-client" property.SortedSet<ValueOrExpression<AddressMask>>GlobalCfgClient. getDeniedClient()Gets the "denied-client" property.SortedSet<ValueOrExpression<String>>PasswordPolicyCfgClient. getDeprecatedPasswordStorageScheme()Gets the "deprecated-password-storage-scheme" property.SortedSet<ValueOrExpression<String>>AlertHandlerCfgClient. getDisabledAlertType()Gets the "disabled-alert-type" property.SortedSet<ValueOrExpression<String>>CoreSchemaCfgClient. getDisabledMatchingRule()Gets the "disabled-matching-rule" property.SortedSet<ValueOrExpression<GlobalCfgDefn.DisabledPrivilege>>GlobalCfgClient. getDisabledPrivilege()Gets the "disabled-privilege" property.SortedSet<ValueOrExpression<String>>CoreSchemaCfgClient. getDisabledSyntax()Gets the "disabled-syntax" property.SortedSet<ValueOrExpression<String>>ReplicationDomainCfgClient. getEclInclude()Gets the "ecl-include" property.SortedSet<ValueOrExpression<String>>ReplicationDomainCfgClient. getEclIncludeForDeletes()Gets the "ecl-include-for-deletes" property.SortedSet<ValueOrExpression<AttributeType>>SmtpAccountStatusNotificationHandlerCfgClient. getEmailAddressAttributeType()Gets the "email-address-attribute-type" property.SortedSet<ValueOrExpression<String>>AlertHandlerCfgClient. getEnabledAlertType()Gets the "enabled-alert-type" property.SortedSet<ValueOrExpression<AttributeType>>EntityTagVirtualAttributeCfgClient. getExcludedAttribute()Gets the "excluded-attribute" property.SortedSet<ValueOrExpression<String>>PemKeyManagerProviderCfgClient. getExcludedFilenamePattern()Gets the "excluded-filename-pattern" property.SortedSet<ValueOrExpression<String>>PemTrustManagerProviderCfgClient. getExcludedFilenamePattern()Gets the "excluded-filename-pattern" property.SortedSet<ValueOrExpression<String>>CrestMetricsEndpointCfgClient. getExcludedMetricPattern()Gets the "excluded-metric-pattern" property.SortedSet<ValueOrExpression<String>>GraphiteMonitorReporterPluginCfgClient. getExcludedMetricPattern()Gets the "excluded-metric-pattern" property.SortedSet<ValueOrExpression<String>>PrometheusEndpointCfgClient. getExcludedMetricPattern()Gets the "excluded-metric-pattern" property.SortedSet<ValueOrExpression<String>>FifoEntryCacheCfgClient. getExcludeFilter()Gets the "exclude-filter" property.SortedSet<ValueOrExpression<String>>SoftReferenceEntryCacheCfgClient. getExcludeFilter()Gets the "exclude-filter" property.SortedSet<ValueOrExpression<String>>VirtualAttributeCfgClient. getFilter()Gets the "filter" property.SortedSet<ValueOrExpression<String>>ReplicationDomainCfgClient. getFractionalExclude()Gets the "fractional-exclude" property.SortedSet<ValueOrExpression<String>>ReplicationDomainCfgClient. getFractionalInclude()Gets the "fractional-include" property.SortedSet<ValueOrExpression<String>>DseeCompatAccessControlHandlerCfgClient. getGlobalAci()Gets the "global-aci" property.SortedSet<ValueOrExpression<Dn>>VirtualAttributeCfgClient. getGroupDn()Gets the "group-dn" property.SortedSet<ValueOrExpression<String>>CramMd5SaslMechanismHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>DigestMd5SaslMechanismHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>GssapiSaslMechanismHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>HttpBasicAuthorizationMechanismCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>HttpOauth2AuthorizationMechanismCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>PasswordModifyExtendedOperationHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>PlainSaslMechanismHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>ScramSha256SaslMechanismHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>ScramSha512SaslMechanismHandlerCfgClient. getIdentityMapper()Gets the "identity-mapper" property.SortedSet<ValueOrExpression<String>>CrestMetricsEndpointCfgClient. getIncludedMetricPattern()Gets the "included-metric-pattern" property.SortedSet<ValueOrExpression<String>>GraphiteMonitorReporterPluginCfgClient. getIncludedMetricPattern()Gets the "included-metric-pattern" property.SortedSet<ValueOrExpression<String>>PrometheusEndpointCfgClient. getIncludedMetricPattern()Gets the "included-metric-pattern" property.SortedSet<ValueOrExpression<String>>FifoEntryCacheCfgClient. getIncludeFilter()Gets the "include-filter" property.SortedSet<ValueOrExpression<String>>SoftReferenceEntryCacheCfgClient. getIncludeFilter()Gets the "include-filter" property.SortedSet<ValueOrExpression<String>>JsonQueryEqualityMatchingRuleCfgClient. getIndexedField()Gets the "indexed-field" property.SortedSet<ValueOrExpression<String>>BackendIndexCfgClient. getIndexExtensibleMatchingRule()Gets the "index-extensible-matching-rule" property.SortedSet<ValueOrExpression<BackendIndexCfgDefn.IndexType>>BackendIndexCfgClient. getIndexType()Gets the "index-type" property.SortedSet<ValueOrExpression<String>>JeBackendCfgClient. getJeProperty()Gets the "je-property" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>AdministrationConnectorCfgClient. getListenAddress()Gets the "listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>GlobalCfgClient. getListenAddress()Gets the "listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>HttpConnectionHandlerCfgClient. getListenAddress()Gets the "listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>LdapConnectionHandlerCfgClient. getListenAddress()Gets the "listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>ReplicationServerCfgClient. getListenAddress()Gets the "listen-address" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.Host>>SnmpConnectionHandlerCfgClient. getListenAddress()Gets the "listen-address" property.SortedSet<ValueOrExpression<String>>CsvFileAccessLogPublisherCfgClient. getLogFieldBlacklist()Gets the "log-field-blacklist" property.SortedSet<ValueOrExpression<String>>CsvFileHttpAccessLogPublisherCfgClient. getLogFieldBlacklist()Gets the "log-field-blacklist" property.SortedSet<ValueOrExpression<String>>ExternalAccessLogPublisherCfgClient. getLogFieldBlacklist()Gets the "log-field-blacklist" property.SortedSet<ValueOrExpression<String>>ExternalHttpAccessLogPublisherCfgClient. getLogFieldBlacklist()Gets the "log-field-blacklist" property.SortedSet<ValueOrExpression<String>>JsonFileAccessLogPublisherCfgClient. getLogFieldBlacklist()Gets the "log-field-blacklist" property.SortedSet<ValueOrExpression<String>>JsonFileHttpAccessLogPublisherCfgClient. getLogFieldBlacklist()Gets the "log-field-blacklist" property.SortedSet<ValueOrExpression<String>>CsvFileHttpAccessLogPublisherCfgClient. getLogFieldWhitelist()Gets the "log-field-whitelist" property.SortedSet<ValueOrExpression<String>>ExternalHttpAccessLogPublisherCfgClient. getLogFieldWhitelist()Gets the "log-field-whitelist" property.SortedSet<ValueOrExpression<String>>JsonFileHttpAccessLogPublisherCfgClient. getLogFieldWhitelist()Gets the "log-field-whitelist" property.SortedSet<ValueOrExpression<AccessLogFilteringCriteriaCfgDefn.LogRecordType>>AccessLogFilteringCriteriaCfgClient. getLogRecordType()Gets the "log-record-type" property.SortedSet<ValueOrExpression<AttributeType>>LdapPassThroughAuthenticationPolicyCfgClient. getMappedAttribute()Gets the "mapped-attribute" property.SortedSet<ValueOrExpression<Dn>>LdapPassThroughAuthenticationPolicyCfgClient. getMappedSearchBaseDn()Gets the "mapped-search-base-dn" property.SortedSet<ValueOrExpression<AttributeType>>AttributeValuePasswordValidatorCfgClient. getMatchAttribute()Gets the "match-attribute" property.SortedSet<ValueOrExpression<AttributeType>>ExactMatchIdentityMapperCfgClient. getMatchAttribute()Gets the "match-attribute" property.SortedSet<ValueOrExpression<AttributeType>>RegularExpressionIdentityMapperCfgClient. getMatchAttribute()Gets the "match-attribute" property.SortedSet<ValueOrExpression<Dn>>ExactMatchIdentityMapperCfgClient. getMatchBaseDn()Gets the "match-base-dn" property.SortedSet<ValueOrExpression<Dn>>RegularExpressionIdentityMapperCfgClient. getMatchBaseDn()Gets the "match-base-dn" property.SortedSet<ValueOrExpression<String>>SmtpAccountStatusNotificationHandlerCfgClient. getMessageSubject()Gets the "message-subject" property.SortedSet<ValueOrExpression<String>>SmtpAccountStatusNotificationHandlerCfgClient. getMessageTemplateFile()Gets the "message-template-file" property.SortedSet<ValueOrExpression<String>>ErrorLogPublisherCfgClient. getOverrideSeverity()Gets the "override-severity" property.SortedSet<ValueOrExpression<Dn>>ProxyBackendCfgClient. getPartitionBaseDn()Gets the "partition-base-dn" property.SortedSet<ValueOrExpression<String>>RandomPasswordGeneratorCfgClient. getPasswordCharacterSet()Gets the "password-character-set" property.SortedSet<ValueOrExpression<String>>PasswordPolicyCfgClient. getPasswordValidator()Gets the "password-validator" property.SortedSet<ValueOrExpression<GlobalAccessControlPolicyCfgDefn.Permission>>GlobalAccessControlPolicyCfgClient. getPermission()Gets the "permission" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>AttributeCleanupPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>ChangeNumberControlPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>EntityTagPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>EntryUuidPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>GraphiteMonitorReporterPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>LastModPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>LdapAttributeDescriptionListPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>PasswordPolicyImportPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>PluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>ReferentialIntegrityPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>SambaPasswordPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>SevenBitCleanPluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>>UniqueAttributePluginCfgClient. getPluginType()Gets the "plugin-type" property.SortedSet<ValueOrExpression<String>>PasswordPolicyCfgClient. getPreviousLastLoginTimeFormat()Gets the "previous-last-login-time-format" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.HostPort>>LdapPassThroughAuthenticationPolicyCfgClient. getPrimaryRemoteLdapServer()Gets the "primary-remote-ldap-server" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.HostPort>>StaticServiceDiscoveryMechanismCfgClient. getPrimaryServer()Gets the "primary-server" property.SortedSet<ValueOrExpression<String>>GlobalCfgClient. getProxiedAuthorizationIdentityMapper()Gets the "proxied-authorization-identity-mapper" property.SortedSet<ValueOrExpression<AddressMask>>AdministrationConnectorCfgClient. getProxyProtocolAllowedClient()Gets the "proxy-protocol-allowed-client" property.SortedSet<ValueOrExpression<AddressMask>>GlobalCfgClient. getProxyProtocolAllowedClient()Gets the "proxy-protocol-allowed-client" property.SortedSet<ValueOrExpression<AddressMask>>LdapConnectionHandlerCfgClient. getProxyProtocolAllowedClient()Gets the "proxy-protocol-allowed-client" property.SortedSet<ValueOrExpression<SambaPasswordPluginCfgDefn.PwdSyncPolicy>>SambaPasswordPluginCfgClient. getPwdSyncPolicy()Gets the "pwd-sync-policy" property.SortedSet<ValueOrExpression<String>>SmtpAccountStatusNotificationHandlerCfgClient. getRecipientAddress()Gets the "recipient-address" property.SortedSet<ValueOrExpression<String>>SmtpAlertHandlerCfgClient. getRecipientAddress()Gets the "recipient-address" property.SortedSet<ValueOrExpression<String>>ReplicationSynchronizationProviderCfgClient. getReferralsUrl()Gets the "referrals-url" property.SortedSet<ValueOrExpression<String>>AttributeCleanupPluginCfgClient. getRemoveInboundAttributes()Gets the "remove-inbound-attributes" property.SortedSet<ValueOrExpression<String>>AttributeCleanupPluginCfgClient. getRenameInboundAttributes()Gets the "rename-inbound-attributes" property.SortedSet<ValueOrExpression<String>>AccessLogFilteringCriteriaCfgClient. getRequestTargetDnEqualTo()Gets the "request-target-dn-equal-to" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getRequestTargetDnEqualTo()Gets the "request-target-dn-equal-to" property.SortedSet<ValueOrExpression<String>>AccessLogFilteringCriteriaCfgClient. getRequestTargetDnNotEqualTo()Gets the "request-target-dn-not-equal-to" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getRequestTargetDnNotEqualTo()Gets the "request-target-dn-not-equal-to" property.SortedSet<ValueOrExpression<String>>HttpOauth2AuthorizationMechanismCfgClient. getRequiredScope()Gets the "required-scope" property.SortedSet<ValueOrExpression<Integer>>AccessLogFilteringCriteriaCfgClient. getResponseResultCodeEqualTo()Gets the "response-result-code-equal-to" property.SortedSet<ValueOrExpression<Integer>>AccessLogFilteringCriteriaCfgClient. getResponseResultCodeNotEqualTo()Gets the "response-result-code-not-equal-to" property.SortedSet<ValueOrExpression<AddressMask>>AdministrationConnectorCfgClient. getRestrictedClient()Gets the "restricted-client" property.SortedSet<ValueOrExpression<AddressMask>>ConnectionHandlerCfgClient. getRestrictedClient()Gets the "restricted-client" property.SortedSet<ValueOrExpression<AddressMask>>GlobalCfgClient. getRestrictedClient()Gets the "restricted-client" property.SortedSet<ValueOrExpression<String>>CsvFileAccessLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>CsvFileHttpAccessLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>FileBasedAccessLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>FileBasedAuditLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>FileBasedDebugLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>FileBasedErrorLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>FileBasedHttpAccessLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>JsonFileAccessLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>JsonFileHttpAccessLogPublisherCfgClient. getRetentionPolicy()Gets the "retention-policy" property.SortedSet<ValueOrExpression<String>>CsvFileAccessLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>CsvFileHttpAccessLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>FileBasedAccessLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>FileBasedAuditLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>FileBasedDebugLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>FileBasedErrorLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>FileBasedHttpAccessLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>JsonFileAccessLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<String>>JsonFileHttpAccessLogPublisherCfgClient. getRotationPolicy()Gets the "rotation-policy" property.SortedSet<ValueOrExpression<Dn>>SchemaBackendCfgClient. getSchemaEntryDn()Gets the "schema-entry-dn" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.HostPort>>LdapPassThroughAuthenticationPolicyCfgClient. getSecondaryRemoteLdapServer()Gets the "secondary-remote-ldap-server" property.SortedSet<ValueOrExpression<com.forgerock.opendj.util.HostPort>>StaticServiceDiscoveryMechanismCfgClient. getSecondaryServer()Gets the "secondary-server" property.SortedSet<ValueOrExpression<String>>ProxyBackendCfgClient. getShard()Gets the "shard" property.SortedSet<ValueOrExpression<String>>MailServerCfgClient. getSmtpProperty()Gets the "smtp-property" property.SortedSet<ValueOrExpression<String>>AdministrationConnectorCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>HttpConnectionHandlerCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>HttpOauth2OpenamAuthorizationMechanismCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>JmxConnectionHandlerCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>LdapConnectionHandlerCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>ProxyBackendCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>ReplicationServiceDiscoveryMechanismCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>ReplicationSynchronizationProviderCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>StaticServiceDiscoveryMechanismCfgClient. getSslCertNickname()Gets the "ssl-cert-nickname" property.SortedSet<ValueOrExpression<String>>AdministrationConnectorCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>HttpConnectionHandlerCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>HttpOauth2OpenamAuthorizationMechanismCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>LdapConnectionHandlerCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>LdapPassThroughAuthenticationPolicyCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>ReplicationServiceDiscoveryMechanismCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>ReplicationSynchronizationProviderCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>StaticServiceDiscoveryMechanismCfgClient. getSslCipherSuite()Gets the "ssl-cipher-suite" property.SortedSet<ValueOrExpression<String>>AdministrationConnectorCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>HttpConnectionHandlerCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>HttpOauth2OpenamAuthorizationMechanismCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>LdapConnectionHandlerCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>LdapPassThroughAuthenticationPolicyCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>ReplicationServiceDiscoveryMechanismCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>ReplicationSynchronizationProviderCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>StaticServiceDiscoveryMechanismCfgClient. getSslProtocol()Gets the "ssl-protocol" property.SortedSet<ValueOrExpression<String>>SubjectAttributeToUserAttributeCertificateMapperCfgClient. getSubjectAttributeMapping()Gets the "subject-attribute-mapping" property.SortedSet<ValueOrExpression<Dn>>GlobalCfgClient. getSubordinateBaseDn()Gets the "subordinate-base-dn" property.SortedSet<ValueOrExpression<String>>FixedTimeLogRotationPolicyCfgClient. getTimeOfDay()Gets the "time-of-day" property.SortedSet<ValueOrExpression<String>>SnmpConnectionHandlerCfgClient. getTrapsDestination()Gets the "traps-destination" property.SortedSet<ValueOrExpression<String>>AdministrationConnectorCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.SortedSet<ValueOrExpression<String>>HttpConnectionHandlerCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.SortedSet<ValueOrExpression<String>>LdapConnectionHandlerCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.SortedSet<ValueOrExpression<String>>ReplicationSynchronizationProviderCfgClient. getTrustManagerProvider()Gets the "trust-manager-provider" property.SortedSet<ValueOrExpression<AttributeType>>UniqueAttributePluginCfgClient. getType()Gets the "type" property.SortedSet<ValueOrExpression<Dn>>FingerprintCertificateMapperCfgClient. getUserBaseDn()Gets the "user-base-dn" property.SortedSet<ValueOrExpression<Dn>>SubjectAttributeToUserAttributeCertificateMapperCfgClient. getUserBaseDn()Gets the "user-base-dn" property.SortedSet<ValueOrExpression<Dn>>SubjectDnToUserAttributeCertificateMapperCfgClient. getUserBaseDn()Gets the "user-base-dn" property.SortedSet<ValueOrExpression<String>>AccessLogFilteringCriteriaCfgClient. getUserDnEqualTo()Gets the "user-dn-equal-to" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getUserDnEqualTo()Gets the "user-dn-equal-to" property.SortedSet<ValueOrExpression<String>>AccessLogFilteringCriteriaCfgClient. getUserDnNotEqualTo()Gets the "user-dn-not-equal-to" property.SortedSet<ValueOrExpression<String>>GlobalAccessControlPolicyCfgClient. getUserDnNotEqualTo()Gets the "user-dn-not-equal-to" property.SortedSet<ValueOrExpression<Dn>>AccessLogFilteringCriteriaCfgClient. getUserIsMemberOf()Gets the "user-is-member-of" property.SortedSet<ValueOrExpression<Dn>>AccessLogFilteringCriteriaCfgClient. getUserIsNotMemberOf()Gets the "user-is-not-member-of" property.SortedSet<ValueOrExpression<String>>UserDefinedVirtualAttributeCfgClient. getValue()Gets the "value" property.Methods in org.forgerock.opendj.server.config.client with parameters of type ValueOrExpression Modifier and Type Method Description voidHttpConnectionHandlerCfgClient. setAcceptBacklog(ValueOrExpression<Integer> value)Sets the "accept-backlog" property.voidLdapConnectionHandlerCfgClient. setAcceptBacklog(ValueOrExpression<Integer> value)Sets the "accept-backlog" property.voidHttpOauth2AuthorizationMechanismCfgClient. setAccessTokenCacheEnabled(ValueOrExpression<Boolean> value)Sets the "access-token-cache-enabled" property.voidHttpOauth2AuthorizationMechanismCfgClient. setAccessTokenCacheExpiration(ValueOrExpression<Long> value)Sets the "access-token-cache-expiration" property.voidHttpOauth2FileAuthorizationMechanismCfgClient. setAccessTokenDirectory(ValueOrExpression<String> value)Sets the "access-token-directory" property.voidGlobalCfgClient. setAddMissingRdnAttributes(ValueOrExpression<Boolean> value)Sets the "add-missing-rdn-attributes" property.voidGlobalCfgClient. setAllowAttributeNameExceptions(ValueOrExpression<Boolean> value)Sets the "allow-attribute-name-exceptions" property.voidCoreSchemaCfgClient. setAllowAttributeTypesWithNoSupOrSyntax(ValueOrExpression<Boolean> value)Sets the "allow-attribute-types-with-no-sup-or-syntax" property.voidPasswordPolicyCfgClient. setAllowExpiredPasswordChanges(ValueOrExpression<Boolean> value)Sets the "allow-expired-password-changes" property.voidLdapConnectionHandlerCfgClient. setAllowLdapV2(ValueOrExpression<Boolean> value)Sets the "allow-ldap-v2" property.voidPasswordPolicyCfgClient. setAllowMultiplePasswordValues(ValueOrExpression<Boolean> value)Sets the "allow-multiple-password-values" property.voidPasswordPolicyCfgClient. setAllowPreEncodedPasswords(ValueOrExpression<Boolean> value)Sets the "allow-pre-encoded-passwords" property.voidMemberVirtualAttributeCfgClient. setAllowRetrievingMembership(ValueOrExpression<Boolean> value)Sets the "allow-retrieving-membership" property.voidLdapConnectionHandlerCfgClient. setAllowStartTls(ValueOrExpression<Boolean> value)Sets the "allow-start-tls" property.voidHttpConnectionHandlerCfgClient. setAllowTcpReuseAddress(ValueOrExpression<Boolean> value)Sets the "allow-tcp-reuse-address" property.voidLdapConnectionHandlerCfgClient. setAllowTcpReuseAddress(ValueOrExpression<Boolean> value)Sets the "allow-tcp-reuse-address" property.voidCharacterSetPasswordValidatorCfgClient. setAllowUnclassifiedCharacters(ValueOrExpression<Boolean> value)Sets the "allow-unclassified-characters" property.voidReplicationServerCfgClient. setAllowUpdatesPolicy(ValueOrExpression<ReplicationServerCfgDefn.AllowUpdatesPolicy> value)Sets the "allow-updates-policy" property.voidPasswordPolicyCfgClient. setAllowUserPasswordChanges(ValueOrExpression<Boolean> value)Sets the "allow-user-password-changes" property.voidCoreSchemaCfgClient. setAllowZeroLengthValuesDirectoryString(ValueOrExpression<Boolean> value)Sets the "allow-zero-length-values-directory-string" property.voidHttpBasicAuthorizationMechanismCfgClient. setAltAuthenticationEnabled(ValueOrExpression<Boolean> value)Sets the "alt-authentication-enabled" property.voidHttpBasicAuthorizationMechanismCfgClient. setAltPasswordHeader(ValueOrExpression<String> value)Sets the "alt-password-header" property.voidHttpBasicAuthorizationMechanismCfgClient. setAltUsernameHeader(ValueOrExpression<String> value)Sets the "alt-username-header" property.voidHttpConnectionHandlerCfgClient. setApiDescriptorEnabled(ValueOrExpression<Boolean> value)Sets the "api-descriptor-enabled" property.voidFileBasedAccessLogPublisherCfgClient. setAppend(ValueOrExpression<Boolean> value)Sets the "append" property.voidFileBasedAuditLogPublisherCfgClient. setAppend(ValueOrExpression<Boolean> value)Sets the "append" property.voidFileBasedDebugLogPublisherCfgClient. setAppend(ValueOrExpression<Boolean> value)Sets the "append" property.voidFileBasedErrorLogPublisherCfgClient. setAppend(ValueOrExpression<Boolean> value)Sets the "append" property.voidFileBasedHttpAccessLogPublisherCfgClient. setAppend(ValueOrExpression<Boolean> value)Sets the "append" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2Iterations(ValueOrExpression<Integer> value)Sets the "argon2-iterations" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2Length(ValueOrExpression<Integer> value)Sets the "argon2-length" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2Memory(ValueOrExpression<Integer> value)Sets the "argon2-memory" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2MigrationMemory(ValueOrExpression<Integer> value)Sets the "argon2-migration-memory" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2Parallelism(ValueOrExpression<Integer> value)Sets the "argon2-parallelism" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2SaltLength(ValueOrExpression<Integer> value)Sets the "argon2-salt-length" property.voidArgon2PasswordStorageSchemeCfgClient. setArgon2Variant(ValueOrExpression<Argon2PasswordStorageSchemeCfgDefn.Argon2Variant> value)Sets the "argon2-variant" property.voidCsvFileAccessLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidCsvFileHttpAccessLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidFileBasedAccessLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidFileBasedAuditLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidFileBasedDebugLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidFileBasedErrorLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidFileBasedHttpAccessLogPublisherCfgClient. setAsynchronous(ValueOrExpression<Boolean> value)Sets the "asynchronous" property.voidBackendIndexCfgClient. setAttribute(ValueOrExpression<AttributeType> value)Sets the "attribute" property.voidCollectiveAttributeSubentriesVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidEntityTagVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidEntryDnVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidEntryUuidVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidGoverningStructureRuleVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidHasSubordinatesVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidIsMemberOfVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidNumSubordinatesVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidPasswordExpirationTimeVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidPasswordPolicySubentryVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidStructuralObjectClassVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidSubschemaSubentryVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidVirtualAttributeCfgClient. setAttributeType(ValueOrExpression<AttributeType> value)Sets the "attribute-type" property.voidGlobalAccessControlPolicyCfgClient. setAuthenticationRequired(ValueOrExpression<Boolean> value)Sets the "authentication-required" property.voidMailServerCfgClient. setAuthPassword(ValueOrExpression<String> value)Sets the "auth-password" property.voidMailServerCfgClient. setAuthUsername(ValueOrExpression<String> value)Sets the "auth-username" property.voidHttpOauth2AuthorizationMechanismCfgClient. setAuthzidJsonPointer(ValueOrExpression<String> value)Sets the "authzid-json-pointer" property.voidCsvFileAccessLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidCsvFileHttpAccessLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidFileBasedAccessLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidFileBasedAuditLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidFileBasedDebugLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidFileBasedErrorLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidFileBasedHttpAccessLogPublisherCfgClient. setAutoFlush(ValueOrExpression<Boolean> value)Sets the "auto-flush" property.voidProxyBackendCfgClient. setAvailabilityCheckInterval(ValueOrExpression<Long> value)Sets the "availability-check-interval" property.voidProxyBackendCfgClient. setAvailabilityCheckSearchRequestBaseDn(ValueOrExpression<Dn> value)Sets the "availability-check-search-request-base-dn" property.voidProxyBackendCfgClient. setAvailabilityCheckSearchRequestFilter(ValueOrExpression<String> value)Sets the "availability-check-search-request-filter" property.voidProxyBackendCfgClient. setAvailabilityCheckTimeout(ValueOrExpression<Long> value)Sets the "availability-check-timeout" property.voidBackendCfgClient. setBackendId(ValueOrExpression<String> value)Sets the "backend-id" property.voidBackendVlvIndexCfgClient. setBaseDn(ValueOrExpression<Dn> value)Sets the "base-dn" property.voidHttpOauth2CtsAuthorizationMechanismCfgClient. setBaseDn(ValueOrExpression<String> value)Sets the "base-dn" property.voidLdapKeyManagerProviderCfgClient. setBaseDn(ValueOrExpression<Dn> value)Sets the "base-dn" property.voidLdapTrustManagerProviderCfgClient. setBaseDn(ValueOrExpression<Dn> value)Sets the "base-dn" property.voidReplicationDomainCfgClient. setBaseDn(ValueOrExpression<Dn> value)Sets the "base-dn" property.voidHttpEndpointCfgClient. setBasePath(ValueOrExpression<String> value)Sets the "base-path" property.voidBcryptPasswordStorageSchemeCfgClient. setBcryptCost(ValueOrExpression<Integer> value)Sets the "bcrypt-cost" property.voidReplicationServiceDiscoveryMechanismCfgClient. setBindDn(ValueOrExpression<Dn> value)Sets the "bind-dn" property.voidReplicationServiceDiscoveryMechanismCfgClient. setBindPassword(ValueOrExpression<String> value)Sets the "bind-password" property.voidGlobalCfgClient. setBindWithDnRequiresPassword(ValueOrExpression<Boolean> value)Sets the "bind-with-dn-requires-password" property.voidFileBasedAccessLogPublisherCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidFileBasedAuditLogPublisherCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidFileBasedDebugLogPublisherCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidFileBasedErrorLogPublisherCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidFileBasedHttpAccessLogPublisherCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidHttpConnectionHandlerCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidLdapConnectionHandlerCfgClient. setBufferSize(ValueOrExpression<Long> value)Sets the "buffer-size" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setCachedPasswordStorageScheme(ValueOrExpression<String> value)Sets the "cached-password-storage-scheme" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setCachedPasswordTtl(ValueOrExpression<Long> value)Sets the "cached-password-ttl" property.voidEntryCacheCfgClient. setCacheLevel(ValueOrExpression<Integer> value)Sets the "cache-level" property.voidJsonEqualityMatchingRuleCfgClient. setCaseSensitiveStrings(ValueOrExpression<Boolean> value)Sets the "case-sensitive-strings" property.voidJsonOrderingMatchingRuleCfgClient. setCaseSensitiveStrings(ValueOrExpression<Boolean> value)Sets the "case-sensitive-strings" property.voidJsonQueryEqualityMatchingRuleCfgClient. setCaseSensitiveStrings(ValueOrExpression<Boolean> value)Sets the "case-sensitive-strings" property.voidDictionaryPasswordValidatorCfgClient. setCaseSensitiveValidation(ValueOrExpression<Boolean> value)Sets the "case-sensitive-validation" property.voidRepeatedCharactersPasswordValidatorCfgClient. setCaseSensitiveValidation(ValueOrExpression<Boolean> value)Sets the "case-sensitive-validation" property.voidUniqueCharactersPasswordValidatorCfgClient. setCaseSensitiveValidation(ValueOrExpression<Boolean> value)Sets the "case-sensitive-validation" property.voidExternalSaslMechanismHandlerCfgClient. setCertificateAttribute(ValueOrExpression<AttributeType> value)Sets the "certificate-attribute" property.voidExternalSaslMechanismHandlerCfgClient. setCertificateValidationPolicy(ValueOrExpression<ExternalSaslMechanismHandlerCfgDefn.CertificateValidationPolicy> value)Sets the "certificate-validation-policy" property.voidReplicationServerCfgClient. setChangelogEnabled(ValueOrExpression<ReplicationServerCfgDefn.ChangelogEnabled> value)Sets the "changelog-enabled" property.voidReplicationSynchronizationProviderCfgClient. setChangetimeHeartbeatInterval(ValueOrExpression<Long> value)Sets the "changetime-heartbeat-interval" property.voidReferentialIntegrityPluginCfgClient. setCheckReferences(ValueOrExpression<Boolean> value)Sets the "check-references" property.voidReferentialIntegrityPluginCfgClient. setCheckReferencesScopeCriteria(ValueOrExpression<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria> value)Sets the "check-references-scope-criteria" property.voidGlobalCfgClient. setCheckSchema(ValueOrExpression<Boolean> value)Sets the "check-schema" property.voidAttributeValuePasswordValidatorCfgClient. setCheckSubstrings(ValueOrExpression<Boolean> value)Sets the "check-substrings" property.voidDictionaryPasswordValidatorCfgClient. setCheckSubstrings(ValueOrExpression<Boolean> value)Sets the "check-substrings" property.voidEntityTagVirtualAttributeCfgClient. setChecksumAlgorithm(ValueOrExpression<EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm> value)Sets the "checksum-algorithm" property.voidCryptoManagerCfgClient. setCipherKeyLength(ValueOrExpression<Integer> value)Sets the "cipher-key-length" property.voidPluggableBackendCfgClient. setCipherKeyLength(ValueOrExpression<Integer> value)Sets the "cipher-key-length" property.voidReplicationServerCfgClient. setCipherKeyLength(ValueOrExpression<Integer> value)Sets the "cipher-key-length" property.voidCryptoManagerCfgClient. setCipherTransformation(ValueOrExpression<String> value)Sets the "cipher-transformation" property.voidPluggableBackendCfgClient. setCipherTransformation(ValueOrExpression<String> value)Sets the "cipher-transformation" property.voidReplicationServerCfgClient. setCipherTransformation(ValueOrExpression<String> value)Sets the "cipher-transformation" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setClientId(ValueOrExpression<String> value)Sets the "client-id" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setClientSecret(ValueOrExpression<String> value)Sets the "client-secret" property.voidSnmpConnectionHandlerCfgClient. setCommunity(ValueOrExpression<String> value)Sets the "community" property.voidPluggableBackendCfgClient. setCompactEncoding(ValueOrExpression<Boolean> value)Sets the "compact-encoding" property.voidBackendIndexCfgClient. setConfidentialityEnabled(ValueOrExpression<Boolean> value)Sets the "confidentiality-enabled" property.voidPluggableBackendCfgClient. setConfidentialityEnabled(ValueOrExpression<Boolean> value)Sets the "confidentiality-enabled" property.voidReplicationServerCfgClient. setConfidentialityEnabled(ValueOrExpression<Boolean> value)Sets the "confidentiality-enabled" property.voidRest2ldapEndpointCfgClient. setConfigDirectory(ValueOrExpression<String> value)Sets the "config-directory" property.voidExternalAccessLogPublisherCfgClient. setConfigFile(ValueOrExpression<String> value)Sets the "config-file" property.voidExternalHttpAccessLogPublisherCfgClient. setConfigFile(ValueOrExpression<String> value)Sets the "config-file" property.voidCollectiveAttributeSubentriesVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidEntityTagVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidEntryDnVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidEntryUuidVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidGoverningStructureRuleVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidHasSubordinatesVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidIsMemberOfVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidMemberVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidNumSubordinatesVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidPasswordExpirationTimeVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidPasswordPolicySubentryVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidStructuralObjectClassVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidSubschemaSubentryVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidVirtualAttributeCfgClient. setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)Sets the "conflict-behavior" property.voidGlobalAccessControlPolicyCfgClient. setConnectionMinimumSsf(ValueOrExpression<Integer> value)Sets the "connection-minimum-ssf" property.voidProxyBackendCfgClient. setConnectionPoolIdleTimeout(ValueOrExpression<Long> value)Sets the "connection-pool-idle-timeout" property.voidProxyBackendCfgClient. setConnectionPoolMaxSize(ValueOrExpression<Integer> value)Sets the "connection-pool-max-size" property.voidProxyBackendCfgClient. setConnectionPoolMinSize(ValueOrExpression<Integer> value)Sets the "connection-pool-min-size" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setConnectionTimeout(ValueOrExpression<Long> value)Sets the "connection-timeout" property.voidProxyBackendCfgClient. setConnectionTimeout(ValueOrExpression<Long> value)Sets the "connection-timeout" property.voidReplicationSynchronizationProviderCfgClient. setConnectionTimeout(ValueOrExpression<Long> value)Sets the "connection-timeout" property.voidCryptPasswordStorageSchemeCfgClient. setCryptPasswordStorageEncryptionAlgorithm(ValueOrExpression<CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm> value)Sets the "crypt-password-storage-encryption-algorithm" property.voidCsvFileAccessLogPublisherCfgClient. setCsvDelimiterChar(ValueOrExpression<String> value)Sets the "csv-delimiter-char" property.voidCsvFileHttpAccessLogPublisherCfgClient. setCsvDelimiterChar(ValueOrExpression<String> value)Sets the "csv-delimiter-char" property.voidCsvFileAccessLogPublisherCfgClient. setCsvEolSymbols(ValueOrExpression<String> value)Sets the "csv-eol-symbols" property.voidCsvFileHttpAccessLogPublisherCfgClient. setCsvEolSymbols(ValueOrExpression<String> value)Sets the "csv-eol-symbols" property.voidCsvFileAccessLogPublisherCfgClient. setCsvQuoteChar(ValueOrExpression<String> value)Sets the "csv-quote-char" property.voidCsvFileHttpAccessLogPublisherCfgClient. setCsvQuoteChar(ValueOrExpression<String> value)Sets the "csv-quote-char" property.voidJeBackendCfgClient. setDbCacheMode(ValueOrExpression<JeBackendCfgDefn.DbCacheMode> value)Sets the "db-cache-mode" property.voidJeBackendCfgClient. setDbCachePercent(ValueOrExpression<Integer> value)Sets the "db-cache-percent" property.voidJeBackendCfgClient. setDbCacheSize(ValueOrExpression<Long> value)Sets the "db-cache-size" property.voidJeBackendCfgClient. setDbCheckpointerBytesInterval(ValueOrExpression<Long> value)Sets the "db-checkpointer-bytes-interval" property.voidJeBackendCfgClient. setDbCheckpointerWakeupInterval(ValueOrExpression<Long> value)Sets the "db-checkpointer-wakeup-interval" property.voidJeBackendCfgClient. setDbCleanerMinUtilization(ValueOrExpression<Integer> value)Sets the "db-cleaner-min-utilization" property.voidJeBackendCfgClient. setDbDirectory(ValueOrExpression<String> value)Sets the "db-directory" property.voidJeBackendCfgClient. setDbDirectoryPermissions(ValueOrExpression<String> value)Sets the "db-directory-permissions" property.voidJeBackendCfgClient. setDbDurability(ValueOrExpression<JeBackendCfgDefn.DbDurability> value)Sets the "db-durability" property.voidJeBackendCfgClient. setDbEvictorCoreThreads(ValueOrExpression<Integer> value)Sets the "db-evictor-core-threads" property.voidJeBackendCfgClient. setDbEvictorKeepAlive(ValueOrExpression<Long> value)Sets the "db-evictor-keep-alive" property.voidJeBackendCfgClient. setDbEvictorMaxThreads(ValueOrExpression<Integer> value)Sets the "db-evictor-max-threads" property.voidJeBackendCfgClient. setDbLogFilecacheSize(ValueOrExpression<Integer> value)Sets the "db-log-filecache-size" property.voidJeBackendCfgClient. setDbLogFileMax(ValueOrExpression<Long> value)Sets the "db-log-file-max" property.voidJeBackendCfgClient. setDbLoggingFileHandlerOn(ValueOrExpression<Boolean> value)Sets the "db-logging-file-handler-on" property.voidJeBackendCfgClient. setDbLoggingLevel(ValueOrExpression<String> value)Sets the "db-logging-level" property.voidJeBackendCfgClient. setDbLogVerifierSchedule(ValueOrExpression<String> value)Sets the "db-log-verifier-schedule" property.voidJeBackendCfgClient. setDbNumCleanerThreads(ValueOrExpression<Integer> value)Sets the "db-num-cleaner-threads" property.voidJeBackendCfgClient. setDbNumLockTables(ValueOrExpression<Integer> value)Sets the "db-num-lock-tables" property.voidJeBackendCfgClient. setDbRunCleaner(ValueOrExpression<Boolean> value)Sets the "db-run-cleaner" property.voidJeBackendCfgClient. setDbRunLogVerifier(ValueOrExpression<Boolean> value)Sets the "db-run-log-verifier" property.voidDebugTargetCfgClient. setDebugExceptionsOnly(ValueOrExpression<Boolean> value)Sets the "debug-exceptions-only" property.voidDebugTargetCfgClient. setDebugScope(ValueOrExpression<String> value)Sets the "debug-scope" property.voidDebugLogPublisherCfgClient. setDefaultDebugExceptionsOnly(ValueOrExpression<Boolean> value)Sets the "default-debug-exceptions-only" property.voidDebugLogPublisherCfgClient. setDefaultIncludeThrowableCause(ValueOrExpression<Boolean> value)Sets the "default-include-throwable-cause" property.voidDebugLogPublisherCfgClient. setDefaultOmitMethodEntryArguments(ValueOrExpression<Boolean> value)Sets the "default-omit-method-entry-arguments" property.voidDebugLogPublisherCfgClient. setDefaultOmitMethodReturnValue(ValueOrExpression<Boolean> value)Sets the "default-omit-method-return-value" property.voidGlobalCfgClient. setDefaultPasswordPolicy(ValueOrExpression<String> value)Sets the "default-password-policy" property.voidDebugLogPublisherCfgClient. setDefaultThrowableStackFrames(ValueOrExpression<Integer> value)Sets the "default-throwable-stack-frames" property.voidReplicationServerCfgClient. setDegradedStatusThreshold(ValueOrExpression<Integer> value)Sets the "degraded-status-threshold" property.voidDictionaryPasswordValidatorCfgClient. setDictionaryFile(ValueOrExpression<String> value)Sets the "dictionary-file" property.voidCryptoManagerCfgClient. setDigestAlgorithm(ValueOrExpression<String> value)Sets the "digest-algorithm" property.voidProxyBackendCfgClient. setDiscoveryInterval(ValueOrExpression<Long> value)Sets the "discovery-interval" property.voidReplicationServiceDiscoveryMechanismCfgClient. setDiscoveryInterval(ValueOrExpression<Long> value)Sets the "discovery-interval" property.voidStaticServiceDiscoveryMechanismCfgClient. setDiscoveryInterval(ValueOrExpression<Long> value)Sets the "discovery-interval" property.voidJeBackendCfgClient. setDiskFullThreshold(ValueOrExpression<Long> value)Sets the "disk-full-threshold" property.voidReplicationServerCfgClient. setDiskFullThreshold(ValueOrExpression<Long> value)Sets the "disk-full-threshold" property.voidJeBackendCfgClient. setDiskLowThreshold(ValueOrExpression<Long> value)Sets the "disk-low-threshold" property.voidReplicationServerCfgClient. setDiskLowThreshold(ValueOrExpression<Long> value)Sets the "disk-low-threshold" property.voidSizeLimitLogRetentionPolicyCfgClient. setDiskSpaceUsed(ValueOrExpression<Long> value)Sets the "disk-space-used" property.voidAccessControlHandlerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidAccountStatusNotificationHandlerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidAlertHandlerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidBackendCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidCertificateMapperCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidConnectionHandlerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidDebugTargetCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidEntryCacheCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidExtendedOperationHandlerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidHttpAuthorizationMechanismCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidHttpEndpointCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidIdentityMapperCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidKeyManagerProviderCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidLogPublisherCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidMailServerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidPasswordGeneratorCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidPasswordStorageSchemeCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidPasswordValidatorCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidPluginCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidReplicationDomainCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidSaslMechanismHandlerCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidSchemaProviderCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidSynchronizationProviderCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidTrustManagerProviderCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidVirtualAttributeCfgClient. setEnabled(ValueOrExpression<Boolean> value)Sets the "enabled" property.voidPluggableBackendCfgClient. setEntriesCompressed(ValueOrExpression<Boolean> value)Sets the "entries-compressed" property.voidGlobalCfgClient. setEtimeResolution(ValueOrExpression<GlobalCfgDefn.EtimeResolution> value)Sets the "etime-resolution" property.voidPasswordPolicyCfgClient. setExpirePasswordsWithoutWarning(ValueOrExpression<Boolean> value)Sets the "expire-passwords-without-warning" property.voidSizeLimitLogRotationPolicyCfgClient. setFileSizeLimit(ValueOrExpression<Long> value)Sets the "file-size-limit" property.voidBackendVlvIndexCfgClient. setFilter(ValueOrExpression<String> value)Sets the "filter" property.voidAccessLogPublisherCfgClient. setFilteringPolicy(ValueOrExpression<AccessLogPublisherCfgDefn.FilteringPolicy> value)Sets the "filtering-policy" property.voidFingerprintCertificateMapperCfgClient. setFingerprintAlgorithm(ValueOrExpression<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm> value)Sets the "fingerprint-algorithm" property.voidFingerprintCertificateMapperCfgClient. setFingerprintAttribute(ValueOrExpression<AttributeType> value)Sets the "fingerprint-attribute" property.voidPasswordPolicyCfgClient. setForceChangeOnAdd(ValueOrExpression<Boolean> value)Sets the "force-change-on-add" property.voidPasswordPolicyCfgClient. setForceChangeOnReset(ValueOrExpression<Boolean> value)Sets the "force-change-on-reset" property.voidFreeDiskSpaceLogRetentionPolicyCfgClient. setFreeDiskSpace(ValueOrExpression<Long> value)Sets the "free-disk-space" property.voidPasswordPolicyCfgClient. setGraceLoginCount(ValueOrExpression<Integer> value)Sets the "grace-login-count" property.voidGraphiteMonitorReporterPluginCfgClient. setGraphiteServer(ValueOrExpression<com.forgerock.opendj.util.HostPort> value)Sets the "graphite-server" property.voidGlobalCfgClient. setGroupId(ValueOrExpression<String> value)Sets the "group-id" property.voidGlobalCfgClient. setGroupIdFailoverOrder(ValueOrExpression<String> value)Sets the "group-id-failover-order" property.voidProxyBackendCfgClient. setHashFunction(ValueOrExpression<ProxyBackendCfgDefn.HashFunction> value)Sets the "hash-function" property.voidReplicationSynchronizationProviderCfgClient. setHealthChecksEnabled(ValueOrExpression<Boolean> value)Sets the "health-checks-enabled" property.voidReplicationSynchronizationProviderCfgClient. setHeartbeatInterval(ValueOrExpression<Long> value)Sets the "heartbeat-interval" property.voidPasswordPolicyCfgClient. setIdleLockoutInterval(ValueOrExpression<Long> value)Sets the "idle-lockout-interval" property.voidGlobalCfgClient. setIdleTimeLimit(ValueOrExpression<Long> value)Sets the "idle-time-limit" property.voidJsonEqualityMatchingRuleCfgClient. setIgnoreWhiteSpace(ValueOrExpression<Boolean> value)Sets the "ignore-white-space" property.voidJsonOrderingMatchingRuleCfgClient. setIgnoreWhiteSpace(ValueOrExpression<Boolean> value)Sets the "ignore-white-space" property.voidJsonQueryEqualityMatchingRuleCfgClient. setIgnoreWhiteSpace(ValueOrExpression<Boolean> value)Sets the "ignore-white-space" property.voidPluggableBackendCfgClient. setImportOffheapMemorySize(ValueOrExpression<Long> value)Sets the "import-offheap-memory-size" property.voidDebugTargetCfgClient. setIncludeThrowableCause(ValueOrExpression<Boolean> value)Sets the "include-throwable-cause" property.voidBackendIndexCfgClient. setIndexEntryLimit(ValueOrExpression<Integer> value)Sets the "index-entry-limit" property.voidPluggableBackendCfgClient. setIndexEntryLimit(ValueOrExpression<Integer> value)Sets the "index-entry-limit" property.voidPluggableBackendCfgClient. setIndexFilterAnalyzerEnabled(ValueOrExpression<Boolean> value)Sets the "index-filter-analyzer-enabled" property.voidPluggableBackendCfgClient. setIndexFilterAnalyzerMaxFilters(ValueOrExpression<Integer> value)Sets the "index-filter-analyzer-max-filters" property.voidReplicationSynchronizationProviderCfgClient. setInitializationWindowSize(ValueOrExpression<Integer> value)Sets the "initialization-window-size" property.voidGlobalCfgClient. setInvalidAttributeSyntaxBehavior(ValueOrExpression<GlobalCfgDefn.InvalidAttributeSyntaxBehavior> value)Sets the "invalid-attribute-syntax-behavior" property.voidAttributeCleanupPluginCfgClient. setInvokeForInternalOperations(ValueOrExpression<Boolean> value)Sets the "invoke-for-internal-operations" property.voidPasswordPolicyImportPluginCfgClient. setInvokeForInternalOperations(ValueOrExpression<Boolean> value)Sets the "invoke-for-internal-operations" property.voidPluginCfgClient. setInvokeForInternalOperations(ValueOrExpression<Boolean> value)Sets the "invoke-for-internal-operations" property.voidReplicationSynchronizationProviderCfgClient. setIsolationPolicy(ValueOrExpression<ReplicationSynchronizationProviderCfgDefn.IsolationPolicy> value)Sets the "isolation-policy" property.voidLdifBackendCfgClient. setIsPrivateBackend(ValueOrExpression<Boolean> value)Sets the "is-private-backend" property.voidCertificateMapperCfgClient. setIssuerAttribute(ValueOrExpression<AttributeType> value)Sets the "issuer-attribute" property.voidAccessControlHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAccountStatusNotificationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAdminDataTrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAdminEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAesPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAlertHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAliveEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAnonymousSaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidArgon2PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAttributeCleanupPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAttributeValuePasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidAuthenticationPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidBase64PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidBcryptPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidBlindTrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidBlowfishPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCancelExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCertificateMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidChangeNumberControlPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCharacterSetPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidClearPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCollectiveAttributeSubentriesVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidConnectionHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidConsoleErrorLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCoreSchemaCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCramMd5SaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCrestMetricsEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCryptPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCsvFileAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidCsvFileHttpAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidDebugLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidDictionaryPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidDigestMd5SaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidDseeCompatAccessControlHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidEntityTagPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidEntityTagVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidEntryCacheCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidEntryDnVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidEntryUuidPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidEntryUuidVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidErrorLogAccountStatusNotificationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidErrorLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidExactMatchIdentityMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidExternalAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidExternalHttpAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidExternalSaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFifoEntryCacheCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedAuditLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedDebugLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedErrorLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedHttpAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedKeyManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileBasedTrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFileCountLogRetentionPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFingerprintCertificateMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFixedTimeLogRotationPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidFreeDiskSpaceLogRetentionPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidGetConnectionIdExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidGetSymmetricKeyExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidGoverningStructureRuleVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidGraphiteMonitorReporterPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidGssapiSaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHasSubordinatesVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHealthyEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpAnonymousAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpBasicAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpConnectionHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpOauth2CtsAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpOauth2FileAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidIdentityMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidIsMemberOfVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJeBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJmxAlertHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJmxConnectionHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJsonEqualityMatchingRuleCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJsonFileAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJsonFileHttpAccessLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJsonOrderingMatchingRuleCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidJsonQueryEqualityMatchingRuleCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidKeyManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLastModPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdapAttributeDescriptionListPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdapConnectionHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdapKeyManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdapTrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdifBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLdifConnectionHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLengthBasedPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLogPublisherCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLogRetentionPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidLogRotationPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidMd5PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidMemberVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidMemoryBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidMonitorBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidNullBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidNumSubordinatesVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordExpirationTimeVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordGeneratorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordModifyExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordPolicyImportPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordPolicyStateExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordPolicySubentryVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPbkdf2HmacSha256PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPbkdf2HmacSha512PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPbkdf2PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPemKeyManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPemTrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPkcs11KeyManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPkcs11TrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPkcs5s2PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPlainSaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPolicyBasedAccessControlHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidPrometheusEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidProxyBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidRandomPasswordGeneratorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidRc4PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidReferentialIntegrityPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidRegularExpressionIdentityMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidRepeatedCharactersPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidReplicationServiceDiscoveryMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidReplicationSynchronizationProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidRest2ldapEndpointCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSaltedMd5PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSaltedSha1PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSaltedSha256PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSaltedSha384PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSaltedSha512PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSambaPasswordPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSchemaBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSchemaProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidScramSha256PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidScramSha256SaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidScramSha512PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidScramSha512SaslMechanismHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidServiceDiscoveryMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSevenBitCleanPluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSha1PasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSimilarityBasedPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSizeLimitLogRetentionPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSizeLimitLogRotationPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSmtpAlertHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSnmpConnectionHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSoftReferenceEntryCacheCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidStartTlsExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidStaticServiceDiscoveryMechanismCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidStructuralObjectClassVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSubjectAttributeToUserAttributeCertificateMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSubjectDnToUserAttributeCertificateMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSubjectEqualsDnCertificateMapperCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSubschemaSubentryVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidSynchronizationProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidTaskBackendCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidTimeLimitLogRotationPolicyCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidTraditionalWorkQueueCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidTripleDesPasswordStorageSchemeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidTrustManagerProviderCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidUniqueAttributePluginCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidUniqueCharactersPasswordValidatorCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidUserDefinedVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidUserTemplateVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidVirtualAttributeCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidWhoAmIExtendedOperationHandlerCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidWorkQueueCfgClient. setJavaClass(ValueOrExpression<String> value)Sets the "java-class" property.voidGlobalCfgClient. setJeBackendSharedCacheEnabled(ValueOrExpression<Boolean> value)Sets the "je-backend-shared-cache-enabled" property.voidJsonEqualityMatchingRuleCfgClient. setJsonKeys(ValueOrExpression<String> value)Sets the "json-keys" property.voidJsonOrderingMatchingRuleCfgClient. setJsonKeys(ValueOrExpression<String> value)Sets the "json-keys" property.voidCoreSchemaCfgClient. setJsonValidationPolicy(ValueOrExpression<CoreSchemaCfgDefn.JsonValidationPolicy> value)Sets the "json-validation-policy" property.voidGssapiSaslMechanismHandlerCfgClient. setKdcAddress(ValueOrExpression<String> value)Sets the "kdc-address" property.voidProxyBackendCfgClient. setKeepAliveInterval(ValueOrExpression<Long> value)Sets the "keep-alive-interval" property.voidProxyBackendCfgClient. setKeepAliveSearchRequestBaseDn(ValueOrExpression<Dn> value)Sets the "keep-alive-search-request-base-dn" property.voidProxyBackendCfgClient. setKeepAliveSearchRequestFilter(ValueOrExpression<String> value)Sets the "keep-alive-search-request-filter" property.voidProxyBackendCfgClient. setKeepAliveTimeout(ValueOrExpression<Long> value)Sets the "keep-alive-timeout" property.voidHttpConnectionHandlerCfgClient. setKeepStats(ValueOrExpression<Boolean> value)Sets the "keep-stats" property.voidLdapConnectionHandlerCfgClient. setKeepStats(ValueOrExpression<Boolean> value)Sets the "keep-stats" property.voidAdministrationConnectorCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidCryptoManagerCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidHttpConnectionHandlerCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidJmxConnectionHandlerCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidLdapConnectionHandlerCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidProxyBackendCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidReplicationServiceDiscoveryMechanismCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidReplicationSynchronizationProviderCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidStaticServiceDiscoveryMechanismCfgClient. setKeyManagerProvider(ValueOrExpression<String> value)Sets the "key-manager-provider" property.voidCsvFileAccessLogPublisherCfgClient. setKeyStoreFile(ValueOrExpression<String> value)Sets the "key-store-file" property.voidCsvFileHttpAccessLogPublisherCfgClient. setKeyStoreFile(ValueOrExpression<String> value)Sets the "key-store-file" property.voidFileBasedKeyManagerProviderCfgClient. setKeyStoreFile(ValueOrExpression<String> value)Sets the "key-store-file" property.voidCsvFileAccessLogPublisherCfgClient. setKeyStorePin(ValueOrExpression<String> value)Sets the "key-store-pin" property.voidCsvFileHttpAccessLogPublisherCfgClient. setKeyStorePin(ValueOrExpression<String> value)Sets the "key-store-pin" property.voidFileBasedKeyManagerProviderCfgClient. setKeyStorePin(ValueOrExpression<String> value)Sets the "key-store-pin" property.voidLdapKeyManagerProviderCfgClient. setKeyStorePin(ValueOrExpression<String> value)Sets the "key-store-pin" property.voidPkcs11KeyManagerProviderCfgClient. setKeyStorePin(ValueOrExpression<String> value)Sets the "key-store-pin" property.voidFileBasedKeyManagerProviderCfgClient. setKeyStoreType(ValueOrExpression<String> value)Sets the "key-store-type" property.voidPkcs11KeyManagerProviderCfgClient. setKeyStoreType(ValueOrExpression<String> value)Sets the "key-store-type" property.voidGssapiSaslMechanismHandlerCfgClient. setKeytab(ValueOrExpression<String> value)Sets the "keytab" property.voidCryptoManagerCfgClient. setKeyWrappingMode(ValueOrExpression<CryptoManagerCfgDefn.KeyWrappingMode> value)Sets the "key-wrapping-mode" property.voidCryptoManagerCfgClient. setKeyWrappingTransformation(ValueOrExpression<String> value)Sets the "key-wrapping-transformation" property.voidPasswordPolicyCfgClient. setLastLoginTimeAttribute(ValueOrExpression<AttributeType> value)Sets the "last-login-time-attribute" property.voidPasswordPolicyCfgClient. setLastLoginTimeFormat(ValueOrExpression<String> value)Sets the "last-login-time-format" property.voidLdifConnectionHandlerCfgClient. setLdifDirectory(ValueOrExpression<String> value)Sets the "ldif-directory" property.voidLdifBackendCfgClient. setLdifFile(ValueOrExpression<String> value)Sets the "ldif-file" property.voidJmxConnectionHandlerCfgClient. setListenAddress(ValueOrExpression<com.forgerock.opendj.util.Host> value)Sets the "listen-address" property.voidAdministrationConnectorCfgClient. setListenPort(ValueOrExpression<Integer> value)Sets the "listen-port" property.voidHttpConnectionHandlerCfgClient. setListenPort(ValueOrExpression<Integer> value)Sets the "listen-port" property.voidJmxConnectionHandlerCfgClient. setListenPort(ValueOrExpression<Integer> value)Sets the "listen-port" property.voidLdapConnectionHandlerCfgClient. setListenPort(ValueOrExpression<Integer> value)Sets the "listen-port" property.voidSnmpConnectionHandlerCfgClient. setListenPort(ValueOrExpression<Integer> value)Sets the "listen-port" property.voidPasswordPolicyCfgClient. setLockoutDuration(ValueOrExpression<Long> value)Sets the "lockout-duration" property.voidPasswordPolicyCfgClient. setLockoutFailureCount(ValueOrExpression<Integer> value)Sets the "lockout-failure-count" property.voidPasswordPolicyCfgClient. setLockoutFailureExpirationInterval(ValueOrExpression<Long> value)Sets the "lockout-failure-expiration-interval" property.voidFifoEntryCacheCfgClient. setLockTimeout(ValueOrExpression<Long> value)Sets the "lock-timeout" property.voidSoftReferenceEntryCacheCfgClient. setLockTimeout(ValueOrExpression<Long> value)Sets the "lock-timeout" property.voidReplicationSynchronizationProviderCfgClient. setLogChangenumber(ValueOrExpression<Boolean> value)Sets the "log-changenumber" property.voidCommonAuditAccessLogPublisherCfgClient. setLogControlOids(ValueOrExpression<Boolean> value)Sets the "log-control-oids" property.voidFileBasedAccessLogPublisherCfgClient. setLogControlOids(ValueOrExpression<Boolean> value)Sets the "log-control-oids" property.voidCsvFileAccessLogPublisherCfgClient. setLogDirectory(ValueOrExpression<String> value)Sets the "log-directory" property.voidCsvFileHttpAccessLogPublisherCfgClient. setLogDirectory(ValueOrExpression<String> value)Sets the "log-directory" property.voidJsonFileAccessLogPublisherCfgClient. setLogDirectory(ValueOrExpression<String> value)Sets the "log-directory" property.voidJsonFileHttpAccessLogPublisherCfgClient. setLogDirectory(ValueOrExpression<String> value)Sets the "log-directory" property.voidFileBasedAccessLogPublisherCfgClient. setLogFile(ValueOrExpression<String> value)Sets the "log-file" property.voidFileBasedAuditLogPublisherCfgClient. setLogFile(ValueOrExpression<String> value)Sets the "log-file" property.voidFileBasedDebugLogPublisherCfgClient. setLogFile(ValueOrExpression<String> value)Sets the "log-file" property.voidFileBasedErrorLogPublisherCfgClient. setLogFile(ValueOrExpression<String> value)Sets the "log-file" property.voidFileBasedHttpAccessLogPublisherCfgClient. setLogFile(ValueOrExpression<String> value)Sets the "log-file" property.voidReferentialIntegrityPluginCfgClient. setLogFile(ValueOrExpression<String> value)Sets the "log-file" property.voidCsvFileAccessLogPublisherCfgClient. setLogFileNamePrefix(ValueOrExpression<String> value)Sets the "log-file-name-prefix" property.voidCsvFileHttpAccessLogPublisherCfgClient. setLogFileNamePrefix(ValueOrExpression<String> value)Sets the "log-file-name-prefix" property.voidJsonFileAccessLogPublisherCfgClient. setLogFileNamePrefix(ValueOrExpression<String> value)Sets the "log-file-name-prefix" property.voidJsonFileHttpAccessLogPublisherCfgClient. setLogFileNamePrefix(ValueOrExpression<String> value)Sets the "log-file-name-prefix" property.voidFileBasedAccessLogPublisherCfgClient. setLogFilePermissions(ValueOrExpression<String> value)Sets the "log-file-permissions" property.voidFileBasedAuditLogPublisherCfgClient. setLogFilePermissions(ValueOrExpression<String> value)Sets the "log-file-permissions" property.voidFileBasedDebugLogPublisherCfgClient. setLogFilePermissions(ValueOrExpression<String> value)Sets the "log-file-permissions" property.voidFileBasedErrorLogPublisherCfgClient. setLogFilePermissions(ValueOrExpression<String> value)Sets the "log-file-permissions" property.voidFileBasedHttpAccessLogPublisherCfgClient. setLogFilePermissions(ValueOrExpression<String> value)Sets the "log-file-permissions" property.voidFileBasedAccessLogPublisherCfgClient. setLogFormat(ValueOrExpression<FileBasedAccessLogPublisherCfgDefn.LogFormat> value)Sets the "log-format" property.voidFileBasedHttpAccessLogPublisherCfgClient. setLogFormat(ValueOrExpression<String> value)Sets the "log-format" property.voidFileBasedAccessLogPublisherCfgClient. setLogRecordTimeFormat(ValueOrExpression<String> value)Sets the "log-record-time-format" property.voidFileBasedHttpAccessLogPublisherCfgClient. setLogRecordTimeFormat(ValueOrExpression<String> value)Sets the "log-record-time-format" property.voidCryptoManagerCfgClient. setMacAlgorithm(ValueOrExpression<String> value)Sets the "mac-algorithm" property.voidCryptoManagerCfgClient. setMacKeyLength(ValueOrExpression<Integer> value)Sets the "mac-key-length" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setMappedSearchBindDn(ValueOrExpression<Dn> value)Sets the "mapped-search-bind-dn" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setMappedSearchBindPassword(ValueOrExpression<String> value)Sets the "mapped-search-bind-password" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setMappedSearchFilterTemplate(ValueOrExpression<String> value)Sets the "mapped-search-filter-template" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setMappingPolicy(ValueOrExpression<LdapPassThroughAuthenticationPolicyCfgDefn.MappingPolicy> value)Sets the "mapping-policy" property.voidCryptoManagerCfgClient. setMasterKeyAlias(ValueOrExpression<String> value)Sets the "master-key-alias" property.voidJsonEqualityMatchingRuleCfgClient. setMatchingRuleName(ValueOrExpression<String> value)Sets the "matching-rule-name" property.voidJsonOrderingMatchingRuleCfgClient. setMatchingRuleName(ValueOrExpression<String> value)Sets the "matching-rule-name" property.voidJsonQueryEqualityMatchingRuleCfgClient. setMatchingRuleName(ValueOrExpression<String> value)Sets the "matching-rule-name" property.voidJsonEqualityMatchingRuleCfgClient. setMatchingRuleOid(ValueOrExpression<String> value)Sets the "matching-rule-oid" property.voidJsonOrderingMatchingRuleCfgClient. setMatchingRuleOid(ValueOrExpression<String> value)Sets the "matching-rule-oid" property.voidJsonQueryEqualityMatchingRuleCfgClient. setMatchingRuleOid(ValueOrExpression<String> value)Sets the "matching-rule-oid" property.voidRegularExpressionIdentityMapperCfgClient. setMatchPattern(ValueOrExpression<String> value)Sets the "match-pattern" property.voidGlobalCfgClient. setMaxAllowedClientConnections(ValueOrExpression<Integer> value)Sets the "max-allowed-client-connections" property.voidHttpConnectionHandlerCfgClient. setMaxBlockedWriteTimeLimit(ValueOrExpression<Long> value)Sets the "max-blocked-write-time-limit" property.voidLdapConnectionHandlerCfgClient. setMaxBlockedWriteTimeLimit(ValueOrExpression<Long> value)Sets the "max-blocked-write-time-limit" property.voidGlobalCfgClient. setMaxCandidateSetSize(ValueOrExpression<Integer> value)Sets the "max-candidate-set-size" property.voidHttpConnectionHandlerCfgClient. setMaxConcurrentOpsPerConnection(ValueOrExpression<Integer> value)Sets the "max-concurrent-ops-per-connection" property.voidRepeatedCharactersPasswordValidatorCfgClient. setMaxConsecutiveLength(ValueOrExpression<Integer> value)Sets the "max-consecutive-length" property.voidFifoEntryCacheCfgClient. setMaxEntries(ValueOrExpression<Integer> value)Sets the "max-entries" property.voidGlobalCfgClient. setMaxInternalBufferSize(ValueOrExpression<Long> value)Sets the "max-internal-buffer-size" property.voidFifoEntryCacheCfgClient. setMaxMemoryPercent(ValueOrExpression<Integer> value)Sets the "max-memory-percent" property.voidPasswordPolicyCfgClient. setMaxPasswordAge(ValueOrExpression<Long> value)Sets the "max-password-age" property.voidLengthBasedPasswordValidatorCfgClient. setMaxPasswordLength(ValueOrExpression<Integer> value)Sets the "max-password-length" property.voidPasswordPolicyCfgClient. setMaxPasswordResetAge(ValueOrExpression<Long> value)Sets the "max-password-reset-age" property.voidGlobalCfgClient. setMaxPsearches(ValueOrExpression<Integer> value)Sets the "max-psearches" property.voidReplicationSynchronizationProviderCfgClient. setMaxReplicationDelayHealthCheck(ValueOrExpression<Long> value)Sets the "max-replication-delay-health-check" property.voidHttpConnectionHandlerCfgClient. setMaxRequestSize(ValueOrExpression<Long> value)Sets the "max-request-size" property.voidLdapConnectionHandlerCfgClient. setMaxRequestSize(ValueOrExpression<Long> value)Sets the "max-request-size" property.voidSmtpAlertHandlerCfgClient. setMessageBody(ValueOrExpression<String> value)Sets the "message-body" property.voidSmtpAlertHandlerCfgClient. setMessageSubject(ValueOrExpression<String> value)Sets the "message-subject" property.voidGraphiteMonitorReporterPluginCfgClient. setMetricNamePrefix(ValueOrExpression<String> value)Sets the "metric-name-prefix" property.voidCharacterSetPasswordValidatorCfgClient. setMinCharacterSets(ValueOrExpression<Integer> value)Sets the "min-character-sets" property.voidPasswordPolicyCfgClient. setMinPasswordAge(ValueOrExpression<Long> value)Sets the "min-password-age" property.voidSimilarityBasedPasswordValidatorCfgClient. setMinPasswordDifference(ValueOrExpression<Integer> value)Sets the "min-password-difference" property.voidLengthBasedPasswordValidatorCfgClient. setMinPasswordLength(ValueOrExpression<Integer> value)Sets the "min-password-length" property.voidAttributeValuePasswordValidatorCfgClient. setMinSubstringLength(ValueOrExpression<Integer> value)Sets the "min-substring-length" property.voidDictionaryPasswordValidatorCfgClient. setMinSubstringLength(ValueOrExpression<Integer> value)Sets the "min-substring-length" property.voidUniqueCharactersPasswordValidatorCfgClient. setMinUniqueCharacters(ValueOrExpression<Integer> value)Sets the "min-unique-characters" property.voidBackendVlvIndexCfgClient. setName(ValueOrExpression<String> value)Sets the "name" property.voidTaskBackendCfgClient. setNotificationSenderAddress(ValueOrExpression<String> value)Sets the "notification-sender-address" property.voidGlobalCfgClient. setNotifyAbandonedOperations(ValueOrExpression<Boolean> value)Sets the "notify-abandoned-operations" property.voidFileCountLogRetentionPolicyCfgClient. setNumberOfFiles(ValueOrExpression<Integer> value)Sets the "number-of-files" property.voidHttpConnectionHandlerCfgClient. setNumRequestHandlers(ValueOrExpression<Integer> value)Sets the "num-request-handlers" property.voidLdapConnectionHandlerCfgClient. setNumRequestHandlers(ValueOrExpression<Integer> value)Sets the "num-request-handlers" property.voidReplicationSynchronizationProviderCfgClient. setNumUpdateReplayThreads(ValueOrExpression<Integer> value)Sets the "num-update-replay-threads" property.voidTraditionalWorkQueueCfgClient. setNumWorkerThreads(ValueOrExpression<Integer> value)Sets the "num-worker-threads" property.voidDebugTargetCfgClient. setOmitMethodEntryArguments(ValueOrExpression<Boolean> value)Sets the "omit-method-entry-arguments" property.voidDebugTargetCfgClient. setOmitMethodReturnValue(ValueOrExpression<Boolean> value)Sets the "omit-method-return-value" property.voidPasswordPolicyCfgClient. setPasswordAttribute(ValueOrExpression<AttributeType> value)Sets the "password-attribute" property.voidPasswordPolicyCfgClient. setPasswordChangeRequiresCurrentPassword(ValueOrExpression<Boolean> value)Sets the "password-change-requires-current-password" property.voidPasswordPolicyCfgClient. setPasswordExpirationWarningInterval(ValueOrExpression<Long> value)Sets the "password-expiration-warning-interval" property.voidRandomPasswordGeneratorCfgClient. setPasswordFormat(ValueOrExpression<String> value)Sets the "password-format" property.voidPasswordPolicyCfgClient. setPasswordGenerator(ValueOrExpression<String> value)Sets the "password-generator" property.voidPasswordPolicyCfgClient. setPasswordHistoryCount(ValueOrExpression<Integer> value)Sets the "password-history-count" property.voidPasswordPolicyCfgClient. setPasswordHistoryDuration(ValueOrExpression<Long> value)Sets the "password-history-duration" property.voidPbkdf2PasswordStorageSchemeCfgClient. setPbkdf2Iterations(ValueOrExpression<Integer> value)Sets the "pbkdf2-iterations" property.voidPemKeyManagerProviderCfgClient. setPemDirectory(ValueOrExpression<String> value)Sets the "pem-directory" property.voidPemTrustManagerProviderCfgClient. setPemDirectory(ValueOrExpression<String> value)Sets the "pem-directory" property.voidPluginRootCfgClient. setPluginOrderIntermediateResponse(ValueOrExpression<String> value)Sets the "plugin-order-intermediate-response" property.voidPluginRootCfgClient. setPluginOrderLdifImport(ValueOrExpression<String> value)Sets the "plugin-order-ldif-import" property.voidPluginRootCfgClient. setPluginOrderLdifImportBegin(ValueOrExpression<String> value)Sets the "plugin-order-ldif-import-begin" property.voidPluginRootCfgClient. setPluginOrderLdifImportEnd(ValueOrExpression<String> value)Sets the "plugin-order-ldif-import-end" property.voidPluginRootCfgClient. setPluginOrderPostConnect(ValueOrExpression<String> value)Sets the "plugin-order-post-connect" property.voidPluginRootCfgClient. setPluginOrderPostDisconnect(ValueOrExpression<String> value)Sets the "plugin-order-post-disconnect" property.voidPluginRootCfgClient. setPluginOrderPostOperationAbandon(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-abandon" property.voidPluginRootCfgClient. setPluginOrderPostOperationAdd(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-add" property.voidPluginRootCfgClient. setPluginOrderPostOperationBind(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-bind" property.voidPluginRootCfgClient. setPluginOrderPostOperationCompare(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-compare" property.voidPluginRootCfgClient. setPluginOrderPostOperationDelete(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-delete" property.voidPluginRootCfgClient. setPluginOrderPostOperationExtended(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-extended" property.voidPluginRootCfgClient. setPluginOrderPostOperationModify(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-modify" property.voidPluginRootCfgClient. setPluginOrderPostOperationModifyDn(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-modify-dn" property.voidPluginRootCfgClient. setPluginOrderPostOperationSearch(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-search" property.voidPluginRootCfgClient. setPluginOrderPostOperationUnbind(ValueOrExpression<String> value)Sets the "plugin-order-post-operation-unbind" property.voidPluginRootCfgClient. setPluginOrderPostResponseAdd(ValueOrExpression<String> value)Sets the "plugin-order-post-response-add" property.voidPluginRootCfgClient. setPluginOrderPostResponseBind(ValueOrExpression<String> value)Sets the "plugin-order-post-response-bind" property.voidPluginRootCfgClient. setPluginOrderPostResponseCompare(ValueOrExpression<String> value)Sets the "plugin-order-post-response-compare" property.voidPluginRootCfgClient. setPluginOrderPostResponseDelete(ValueOrExpression<String> value)Sets the "plugin-order-post-response-delete" property.voidPluginRootCfgClient. setPluginOrderPostResponseExtended(ValueOrExpression<String> value)Sets the "plugin-order-post-response-extended" property.voidPluginRootCfgClient. setPluginOrderPostResponseModify(ValueOrExpression<String> value)Sets the "plugin-order-post-response-modify" property.voidPluginRootCfgClient. setPluginOrderPostResponseModifyDn(ValueOrExpression<String> value)Sets the "plugin-order-post-response-modify-dn" property.voidPluginRootCfgClient. setPluginOrderPostResponseSearch(ValueOrExpression<String> value)Sets the "plugin-order-post-response-search" property.voidPluginRootCfgClient. setPluginOrderPostSynchronizationAdd(ValueOrExpression<String> value)Sets the "plugin-order-post-synchronization-add" property.voidPluginRootCfgClient. setPluginOrderPostSynchronizationDelete(ValueOrExpression<String> value)Sets the "plugin-order-post-synchronization-delete" property.voidPluginRootCfgClient. setPluginOrderPostSynchronizationModify(ValueOrExpression<String> value)Sets the "plugin-order-post-synchronization-modify" property.voidPluginRootCfgClient. setPluginOrderPostSynchronizationModifyDn(ValueOrExpression<String> value)Sets the "plugin-order-post-synchronization-modify-dn" property.voidPluginRootCfgClient. setPluginOrderPreOperationAdd(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-add" property.voidPluginRootCfgClient. setPluginOrderPreOperationBind(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-bind" property.voidPluginRootCfgClient. setPluginOrderPreOperationCompare(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-compare" property.voidPluginRootCfgClient. setPluginOrderPreOperationDelete(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-delete" property.voidPluginRootCfgClient. setPluginOrderPreOperationExtended(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-extended" property.voidPluginRootCfgClient. setPluginOrderPreOperationModify(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-modify" property.voidPluginRootCfgClient. setPluginOrderPreOperationModifyDn(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-modify-dn" property.voidPluginRootCfgClient. setPluginOrderPreOperationSearch(ValueOrExpression<String> value)Sets the "plugin-order-pre-operation-search" property.voidPluginRootCfgClient. setPluginOrderPreParseAbandon(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-abandon" property.voidPluginRootCfgClient. setPluginOrderPreParseAdd(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-add" property.voidPluginRootCfgClient. setPluginOrderPreParseBind(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-bind" property.voidPluginRootCfgClient. setPluginOrderPreParseCompare(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-compare" property.voidPluginRootCfgClient. setPluginOrderPreParseDelete(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-delete" property.voidPluginRootCfgClient. setPluginOrderPreParseExtended(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-extended" property.voidPluginRootCfgClient. setPluginOrderPreParseModify(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-modify" property.voidPluginRootCfgClient. setPluginOrderPreParseModifyDn(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-modify-dn" property.voidPluginRootCfgClient. setPluginOrderPreParseSearch(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-search" property.voidPluginRootCfgClient. setPluginOrderPreParseUnbind(ValueOrExpression<String> value)Sets the "plugin-order-pre-parse-unbind" property.voidPluginRootCfgClient. setPluginOrderSearchResultEntry(ValueOrExpression<String> value)Sets the "plugin-order-search-result-entry" property.voidPluginRootCfgClient. setPluginOrderSearchResultReference(ValueOrExpression<String> value)Sets the "plugin-order-search-result-reference" property.voidPluginRootCfgClient. setPluginOrderShutdown(ValueOrExpression<String> value)Sets the "plugin-order-shutdown" property.voidPluginRootCfgClient. setPluginOrderStartup(ValueOrExpression<String> value)Sets the "plugin-order-startup" property.voidPluginRootCfgClient. setPluginOrderSubordinateDelete(ValueOrExpression<String> value)Sets the "plugin-order-subordinate-delete" property.voidPluginRootCfgClient. setPluginOrderSubordinateModifyDn(ValueOrExpression<String> value)Sets the "plugin-order-subordinate-modify-dn" property.voidLdifConnectionHandlerCfgClient. setPollInterval(ValueOrExpression<Long> value)Sets the "poll-interval" property.voidPluggableBackendCfgClient. setPreloadTimeLimit(ValueOrExpression<Long> value)Sets the "preload-time-limit" property.voidReplicationServiceDiscoveryMechanismCfgClient. setPrimaryGroupId(ValueOrExpression<String> value)Sets the "primary-group-id" property.voidGssapiSaslMechanismHandlerCfgClient. setPrincipalName(ValueOrExpression<String> value)Sets the "principal-name" property.voidAdministrationConnectorCfgClient. setProxyProtocolEnabled(ValueOrExpression<Boolean> value)Sets the "proxy-protocol-enabled" property.voidGlobalCfgClient. setProxyProtocolEnabled(ValueOrExpression<Boolean> value)Sets the "proxy-protocol-enabled" property.voidLdapConnectionHandlerCfgClient. setProxyProtocolEnabled(ValueOrExpression<Boolean> value)Sets the "proxy-protocol-enabled" property.voidProxyBackendCfgClient. setProxyUserDn(ValueOrExpression<Dn> value)Sets the "proxy-user-dn" property.voidProxyBackendCfgClient. setProxyUserPassword(ValueOrExpression<String> value)Sets the "proxy-user-password" property.voidDigestMd5SaslMechanismHandlerCfgClient. setQualityOfProtection(ValueOrExpression<DigestMd5SaslMechanismHandlerCfgDefn.QualityOfProtection> value)Sets the "quality-of-protection" property.voidGssapiSaslMechanismHandlerCfgClient. setQualityOfProtection(ValueOrExpression<GssapiSaslMechanismHandlerCfgDefn.QualityOfProtection> value)Sets the "quality-of-protection" property.voidFileBasedAccessLogPublisherCfgClient. setQueueSize(ValueOrExpression<Integer> value)Sets the "queue-size" property.voidFileBasedAuditLogPublisherCfgClient. setQueueSize(ValueOrExpression<Integer> value)Sets the "queue-size" property.voidFileBasedDebugLogPublisherCfgClient. setQueueSize(ValueOrExpression<Integer> value)Sets the "queue-size" property.voidFileBasedErrorLogPublisherCfgClient. setQueueSize(ValueOrExpression<Integer> value)Sets the "queue-size" property.voidFileBasedHttpAccessLogPublisherCfgClient. setQueueSize(ValueOrExpression<Integer> value)Sets the "queue-size" property.voidDigestMd5SaslMechanismHandlerCfgClient. setRealm(ValueOrExpression<String> value)Sets the "realm" property.voidGssapiSaslMechanismHandlerCfgClient. setRealm(ValueOrExpression<String> value)Sets the "realm" property.voidSnmpConnectionHandlerCfgClient. setRegisteredMbean(ValueOrExpression<Boolean> value)Sets the "registered-mbean" property.voidArgon2PasswordStorageSchemeCfgClient. setRehashPolicy(ValueOrExpression<Argon2PasswordStorageSchemeCfgDefn.RehashPolicy> value)Sets the "rehash-policy" property.voidBcryptPasswordStorageSchemeCfgClient. setRehashPolicy(ValueOrExpression<BcryptPasswordStorageSchemeCfgDefn.RehashPolicy> value)Sets the "rehash-policy" property.voidPbkdf2PasswordStorageSchemeCfgClient. setRehashPolicy(ValueOrExpression<Pbkdf2PasswordStorageSchemeCfgDefn.RehashPolicy> value)Sets the "rehash-policy" property.voidRegularExpressionIdentityMapperCfgClient. setReplacePattern(ValueOrExpression<String> value)Sets the "replace-pattern" property.voidReplicationServerCfgClient. setReplicationDbDirectory(ValueOrExpression<String> value)Sets the "replication-db-directory" property.voidReplicationServerCfgClient. setReplicationPort(ValueOrExpression<Integer> value)Sets the "replication-port" property.voidReplicationSynchronizationProviderCfgClient. setReplicationPurgeDelay(ValueOrExpression<Long> value)Sets the "replication-purge-delay" property.voidGraphiteMonitorReporterPluginCfgClient. setReportingInterval(ValueOrExpression<Long> value)Sets the "reporting-interval" property.voidGlobalAccessControlPolicyCfgClient. setRequestTargetDnEqualToUserDn(ValueOrExpression<Boolean> value)Sets the "request-target-dn-equal-to-user-dn" property.voidPasswordPolicyCfgClient. setRequireChangeByTime(ValueOrExpression<String> value)Sets the "require-change-by-time" property.voidPasswordPolicyCfgClient. setRequireSecureAuthentication(ValueOrExpression<Boolean> value)Sets the "require-secure-authentication" property.voidPasswordPolicyCfgClient. setRequireSecurePasswordChanges(ValueOrExpression<Boolean> value)Sets the "require-secure-password-changes" property.voidAccessLogFilteringCriteriaCfgClient. setResponseEntrySizeGreaterThan(ValueOrExpression<Long> value)Sets the "response-entry-size-greater-than" property.voidAccessLogFilteringCriteriaCfgClient. setResponseEtimeGreaterThan(ValueOrExpression<Integer> value)Sets the "response-etime-greater-than" property.voidAccessLogFilteringCriteriaCfgClient. setResponseEtimeLessThan(ValueOrExpression<Integer> value)Sets the "response-etime-less-than" property.voidAdministrationConnectorCfgClient. setRestrictedClientConnectionLimit(ValueOrExpression<Integer> value)Sets the "restricted-client-connection-limit" property.voidConnectionHandlerCfgClient. setRestrictedClientConnectionLimit(ValueOrExpression<Integer> value)Sets the "restricted-client-connection-limit" property.voidGlobalCfgClient. setRestrictedClientConnectionLimit(ValueOrExpression<Integer> value)Sets the "restricted-client-connection-limit" property.voidGlobalCfgClient. setReturnBindErrorMessages(ValueOrExpression<Boolean> value)Sets the "return-bind-error-messages" property.voidRest2ldapEndpointCfgClient. setReturnNullForMissingProperties(ValueOrExpression<Boolean> value)Sets the "return-null-for-missing-properties" property.voidJmxConnectionHandlerCfgClient. setRmiPort(ValueOrExpression<Integer> value)Sets the "rmi-port" property.voidTimeLimitLogRotationPolicyCfgClient. setRotationInterval(ValueOrExpression<Long> value)Sets the "rotation-interval" property.voidProxyBackendCfgClient. setRouteAll(ValueOrExpression<Boolean> value)Sets the "route-all" property.voidSambaPasswordPluginCfgClient. setSambaAdministratorDn(ValueOrExpression<Dn> value)Sets the "samba-administrator-dn" property.voidGlobalCfgClient. setSaveConfigOnSuccessfulStartup(ValueOrExpression<Boolean> value)Sets the "save-config-on-successful-startup" property.voidBackendVlvIndexCfgClient. setScope(ValueOrExpression<BackendVlvIndexCfgDefn.Scope> value)Sets the "scope" property.voidVirtualAttributeCfgClient. setScope(ValueOrExpression<VirtualAttributeCfgDefn.Scope> value)Sets the "scope" property.voidScramSha256PasswordStorageSchemeCfgClient. setScramIterations(ValueOrExpression<Integer> value)Sets the "scram-iterations" property.voidScramSha512PasswordStorageSchemeCfgClient. setScramIterations(ValueOrExpression<Integer> value)Sets the "scram-iterations" property.voidAccessLogFilteringCriteriaCfgClient. setSearchResponseIsIndexed(ValueOrExpression<Boolean> value)Sets the "search-response-is-indexed" property.voidAccessLogFilteringCriteriaCfgClient. setSearchResponseNentriesGreaterThan(ValueOrExpression<Integer> value)Sets the "search-response-nentries-greater-than" property.voidAccessLogFilteringCriteriaCfgClient. setSearchResponseNentriesLessThan(ValueOrExpression<Integer> value)Sets the "search-response-nentries-less-than" property.voidSnmpConnectionHandlerCfgClient. setSecurityAgentFile(ValueOrExpression<String> value)Sets the "security-agent-file" property.voidSnmpConnectionHandlerCfgClient. setSecurityLevel(ValueOrExpression<SnmpConnectionHandlerCfgDefn.SecurityLevel> value)Sets the "security-level" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setSendEmailAsHtml(ValueOrExpression<Boolean> value)Sets the "send-email-as-html" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setSenderAddress(ValueOrExpression<String> value)Sets the "sender-address" property.voidSmtpAlertHandlerCfgClient. setSenderAddress(ValueOrExpression<String> value)Sets the "sender-address" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setSendMessageWithoutEndUserAddress(ValueOrExpression<Boolean> value)Sets the "send-message-without-end-user-address" property.voidLdapConnectionHandlerCfgClient. setSendRejectionNotice(ValueOrExpression<Boolean> value)Sets the "send-rejection-notice" property.voidDigestMd5SaslMechanismHandlerCfgClient. setServerFqdn(ValueOrExpression<String> value)Sets the "server-fqdn" property.voidGssapiSaslMechanismHandlerCfgClient. setServerFqdn(ValueOrExpression<String> value)Sets the "server-fqdn" property.voidGlobalCfgClient. setServerId(ValueOrExpression<String> value)Sets the "server-id" property.voidRootDseBackendCfgClient. setShowAllAttributes(ValueOrExpression<Boolean> value)Sets the "show-all-attributes" property.voidSchemaBackendCfgClient. setShowAllAttributes(ValueOrExpression<Boolean> value)Sets the "show-all-attributes" property.voidRootDseBackendCfgClient. setShowSubordinateNamingContexts(ValueOrExpression<Boolean> value)Sets the "show-subordinate-naming-contexts" property.voidCsvFileAccessLogPublisherCfgClient. setSignatureTimeInterval(ValueOrExpression<Long> value)Sets the "signature-time-interval" property.voidCsvFileHttpAccessLogPublisherCfgClient. setSignatureTimeInterval(ValueOrExpression<Long> value)Sets the "signature-time-interval" property.voidGlobalCfgClient. setSingleStructuralObjectclassBehavior(ValueOrExpression<GlobalCfgDefn.SingleStructuralObjectclassBehavior> value)Sets the "single-structural-objectclass-behavior" property.voidGlobalCfgClient. setSizeLimit(ValueOrExpression<Integer> value)Sets the "size-limit" property.voidPasswordPolicyCfgClient. setSkipValidationForAdministrators(ValueOrExpression<Boolean> value)Sets the "skip-validation-for-administrators" property.voidMailServerCfgClient. setSmtpServer(ValueOrExpression<String> value)Sets the "smtp-server" property.voidReplicationSynchronizationProviderCfgClient. setSolveConflicts(ValueOrExpression<Boolean> value)Sets the "solve-conflicts" property.voidBackendVlvIndexCfgClient. setSortOrder(ValueOrExpression<String> value)Sets the "sort-order" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setSourceAddress(ValueOrExpression<com.forgerock.opendj.util.Host> value)Sets the "source-address" property.voidReplicationSynchronizationProviderCfgClient. setSourceAddress(ValueOrExpression<com.forgerock.opendj.util.Host> value)Sets the "source-address" property.voidHttpConnectionHandlerCfgClient. setSslClientAuthPolicy(ValueOrExpression<HttpConnectionHandlerCfgDefn.SslClientAuthPolicy> value)Sets the "ssl-client-auth-policy" property.voidLdapConnectionHandlerCfgClient. setSslClientAuthPolicy(ValueOrExpression<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy> value)Sets the "ssl-client-auth-policy" property.voidReplicationSynchronizationProviderCfgClient. setSslEncryption(ValueOrExpression<Boolean> value)Sets the "ssl-encryption" property.voidPasswordPolicyCfgClient. setStateUpdateFailurePolicy(ValueOrExpression<PasswordPolicyCfgDefn.StateUpdateFailurePolicy> value)Sets the "state-update-failure-policy" property.voidCoreSchemaCfgClient. setStrictFormatBoolean(ValueOrExpression<Boolean> value)Sets the "strict-format-boolean" property.voidCoreSchemaCfgClient. setStrictFormatCertificates(ValueOrExpression<Boolean> value)Sets the "strict-format-certificates" property.voidCoreSchemaCfgClient. setStrictFormatCountryString(ValueOrExpression<Boolean> value)Sets the "strict-format-country-string" property.voidCoreSchemaCfgClient. setStrictFormatJpegPhotos(ValueOrExpression<Boolean> value)Sets the "strict-format-jpeg-photos" property.voidCoreSchemaCfgClient. setStrictFormatTelephoneNumbers(ValueOrExpression<Boolean> value)Sets the "strict-format-telephone-numbers" property.voidCoreSchemaCfgClient. setStripSyntaxMinUpperBoundAttributeTypeDescription(ValueOrExpression<Boolean> value)Sets the "strip-syntax-min-upper-bound-attribute-type-description" property.voidSubjectDnToUserAttributeCertificateMapperCfgClient. setSubjectAttribute(ValueOrExpression<AttributeType> value)Sets the "subject-attribute" property.voidBackendIndexCfgClient. setSubstringLength(ValueOrExpression<Integer> value)Sets the "substring-length" property.voidAccessLogPublisherCfgClient. setSuppressInternalOperations(ValueOrExpression<Boolean> value)Sets the "suppress-internal-operations" property.voidAccessLogPublisherCfgClient. setSuppressSynchronizationOperations(ValueOrExpression<Boolean> value)Sets the "suppress-synchronization-operations" property.voidCsvFileAccessLogPublisherCfgClient. setTamperEvident(ValueOrExpression<Boolean> value)Sets the "tamper-evident" property.voidCsvFileHttpAccessLogPublisherCfgClient. setTamperEvident(ValueOrExpression<Boolean> value)Sets the "tamper-evident" property.voidTaskBackendCfgClient. setTaskBackingFile(ValueOrExpression<String> value)Sets the "task-backing-file" property.voidTaskBackendCfgClient. setTaskRetentionTime(ValueOrExpression<Long> value)Sets the "task-retention-time" property.voidUserTemplateVirtualAttributeCfgClient. setTemplate(ValueOrExpression<String> value)Sets the "template" property.voidAttributeValuePasswordValidatorCfgClient. setTestReversedPassword(ValueOrExpression<Boolean> value)Sets the "test-reversed-password" property.voidDictionaryPasswordValidatorCfgClient. setTestReversedPassword(ValueOrExpression<Boolean> value)Sets the "test-reversed-password" property.voidDebugTargetCfgClient. setThrowableStackFrames(ValueOrExpression<Integer> value)Sets the "throwable-stack-frames" property.voidFileBasedAccessLogPublisherCfgClient. setTimeInterval(ValueOrExpression<Long> value)Sets the "time-interval" property.voidFileBasedAuditLogPublisherCfgClient. setTimeInterval(ValueOrExpression<Long> value)Sets the "time-interval" property.voidFileBasedDebugLogPublisherCfgClient. setTimeInterval(ValueOrExpression<Long> value)Sets the "time-interval" property.voidFileBasedErrorLogPublisherCfgClient. setTimeInterval(ValueOrExpression<Long> value)Sets the "time-interval" property.voidFileBasedHttpAccessLogPublisherCfgClient. setTimeInterval(ValueOrExpression<Long> value)Sets the "time-interval" property.voidGlobalCfgClient. setTimeLimit(ValueOrExpression<Long> value)Sets the "time-limit" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setTokenInfoUrl(ValueOrExpression<String> value)Sets the "token-info-url" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setTokenIntrospectionUrl(ValueOrExpression<String> value)Sets the "token-introspection-url" property.voidSnmpConnectionHandlerCfgClient. setTrapPort(ValueOrExpression<Integer> value)Sets the "trap-port" property.voidSnmpConnectionHandlerCfgClient. setTrapsCommunity(ValueOrExpression<String> value)Sets the "traps-community" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setTrustManagerProvider(ValueOrExpression<String> value)Sets the "trust-manager-provider" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setTrustManagerProvider(ValueOrExpression<String> value)Sets the "trust-manager-provider" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setTrustManagerProvider(ValueOrExpression<String> value)Sets the "trust-manager-provider" property.voidMailServerCfgClient. setTrustManagerProvider(ValueOrExpression<String> value)Sets the "trust-manager-provider" property.voidReplicationServiceDiscoveryMechanismCfgClient. setTrustManagerProvider(ValueOrExpression<String> value)Sets the "trust-manager-provider" property.voidStaticServiceDiscoveryMechanismCfgClient. setTrustManagerProvider(ValueOrExpression<String> value)Sets the "trust-manager-provider" property.voidFileBasedTrustManagerProviderCfgClient. setTrustStoreFile(ValueOrExpression<String> value)Sets the "trust-store-file" property.voidFileBasedTrustManagerProviderCfgClient. setTrustStorePin(ValueOrExpression<String> value)Sets the "trust-store-pin" property.voidLdapTrustManagerProviderCfgClient. setTrustStorePin(ValueOrExpression<String> value)Sets the "trust-store-pin" property.voidPkcs11TrustManagerProviderCfgClient. setTrustStorePin(ValueOrExpression<String> value)Sets the "trust-store-pin" property.voidFileBasedTrustManagerProviderCfgClient. setTrustStoreType(ValueOrExpression<String> value)Sets the "trust-store-type" property.voidPkcs11TrustManagerProviderCfgClient. setTrustStoreType(ValueOrExpression<String> value)Sets the "trust-store-type" property.voidGlobalCfgClient. setTrustTransactionIds(ValueOrExpression<Boolean> value)Sets the "trust-transaction-ids" property.voidBackendIndexCfgClient. setTtlAge(ValueOrExpression<Long> value)Sets the "ttl-age" property.voidBackendIndexCfgClient. setTtlEnabled(ValueOrExpression<Boolean> value)Sets the "ttl-enabled" property.voidGlobalCfgClient. setUnauthenticatedRequestsPolicy(ValueOrExpression<GlobalCfgDefn.UnauthenticatedRequestsPolicy> value)Sets the "unauthenticated-requests-policy" property.voidReferentialIntegrityPluginCfgClient. setUpdateInterval(ValueOrExpression<Long> value)Sets the "update-interval" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setUsePasswordCaching(ValueOrExpression<Boolean> value)Sets the "use-password-caching" property.voidHttpAnonymousAuthorizationMechanismCfgClient. setUserDn(ValueOrExpression<Dn> value)Sets the "user-dn" property.voidProxyBackendCfgClient. setUseSaslExternal(ValueOrExpression<Boolean> value)Sets the "use-sasl-external" property.voidReplicationServiceDiscoveryMechanismCfgClient. setUseSaslExternal(ValueOrExpression<Boolean> value)Sets the "use-sasl-external" property.voidStaticServiceDiscoveryMechanismCfgClient. setUseSaslExternal(ValueOrExpression<Boolean> value)Sets the "use-sasl-external" property.voidHttpConnectionHandlerCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidJmxConnectionHandlerCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidLdapConnectionHandlerCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidMailServerCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidReplicationServiceDiscoveryMechanismCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidStaticServiceDiscoveryMechanismCfgClient. setUseSsl(ValueOrExpression<Boolean> value)Sets the "use-ssl" property.voidMailServerCfgClient. setUseStartTls(ValueOrExpression<Boolean> value)Sets the "use-start-tls" property.voidReplicationServiceDiscoveryMechanismCfgClient. setUseStartTls(ValueOrExpression<Boolean> value)Sets the "use-start-tls" property.voidStaticServiceDiscoveryMechanismCfgClient. setUseStartTls(ValueOrExpression<Boolean> value)Sets the "use-start-tls" property.voidHttpConnectionHandlerCfgClient. setUseTcpKeepAlive(ValueOrExpression<Boolean> value)Sets the "use-tcp-keep-alive" property.voidLdapConnectionHandlerCfgClient. setUseTcpKeepAlive(ValueOrExpression<Boolean> value)Sets the "use-tcp-keep-alive" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setUseTcpKeepAlive(ValueOrExpression<Boolean> value)Sets the "use-tcp-keep-alive" property.voidHttpConnectionHandlerCfgClient. setUseTcpNoDelay(ValueOrExpression<Boolean> value)Sets the "use-tcp-no-delay" property.voidLdapConnectionHandlerCfgClient. setUseTcpNoDelay(ValueOrExpression<Boolean> value)Sets the "use-tcp-no-delay" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setUseTcpNoDelay(ValueOrExpression<Boolean> value)Sets the "use-tcp-no-delay" property.voidReplicationServerCfgClient. setWeight(ValueOrExpression<Integer> value)Sets the "weight" property.voidGlobalCfgClient. setWritabilityMode(ValueOrExpression<GlobalCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidLdifBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidLocalBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidMemoryBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidMonitorBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidNullBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidPluggableBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidSchemaBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.voidTaskBackendCfgClient. setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)Sets the "writability-mode" property.Method parameters in org.forgerock.opendj.server.config.client with type arguments of type ValueOrExpression Modifier and Type Method Description voidPasswordPolicyCfgClient. setAccountStatusNotificationHandler(Collection<ValueOrExpression<String>> values)Sets the "account-status-notification-handler" property.voidErrorLogAccountStatusNotificationHandlerCfgClient. setAccountStatusNotificationType(Collection<ValueOrExpression<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType>> values)Sets the "account-status-notification-type" property.voidAdministrationConnectorCfgClient. setAdvertisedListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "advertised-listen-address" property.voidGlobalCfgClient. setAdvertisedListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "advertised-listen-address" property.voidHttpConnectionHandlerCfgClient. setAdvertisedListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "advertised-listen-address" property.voidLdapConnectionHandlerCfgClient. setAdvertisedListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "advertised-listen-address" property.voidReplicationServerCfgClient. setAdvertisedListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "advertised-listen-address" property.voidGlobalAccessControlPolicyCfgClient. setAllowedAttribute(Collection<ValueOrExpression<String>> values)Sets the "allowed-attribute" property.voidGlobalAccessControlPolicyCfgClient. setAllowedAttributeException(Collection<ValueOrExpression<String>> values)Sets the "allowed-attribute-exception" property.voidAdministrationConnectorCfgClient. setAllowedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "allowed-client" property.voidConnectionHandlerCfgClient. setAllowedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "allowed-client" property.voidGlobalCfgClient. setAllowedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "allowed-client" property.voidGlobalAccessControlPolicyCfgClient. setAllowedControl(Collection<ValueOrExpression<String>> values)Sets the "allowed-control" property.voidGlobalAccessControlPolicyCfgClient. setAllowedExtendedOperation(Collection<ValueOrExpression<String>> values)Sets the "allowed-extended-operation" property.voidSnmpConnectionHandlerCfgClient. setAllowedManager(Collection<ValueOrExpression<String>> values)Sets the "allowed-manager" property.voidGlobalCfgClient. setAllowedTask(Collection<ValueOrExpression<String>> values)Sets the "allowed-task" property.voidSnmpConnectionHandlerCfgClient. setAllowedUser(Collection<ValueOrExpression<String>> values)Sets the "allowed-user" property.voidReplicationServerCfgClient. setAllowUpdatesServerFingerprints(Collection<ValueOrExpression<String>> values)Sets the "allow-updates-server-fingerprints" property.voidReferentialIntegrityPluginCfgClient. setAttributeType(Collection<ValueOrExpression<AttributeType>> values)Sets the "attribute-type" property.voidSevenBitCleanPluginCfgClient. setAttributeType(Collection<ValueOrExpression<AttributeType>> values)Sets the "attribute-type" property.voidHttpEndpointCfgClient. setAuthorizationMechanism(Collection<ValueOrExpression<String>> values)Sets the "authorization-mechanism" property.voidLdifBackendCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidMemoryBackendCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidNullBackendCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidPluggableBackendCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidProxyBackendCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidReferentialIntegrityPluginCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidSevenBitCleanPluginCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidUniqueAttributePluginCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidVirtualAttributeCfgClient. setBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "base-dn" property.voidBackendIndexCfgClient. setBigIndexIncludedAttributeValue(Collection<ValueOrExpression<String>> values)Sets the "big-index-included-attribute-value" property.voidBackendIndexCfgClient. setBigIndexMatchingRule(Collection<ValueOrExpression<String>> values)Sets the "big-index-matching-rule" property.voidReplicationServiceDiscoveryMechanismCfgClient. setBootstrapReplicationServer(Collection<ValueOrExpression<com.forgerock.opendj.util.HostPort>> values)Sets the "bootstrap-replication-server" property.voidReplicationSynchronizationProviderCfgClient. setBootstrapReplicationServer(Collection<ValueOrExpression<com.forgerock.opendj.util.HostPort>> values)Sets the "bootstrap-replication-server" property.voidExternalSaslMechanismHandlerCfgClient. setCertificateMapper(Collection<ValueOrExpression<String>> values)Sets the "certificate-mapper" property.voidReplicationServerCfgClient. setChangelogEnabledExcludedDomains(Collection<ValueOrExpression<Dn>> values)Sets the "changelog-enabled-excluded-domains" property.voidCharacterSetPasswordValidatorCfgClient. setCharacterSet(Collection<ValueOrExpression<String>> values)Sets the "character-set" property.voidCharacterSetPasswordValidatorCfgClient. setCharacterSetRanges(Collection<ValueOrExpression<String>> values)Sets the "character-set-ranges" property.voidReferentialIntegrityPluginCfgClient. setCheckReferencesFilterCriteria(Collection<ValueOrExpression<String>> values)Sets the "check-references-filter-criteria" property.voidAccessLogFilteringCriteriaCfgClient. setConnectionClientAddressEqualTo(Collection<ValueOrExpression<AddressMask>> values)Sets the "connection-client-address-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setConnectionClientAddressEqualTo(Collection<ValueOrExpression<AddressMask>> values)Sets the "connection-client-address-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setConnectionClientAddressNotEqualTo(Collection<ValueOrExpression<AddressMask>> values)Sets the "connection-client-address-not-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setConnectionClientAddressNotEqualTo(Collection<ValueOrExpression<AddressMask>> values)Sets the "connection-client-address-not-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setConnectionPortEqualTo(Collection<ValueOrExpression<Integer>> values)Sets the "connection-port-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setConnectionPortEqualTo(Collection<ValueOrExpression<Integer>> values)Sets the "connection-port-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setConnectionProtocolEqualTo(Collection<ValueOrExpression<String>> values)Sets the "connection-protocol-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setConnectionProtocolEqualTo(Collection<ValueOrExpression<String>> values)Sets the "connection-protocol-equal-to" property.voidPasswordPolicyImportPluginCfgClient. setDefaultAuthPasswordStorageScheme(Collection<ValueOrExpression<String>> values)Sets the "default-auth-password-storage-scheme" property.voidPasswordPolicyCfgClient. setDefaultPasswordStorageScheme(Collection<ValueOrExpression<String>> values)Sets the "default-password-storage-scheme" property.voidErrorLogPublisherCfgClient. setDefaultSeverity(Collection<ValueOrExpression<ErrorLogPublisherCfgDefn.DefaultSeverity>> values)Sets the "default-severity" property.voidPasswordPolicyImportPluginCfgClient. setDefaultUserPasswordStorageScheme(Collection<ValueOrExpression<String>> values)Sets the "default-user-password-storage-scheme" property.voidAdministrationConnectorCfgClient. setDeniedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "denied-client" property.voidConnectionHandlerCfgClient. setDeniedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "denied-client" property.voidGlobalCfgClient. setDeniedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "denied-client" property.voidPasswordPolicyCfgClient. setDeprecatedPasswordStorageScheme(Collection<ValueOrExpression<String>> values)Sets the "deprecated-password-storage-scheme" property.voidAlertHandlerCfgClient. setDisabledAlertType(Collection<ValueOrExpression<String>> values)Sets the "disabled-alert-type" property.voidCoreSchemaCfgClient. setDisabledMatchingRule(Collection<ValueOrExpression<String>> values)Sets the "disabled-matching-rule" property.voidGlobalCfgClient. setDisabledPrivilege(Collection<ValueOrExpression<GlobalCfgDefn.DisabledPrivilege>> values)Sets the "disabled-privilege" property.voidCoreSchemaCfgClient. setDisabledSyntax(Collection<ValueOrExpression<String>> values)Sets the "disabled-syntax" property.voidReplicationDomainCfgClient. setEclInclude(Collection<ValueOrExpression<String>> values)Sets the "ecl-include" property.voidReplicationDomainCfgClient. setEclIncludeForDeletes(Collection<ValueOrExpression<String>> values)Sets the "ecl-include-for-deletes" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setEmailAddressAttributeType(Collection<ValueOrExpression<AttributeType>> values)Sets the "email-address-attribute-type" property.voidAlertHandlerCfgClient. setEnabledAlertType(Collection<ValueOrExpression<String>> values)Sets the "enabled-alert-type" property.voidEntityTagVirtualAttributeCfgClient. setExcludedAttribute(Collection<ValueOrExpression<AttributeType>> values)Sets the "excluded-attribute" property.voidPemKeyManagerProviderCfgClient. setExcludedFilenamePattern(Collection<ValueOrExpression<String>> values)Sets the "excluded-filename-pattern" property.voidPemTrustManagerProviderCfgClient. setExcludedFilenamePattern(Collection<ValueOrExpression<String>> values)Sets the "excluded-filename-pattern" property.voidCrestMetricsEndpointCfgClient. setExcludedMetricPattern(Collection<ValueOrExpression<String>> values)Sets the "excluded-metric-pattern" property.voidGraphiteMonitorReporterPluginCfgClient. setExcludedMetricPattern(Collection<ValueOrExpression<String>> values)Sets the "excluded-metric-pattern" property.voidPrometheusEndpointCfgClient. setExcludedMetricPattern(Collection<ValueOrExpression<String>> values)Sets the "excluded-metric-pattern" property.voidFifoEntryCacheCfgClient. setExcludeFilter(Collection<ValueOrExpression<String>> values)Sets the "exclude-filter" property.voidSoftReferenceEntryCacheCfgClient. setExcludeFilter(Collection<ValueOrExpression<String>> values)Sets the "exclude-filter" property.voidVirtualAttributeCfgClient. setFilter(Collection<ValueOrExpression<String>> values)Sets the "filter" property.voidReplicationDomainCfgClient. setFractionalExclude(Collection<ValueOrExpression<String>> values)Sets the "fractional-exclude" property.voidReplicationDomainCfgClient. setFractionalInclude(Collection<ValueOrExpression<String>> values)Sets the "fractional-include" property.voidDseeCompatAccessControlHandlerCfgClient. setGlobalAci(Collection<ValueOrExpression<String>> values)Sets the "global-aci" property.voidVirtualAttributeCfgClient. setGroupDn(Collection<ValueOrExpression<Dn>> values)Sets the "group-dn" property.voidCramMd5SaslMechanismHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidDigestMd5SaslMechanismHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidGssapiSaslMechanismHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidHttpBasicAuthorizationMechanismCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidHttpOauth2AuthorizationMechanismCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidPasswordModifyExtendedOperationHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidPlainSaslMechanismHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidScramSha256SaslMechanismHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidScramSha512SaslMechanismHandlerCfgClient. setIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "identity-mapper" property.voidCrestMetricsEndpointCfgClient. setIncludedMetricPattern(Collection<ValueOrExpression<String>> values)Sets the "included-metric-pattern" property.voidGraphiteMonitorReporterPluginCfgClient. setIncludedMetricPattern(Collection<ValueOrExpression<String>> values)Sets the "included-metric-pattern" property.voidPrometheusEndpointCfgClient. setIncludedMetricPattern(Collection<ValueOrExpression<String>> values)Sets the "included-metric-pattern" property.voidFifoEntryCacheCfgClient. setIncludeFilter(Collection<ValueOrExpression<String>> values)Sets the "include-filter" property.voidSoftReferenceEntryCacheCfgClient. setIncludeFilter(Collection<ValueOrExpression<String>> values)Sets the "include-filter" property.voidJsonQueryEqualityMatchingRuleCfgClient. setIndexedField(Collection<ValueOrExpression<String>> values)Sets the "indexed-field" property.voidBackendIndexCfgClient. setIndexExtensibleMatchingRule(Collection<ValueOrExpression<String>> values)Sets the "index-extensible-matching-rule" property.voidBackendIndexCfgClient. setIndexType(Collection<ValueOrExpression<BackendIndexCfgDefn.IndexType>> values)Sets the "index-type" property.voidJeBackendCfgClient. setJeProperty(Collection<ValueOrExpression<String>> values)Sets the "je-property" property.voidAdministrationConnectorCfgClient. setListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "listen-address" property.voidGlobalCfgClient. setListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "listen-address" property.voidHttpConnectionHandlerCfgClient. setListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "listen-address" property.voidLdapConnectionHandlerCfgClient. setListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "listen-address" property.voidReplicationServerCfgClient. setListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "listen-address" property.voidSnmpConnectionHandlerCfgClient. setListenAddress(Collection<ValueOrExpression<com.forgerock.opendj.util.Host>> values)Sets the "listen-address" property.voidCsvFileAccessLogPublisherCfgClient. setLogFieldBlacklist(Collection<ValueOrExpression<String>> values)Sets the "log-field-blacklist" property.voidCsvFileHttpAccessLogPublisherCfgClient. setLogFieldBlacklist(Collection<ValueOrExpression<String>> values)Sets the "log-field-blacklist" property.voidExternalAccessLogPublisherCfgClient. setLogFieldBlacklist(Collection<ValueOrExpression<String>> values)Sets the "log-field-blacklist" property.voidExternalHttpAccessLogPublisherCfgClient. setLogFieldBlacklist(Collection<ValueOrExpression<String>> values)Sets the "log-field-blacklist" property.voidJsonFileAccessLogPublisherCfgClient. setLogFieldBlacklist(Collection<ValueOrExpression<String>> values)Sets the "log-field-blacklist" property.voidJsonFileHttpAccessLogPublisherCfgClient. setLogFieldBlacklist(Collection<ValueOrExpression<String>> values)Sets the "log-field-blacklist" property.voidCsvFileHttpAccessLogPublisherCfgClient. setLogFieldWhitelist(Collection<ValueOrExpression<String>> values)Sets the "log-field-whitelist" property.voidExternalHttpAccessLogPublisherCfgClient. setLogFieldWhitelist(Collection<ValueOrExpression<String>> values)Sets the "log-field-whitelist" property.voidJsonFileHttpAccessLogPublisherCfgClient. setLogFieldWhitelist(Collection<ValueOrExpression<String>> values)Sets the "log-field-whitelist" property.voidAccessLogFilteringCriteriaCfgClient. setLogRecordType(Collection<ValueOrExpression<AccessLogFilteringCriteriaCfgDefn.LogRecordType>> values)Sets the "log-record-type" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setMappedAttribute(Collection<ValueOrExpression<AttributeType>> values)Sets the "mapped-attribute" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setMappedSearchBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "mapped-search-base-dn" property.voidAttributeValuePasswordValidatorCfgClient. setMatchAttribute(Collection<ValueOrExpression<AttributeType>> values)Sets the "match-attribute" property.voidExactMatchIdentityMapperCfgClient. setMatchAttribute(Collection<ValueOrExpression<AttributeType>> values)Sets the "match-attribute" property.voidRegularExpressionIdentityMapperCfgClient. setMatchAttribute(Collection<ValueOrExpression<AttributeType>> values)Sets the "match-attribute" property.voidExactMatchIdentityMapperCfgClient. setMatchBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "match-base-dn" property.voidRegularExpressionIdentityMapperCfgClient. setMatchBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "match-base-dn" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setMessageSubject(Collection<ValueOrExpression<String>> values)Sets the "message-subject" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setMessageTemplateFile(Collection<ValueOrExpression<String>> values)Sets the "message-template-file" property.voidErrorLogPublisherCfgClient. setOverrideSeverity(Collection<ValueOrExpression<String>> values)Sets the "override-severity" property.voidProxyBackendCfgClient. setPartitionBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "partition-base-dn" property.voidRandomPasswordGeneratorCfgClient. setPasswordCharacterSet(Collection<ValueOrExpression<String>> values)Sets the "password-character-set" property.voidPasswordPolicyCfgClient. setPasswordValidator(Collection<ValueOrExpression<String>> values)Sets the "password-validator" property.voidGlobalAccessControlPolicyCfgClient. setPermission(Collection<ValueOrExpression<GlobalAccessControlPolicyCfgDefn.Permission>> values)Sets the "permission" property.voidAttributeCleanupPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidChangeNumberControlPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidEntityTagPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidEntryUuidPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidGraphiteMonitorReporterPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidLastModPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidLdapAttributeDescriptionListPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidPasswordPolicyImportPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidReferentialIntegrityPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidSambaPasswordPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidSevenBitCleanPluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidUniqueAttributePluginCfgClient. setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)Sets the "plugin-type" property.voidPasswordPolicyCfgClient. setPreviousLastLoginTimeFormat(Collection<ValueOrExpression<String>> values)Sets the "previous-last-login-time-format" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setPrimaryRemoteLdapServer(Collection<ValueOrExpression<com.forgerock.opendj.util.HostPort>> values)Sets the "primary-remote-ldap-server" property.voidStaticServiceDiscoveryMechanismCfgClient. setPrimaryServer(Collection<ValueOrExpression<com.forgerock.opendj.util.HostPort>> values)Sets the "primary-server" property.voidGlobalCfgClient. setProxiedAuthorizationIdentityMapper(Collection<ValueOrExpression<String>> values)Sets the "proxied-authorization-identity-mapper" property.voidAdministrationConnectorCfgClient. setProxyProtocolAllowedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "proxy-protocol-allowed-client" property.voidGlobalCfgClient. setProxyProtocolAllowedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "proxy-protocol-allowed-client" property.voidLdapConnectionHandlerCfgClient. setProxyProtocolAllowedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "proxy-protocol-allowed-client" property.voidSambaPasswordPluginCfgClient. setPwdSyncPolicy(Collection<ValueOrExpression<SambaPasswordPluginCfgDefn.PwdSyncPolicy>> values)Sets the "pwd-sync-policy" property.voidSmtpAccountStatusNotificationHandlerCfgClient. setRecipientAddress(Collection<ValueOrExpression<String>> values)Sets the "recipient-address" property.voidSmtpAlertHandlerCfgClient. setRecipientAddress(Collection<ValueOrExpression<String>> values)Sets the "recipient-address" property.voidReplicationSynchronizationProviderCfgClient. setReferralsUrl(Collection<ValueOrExpression<String>> values)Sets the "referrals-url" property.voidAttributeCleanupPluginCfgClient. setRemoveInboundAttributes(Collection<ValueOrExpression<String>> values)Sets the "remove-inbound-attributes" property.voidAttributeCleanupPluginCfgClient. setRenameInboundAttributes(Collection<ValueOrExpression<String>> values)Sets the "rename-inbound-attributes" property.voidAccessLogFilteringCriteriaCfgClient. setRequestTargetDnEqualTo(Collection<ValueOrExpression<String>> values)Sets the "request-target-dn-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setRequestTargetDnEqualTo(Collection<ValueOrExpression<String>> values)Sets the "request-target-dn-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setRequestTargetDnNotEqualTo(Collection<ValueOrExpression<String>> values)Sets the "request-target-dn-not-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setRequestTargetDnNotEqualTo(Collection<ValueOrExpression<String>> values)Sets the "request-target-dn-not-equal-to" property.voidHttpOauth2AuthorizationMechanismCfgClient. setRequiredScope(Collection<ValueOrExpression<String>> values)Sets the "required-scope" property.voidAccessLogFilteringCriteriaCfgClient. setResponseResultCodeEqualTo(Collection<ValueOrExpression<Integer>> values)Sets the "response-result-code-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setResponseResultCodeNotEqualTo(Collection<ValueOrExpression<Integer>> values)Sets the "response-result-code-not-equal-to" property.voidAdministrationConnectorCfgClient. setRestrictedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "restricted-client" property.voidConnectionHandlerCfgClient. setRestrictedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "restricted-client" property.voidGlobalCfgClient. setRestrictedClient(Collection<ValueOrExpression<AddressMask>> values)Sets the "restricted-client" property.voidCsvFileAccessLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidCsvFileHttpAccessLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidFileBasedAccessLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidFileBasedAuditLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidFileBasedDebugLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidFileBasedErrorLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidFileBasedHttpAccessLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidJsonFileAccessLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidJsonFileHttpAccessLogPublisherCfgClient. setRetentionPolicy(Collection<ValueOrExpression<String>> values)Sets the "retention-policy" property.voidCsvFileAccessLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidCsvFileHttpAccessLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidFileBasedAccessLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidFileBasedAuditLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidFileBasedDebugLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidFileBasedErrorLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidFileBasedHttpAccessLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidJsonFileAccessLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidJsonFileHttpAccessLogPublisherCfgClient. setRotationPolicy(Collection<ValueOrExpression<String>> values)Sets the "rotation-policy" property.voidSchemaBackendCfgClient. setSchemaEntryDn(Collection<ValueOrExpression<Dn>> values)Sets the "schema-entry-dn" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setSecondaryRemoteLdapServer(Collection<ValueOrExpression<com.forgerock.opendj.util.HostPort>> values)Sets the "secondary-remote-ldap-server" property.voidStaticServiceDiscoveryMechanismCfgClient. setSecondaryServer(Collection<ValueOrExpression<com.forgerock.opendj.util.HostPort>> values)Sets the "secondary-server" property.voidProxyBackendCfgClient. setShard(Collection<ValueOrExpression<String>> values)Sets the "shard" property.voidMailServerCfgClient. setSmtpProperty(Collection<ValueOrExpression<String>> values)Sets the "smtp-property" property.voidAdministrationConnectorCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidHttpConnectionHandlerCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidJmxConnectionHandlerCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidLdapConnectionHandlerCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidProxyBackendCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidReplicationServiceDiscoveryMechanismCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidReplicationSynchronizationProviderCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidStaticServiceDiscoveryMechanismCfgClient. setSslCertNickname(Collection<ValueOrExpression<String>> values)Sets the "ssl-cert-nickname" property.voidAdministrationConnectorCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidHttpConnectionHandlerCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidLdapConnectionHandlerCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidReplicationServiceDiscoveryMechanismCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidReplicationSynchronizationProviderCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidStaticServiceDiscoveryMechanismCfgClient. setSslCipherSuite(Collection<ValueOrExpression<String>> values)Sets the "ssl-cipher-suite" property.voidAdministrationConnectorCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidHttpConnectionHandlerCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidHttpOauth2OpenamAuthorizationMechanismCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidHttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidLdapConnectionHandlerCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidLdapPassThroughAuthenticationPolicyCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidReplicationServiceDiscoveryMechanismCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidReplicationSynchronizationProviderCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidStaticServiceDiscoveryMechanismCfgClient. setSslProtocol(Collection<ValueOrExpression<String>> values)Sets the "ssl-protocol" property.voidSubjectAttributeToUserAttributeCertificateMapperCfgClient. setSubjectAttributeMapping(Collection<ValueOrExpression<String>> values)Sets the "subject-attribute-mapping" property.voidGlobalCfgClient. setSubordinateBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "subordinate-base-dn" property.voidFixedTimeLogRotationPolicyCfgClient. setTimeOfDay(Collection<ValueOrExpression<String>> values)Sets the "time-of-day" property.voidSnmpConnectionHandlerCfgClient. setTrapsDestination(Collection<ValueOrExpression<String>> values)Sets the "traps-destination" property.voidAdministrationConnectorCfgClient. setTrustManagerProvider(Collection<ValueOrExpression<String>> values)Sets the "trust-manager-provider" property.voidHttpConnectionHandlerCfgClient. setTrustManagerProvider(Collection<ValueOrExpression<String>> values)Sets the "trust-manager-provider" property.voidLdapConnectionHandlerCfgClient. setTrustManagerProvider(Collection<ValueOrExpression<String>> values)Sets the "trust-manager-provider" property.voidReplicationSynchronizationProviderCfgClient. setTrustManagerProvider(Collection<ValueOrExpression<String>> values)Sets the "trust-manager-provider" property.voidUniqueAttributePluginCfgClient. setType(Collection<ValueOrExpression<AttributeType>> values)Sets the "type" property.voidFingerprintCertificateMapperCfgClient. setUserBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "user-base-dn" property.voidSubjectAttributeToUserAttributeCertificateMapperCfgClient. setUserBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "user-base-dn" property.voidSubjectDnToUserAttributeCertificateMapperCfgClient. setUserBaseDn(Collection<ValueOrExpression<Dn>> values)Sets the "user-base-dn" property.voidAccessLogFilteringCriteriaCfgClient. setUserDnEqualTo(Collection<ValueOrExpression<String>> values)Sets the "user-dn-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setUserDnEqualTo(Collection<ValueOrExpression<String>> values)Sets the "user-dn-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setUserDnNotEqualTo(Collection<ValueOrExpression<String>> values)Sets the "user-dn-not-equal-to" property.voidGlobalAccessControlPolicyCfgClient. setUserDnNotEqualTo(Collection<ValueOrExpression<String>> values)Sets the "user-dn-not-equal-to" property.voidAccessLogFilteringCriteriaCfgClient. setUserIsMemberOf(Collection<ValueOrExpression<Dn>> values)Sets the "user-is-member-of" property.voidAccessLogFilteringCriteriaCfgClient. setUserIsNotMemberOf(Collection<ValueOrExpression<Dn>> values)Sets the "user-is-not-member-of" property.voidUserDefinedVirtualAttributeCfgClient. setValue(Collection<ValueOrExpression<String>> values)Sets the "value" property. -
Uses of ValueOrExpression in org.forgerock.opendj.setup.model
Methods in org.forgerock.opendj.setup.model that return ValueOrExpression Modifier and Type Method Description ValueOrExpression<T>Profile.Parameter. getDefaultValue()Returns this profile parameter default value.
-