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.
|
Modifier and Type | Method and Description |
---|---|
ValueOrExpression<T> |
PropertyDefinition.decodeValue(String value)
Parse and validate a string representation of a property value.
|
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 not
null . |
Modifier and Type | Method and 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.
|
<T> Collection<ValueOrExpression<T>> |
PropertyProvider.getPropertyValues(PropertyDefinition<T> d)
Get the property values associated with the specified 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.
|
Modifier and Type | Method and Description |
---|---|
<R,P> R |
IpAddressMaskPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<AddressMask> value,
P p) |
<R,P> R |
AttributeTypePropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<AttributeType> value,
P p) |
<R,P> R |
BooleanPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<Boolean> value,
P p) |
<R,P> R |
DnPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<Dn> value,
P p) |
<R,P> R |
EnumPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<E> value,
P p) |
<R,P> R |
IpAddressPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<InetAddress> value,
P p) |
<R,P> R |
IntegerPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<Integer> value,
P p) |
<R,P> R |
SizePropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<Long> value,
P p) |
<R,P> R |
DurationPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<Long> value,
P p) |
<R,P> R |
StringPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<String> value,
P p) |
<R,P> R |
ClassPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<String> value,
P p) |
<R,P> R |
AggregationPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<String> value,
P p) |
<R,P> R |
AciPropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<String> value,
P p) |
abstract <R,P> R |
PropertyDefinition.accept(PropertyValueVisitor<R,P> v,
ValueOrExpression<T> value,
P p)
Apply a visitor to a property value associated with this property
definition.
|
int |
PropertyDefinition.compare(ValueOrExpression<T> o1,
ValueOrExpression<T> o2)
Compares two property values for order.
|
int |
PropertyDefinition.compare(ValueOrExpression<T> o1,
ValueOrExpression<T> o2)
Compares two property values for order.
|
String |
PropertyDefinition.encodeValue(ValueOrExpression<T> value)
Encode the provided property value into its string representation.
|
String |
PropertyDefinition.normalizeValue(ValueOrExpression<T> valueOrExpression)
Get a normalized string representation of a property value.
|
void |
PropertyDefinition.validateValue(ValueOrExpression<T> valueOrExpression)
Determine if the provided property value is valid according to this
property definition.
|
R |
PropertyValueVisitor.visitAci(AciPropertyDefinition pd,
ValueOrExpression<String> v,
P p)
Visit a dseecompat ACI.
|
<C extends ConfigurationClient,S extends Configuration> |
PropertyValueVisitor.visitAggregation(AggregationPropertyDefinition<C,S> pd,
ValueOrExpression<String> v,
P p)
Visit an aggregation property value.
|
R |
PropertyValueVisitor.visitAttributeType(AttributeTypePropertyDefinition pd,
ValueOrExpression<AttributeType> v,
P p)
Visit an attribute type.
|
R |
PropertyValueVisitor.visitBoolean(BooleanPropertyDefinition pd,
ValueOrExpression<Boolean> v,
P p)
Visit a boolean.
|
R |
PropertyValueVisitor.visitClass(ClassPropertyDefinition pd,
ValueOrExpression<String> v,
P p)
Visit a class.
|
R |
PropertyValueVisitor.visitDn(DnPropertyDefinition pd,
ValueOrExpression<Dn> v,
P p)
Visit a DN.
|
R |
PropertyValueVisitor.visitDuration(DurationPropertyDefinition pd,
ValueOrExpression<Long> v,
P p)
Visit a duration.
|
<E extends Enum<E>> |
PropertyValueVisitor.visitEnum(EnumPropertyDefinition<E> pd,
ValueOrExpression<E> v,
P p)
Visit an enumeration.
|
R |
PropertyValueVisitor.visitInteger(IntegerPropertyDefinition pd,
ValueOrExpression<Integer> v,
P p)
Visit an integer.
|
R |
PropertyValueVisitor.visitIpAddress(IpAddressPropertyDefinition pd,
ValueOrExpression<InetAddress> v,
P p)
Visit a IP address.
|
R |
PropertyValueVisitor.visitIpAddressMask(IpAddressMaskPropertyDefinition pd,
ValueOrExpression<AddressMask> v,
P p)
Visit a IP address mask.
|
R |
PropertyValueVisitor.visitSize(SizePropertyDefinition pd,
ValueOrExpression<Long> v,
P p)
Visit a size.
|
R |
PropertyValueVisitor.visitString(StringPropertyDefinition pd,
ValueOrExpression<String> v,
P p)
Visit a string.
|
<T> R |
PropertyValueVisitor.visitUnknown(PropertyDefinition<T> pd,
ValueOrExpression<T> v,
P p)
Visit an unknown type of property value.
|
Modifier and Type | Method and Description |
---|---|
static <T extends Comparable<T>> |
Expressions.getValuesOrThrowIfExpression(Collection<ValueOrExpression<T>> wrappedValues)
Returns a sorted set containing values from the provided collection of wrapped values.
|
static <T> SortedSet<T> |
Expressions.getValuesOrThrowIfExpression(Collection<ValueOrExpression<T>> wrappedValues,
Comparator<T> comparator)
Returns a sorted set containing values from the provided collection of wrapped values.
|
Modifier and Type | Method and Description |
---|---|
<P> ValueOrExpression<P> |
ManagementContext.getPropertyValue(ManagedObjectPath<?,?> path,
PropertyDefinition<P> pd)
Gets the effective value of a property in the named managed object.
|
<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.
|
Modifier and Type | Method and Description |
---|---|
<P> SortedSet<ValueOrExpression<P>> |
ManagementContext.getPropertyValues(ManagedObjectPath<?,?> path,
PropertyDefinition<P> pd)
Gets the effective values of a property in the named managed object.
|
<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.
|
Modifier and Type | Method and Description |
---|---|
<P> void |
ManagedObject.setPropertyValue(PropertyDefinition<P> pd,
ValueOrExpression<P> value)
Sets a new pending value for the specified property.
|
Modifier and Type | Method and Description |
---|---|
<P> void |
ManagedObject.setPropertyValues(PropertyDefinition<P> pd,
Collection<ValueOrExpression<P>> values)
Sets a new pending values for the specified property.
|
Modifier and Type | Method and Description |
---|---|
<P> ValueOrExpression<P> |
AbstractManagedObject.getPropertyValue(PropertyDefinition<P> pd) |
Modifier and Type | Method and Description |
---|---|
SortedSet<ValueOrExpression<T>> |
Property.getActiveValues()
Get an immutable set view of this property's active 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.
|
abstract <C extends ConfigurationClient,S extends Configuration,P> |
Driver.getPropertyValues(ManagedObjectPath<C,S> path,
PropertyDefinition<P> pd)
Gets the effective values of a property in the named managed object.
|
<P> SortedSet<ValueOrExpression<P>> |
AbstractManagedObject.getPropertyValues(PropertyDefinition<P> pd) |
Modifier and Type | Method and Description |
---|---|
<P> void |
AbstractManagedObject.setPropertyValue(PropertyDefinition<P> pd,
ValueOrExpression<P> value) |
Modifier and Type | Method and Description |
---|---|
<T> void |
PropertySet.addProperty(PropertyDefinition<T> pd,
Collection<T> defaultValues,
Collection<ValueOrExpression<T>> activeValues)
Creates a property with the provided sets of pre-validated default and
active values.
|
<P> void |
AbstractManagedObject.setPropertyValues(PropertyDefinition<P> pd,
Collection<ValueOrExpression<P>> values) |
Modifier and Type | Method and Description |
---|---|
ValueOrExpression<Integer> |
LdapConnectionHandlerCfgClient.getAcceptBacklog()
Gets the "accept-backlog" property.
|
ValueOrExpression<Integer> |
HttpConnectionHandlerCfgClient.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<String> |
HttpBasicAuthorizationMechanismCfgClient.getAltPasswordHeader()
Gets the "alt-password-header" property.
|
ValueOrExpression<String> |
HttpBasicAuthorizationMechanismCfgClient.getAltUsernameHeader()
Gets the "alt-username-header" property.
|
ValueOrExpression<Integer> |
ReplicationDomainCfgClient.getAssuredSdLevel()
Gets the "assured-sd-level" property.
|
ValueOrExpression<Long> |
ReplicationServerCfgClient.getAssuredTimeout()
Gets the "assured-timeout" property.
|
ValueOrExpression<Long> |
ReplicationDomainCfgClient.getAssuredTimeout()
Gets the "assured-timeout" property.
|
ValueOrExpression<ReplicationDomainCfgDefn.AssuredType> |
ReplicationDomainCfgClient.getAssuredType()
Gets the "assured-type" property.
|
ValueOrExpression<AttributeType> |
BackendIndexCfgClient.getAttribute()
Gets the "attribute" property.
|
ValueOrExpression<AttributeType> |
VirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
SubschemaSubentryVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
StructuralObjectClassVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
PasswordPolicySubentryVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
PasswordExpirationTimeVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
NumSubordinatesVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
IsMemberOfVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
HasSubordinatesVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
GoverningStructureRuleVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
EntryUuidVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
EntryDnVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
EntityTagVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<AttributeType> |
CollectiveAttributeSubentriesVirtualAttributeCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
ValueOrExpression<String> |
HttpOauth2AuthorizationMechanismCfgClient.getAuthzidJsonPointer()
Gets the "authzid-json-pointer" property.
|
ValueOrExpression<String> |
BackendCfgClient.getBackendId()
Gets the "backend-id" property.
|
ValueOrExpression<Dn> |
ReplicationDomainCfgClient.getBaseDn()
Gets the "base-dn" property.
|
ValueOrExpression<Dn> |
LdapTrustManagerProviderCfgClient.getBaseDn()
Gets the "base-dn" property.
|
ValueOrExpression<Dn> |
LdapKeyManagerProviderCfgClient.getBaseDn()
Gets the "base-dn" property.
|
ValueOrExpression<String> |
HttpOauth2CtsAuthorizationMechanismCfgClient.getBaseDn()
Gets the "base-dn" property.
|
ValueOrExpression<Dn> |
BackendVlvIndexCfgClient.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> |
LdapConnectionHandlerCfgClient.getBufferSize()
Gets the "buffer-size" property.
|
ValueOrExpression<Long> |
HttpConnectionHandlerCfgClient.getBufferSize()
Gets the "buffer-size" property.
|
ValueOrExpression<Long> |
FileBasedHttpAccessLogPublisherCfgClient.getBufferSize()
Gets the "buffer-size" property.
|
ValueOrExpression<Long> |
FileBasedErrorLogPublisherCfgClient.getBufferSize()
Gets the "buffer-size" property.
|
ValueOrExpression<Long> |
FileBasedDebugLogPublisherCfgClient.getBufferSize()
Gets the "buffer-size" property.
|
ValueOrExpression<Long> |
FileBasedAuditLogPublisherCfgClient.getBufferSize()
Gets the "buffer-size" property.
|
ValueOrExpression<Long> |
FileBasedAccessLogPublisherCfgClient.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<String> |
ExternalSaslMechanismHandlerCfgClient.getCertificateMapper()
Gets the "certificate-mapper" property.
|
ValueOrExpression<ExternalSaslMechanismHandlerCfgDefn.CertificateValidationPolicy> |
ExternalSaslMechanismHandlerCfgClient.getCertificateValidationPolicy()
Gets the "certificate-validation-policy" property.
|
ValueOrExpression<Long> |
ReplicationDomainCfgClient.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> |
ReplicationServerCfgClient.getCipherKeyLength()
Gets the "cipher-key-length" property.
|
ValueOrExpression<Integer> |
PluggableBackendCfgClient.getCipherKeyLength()
Gets the "cipher-key-length" property.
|
ValueOrExpression<Integer> |
CryptoManagerCfgClient.getCipherKeyLength()
Gets the "cipher-key-length" property.
|
ValueOrExpression<String> |
ReplicationServerCfgClient.getCipherTransformation()
Gets the "cipher-transformation" property.
|
ValueOrExpression<String> |
PluggableBackendCfgClient.getCipherTransformation()
Gets the "cipher-transformation" property.
|
ValueOrExpression<String> |
CryptoManagerCfgClient.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> |
ExternalHttpAccessLogPublisherCfgClient.getConfigFile()
Gets the "config-file" property.
|
ValueOrExpression<String> |
ExternalAccessLogPublisherCfgClient.getConfigFile()
Gets the "config-file" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
VirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
SubschemaSubentryVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
StructuralObjectClassVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
PasswordPolicySubentryVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
PasswordExpirationTimeVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
NumSubordinatesVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
MemberVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
IsMemberOfVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
HasSubordinatesVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
GoverningStructureRuleVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
EntryUuidVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
EntryDnVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
EntityTagVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> |
CollectiveAttributeSubentriesVirtualAttributeCfgClient.getConflictBehavior()
Gets the "conflict-behavior" property.
|
ValueOrExpression<Long> |
ReplicationDomainCfgClient.getConflictsHistoricalPurgeDelay()
Gets the "conflicts-historical-purge-delay" 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> |
ReplicationSynchronizationProviderCfgClient.getConnectionTimeout()
Gets the "connection-timeout" property.
|
ValueOrExpression<Long> |
ProxyBackendCfgClient.getConnectionTimeout()
Gets the "connection-timeout" property.
|
ValueOrExpression<Long> |
LdapPassThroughAuthenticationPolicyCfgClient.getConnectionTimeout()
Gets the "connection-timeout" property.
|
ValueOrExpression<CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm> |
CryptPasswordStorageSchemeCfgClient.getCryptPasswordStorageEncryptionAlgorithm()
Gets the "crypt-password-storage-encryption-algorithm" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getCsvDelimiterChar()
Gets the "csv-delimiter-char" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getCsvDelimiterChar()
Gets the "csv-delimiter-char" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getCsvEolSymbols()
Gets the "csv-eol-symbols" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getCsvEolSymbols()
Gets the "csv-eol-symbols" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getCsvQuoteChar()
Gets the "csv-quote-char" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getCsvQuoteChar()
Gets the "csv-quote-char" property.
|
ValueOrExpression<Integer> |
GlobalCfgClient.getCursorEntryLimit()
Gets the "cursor-entry-limit" 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> |
StaticServiceDiscoveryMechanismCfgClient.getDiscoveryInterval()
Gets the "discovery-interval" property.
|
ValueOrExpression<Long> |
ReplicationServiceDiscoveryMechanismCfgClient.getDiscoveryInterval()
Gets the "discovery-interval" property.
|
ValueOrExpression<Long> |
ProxyBackendCfgClient.getDiscoveryInterval()
Gets the "discovery-interval" property.
|
ValueOrExpression<Long> |
ReplicationServerCfgClient.getDiskFullThreshold()
Gets the "disk-full-threshold" property.
|
ValueOrExpression<Long> |
JeBackendCfgClient.getDiskFullThreshold()
Gets the "disk-full-threshold" property.
|
ValueOrExpression<Long> |
ReplicationServerCfgClient.getDiskLowThreshold()
Gets the "disk-low-threshold" property.
|
ValueOrExpression<Long> |
JeBackendCfgClient.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<String> |
GraphiteMonitorReporterPluginCfgClient.getGraphiteServer()
Gets the "graphite-server" property.
|
ValueOrExpression<Integer> |
ReplicationServerCfgClient.getGroupId()
Gets the "group-id" property.
|
ValueOrExpression<Integer> |
ReplicationDomainCfgClient.getGroupId()
Gets the "group-id" property.
|
ValueOrExpression<Long> |
ReplicationDomainCfgClient.getHeartbeatInterval()
Gets the "heartbeat-interval" property.
|
ValueOrExpression<Long> |
ProxyBackendCfgClient.getHeartbeatInterval()
Gets the "heartbeat-interval" property.
|
ValueOrExpression<Dn> |
ProxyBackendCfgClient.getHeartbeatSearchRequestBaseDn()
Gets the "heartbeat-search-request-base-dn" property.
|
ValueOrExpression<String> |
PlainSaslMechanismHandlerCfgClient.getIdentityMapper()
Gets the "identity-mapper" property.
|
ValueOrExpression<String> |
PasswordModifyExtendedOperationHandlerCfgClient.getIdentityMapper()
Gets the "identity-mapper" property.
|
ValueOrExpression<String> |
HttpOauth2AuthorizationMechanismCfgClient.getIdentityMapper()
Gets the "identity-mapper" property.
|
ValueOrExpression<String> |
HttpBasicAuthorizationMechanismCfgClient.getIdentityMapper()
Gets the "identity-mapper" property.
|
ValueOrExpression<String> |
GssapiSaslMechanismHandlerCfgClient.getIdentityMapper()
Gets the "identity-mapper" property.
|
ValueOrExpression<String> |
DigestMd5SaslMechanismHandlerCfgClient.getIdentityMapper()
Gets the "identity-mapper" property.
|
ValueOrExpression<String> |
CramMd5SaslMechanismHandlerCfgClient.getIdentityMapper()
Gets the "identity-mapper" 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> |
PluggableBackendCfgClient.getIndexEntryLimit()
Gets the "index-entry-limit" property.
|
ValueOrExpression<Integer> |
BackendIndexCfgClient.getIndexEntryLimit()
Gets the "index-entry-limit" property.
|
ValueOrExpression<Integer> |
PluggableBackendCfgClient.getIndexFilterAnalyzerMaxFilters()
Gets the "index-filter-analyzer-max-filters" property.
|
ValueOrExpression<Integer> |
ReplicationDomainCfgClient.getInitializationWindowSize()
Gets the "initialization-window-size" property.
|
ValueOrExpression<GlobalCfgDefn.InvalidAttributeSyntaxBehavior> |
GlobalCfgClient.getInvalidAttributeSyntaxBehavior()
Gets the "invalid-attribute-syntax-behavior" property.
|
ValueOrExpression<ReplicationDomainCfgDefn.IsolationPolicy> |
ReplicationDomainCfgClient.getIsolationPolicy()
Gets the "isolation-policy" property.
|
ValueOrExpression<AttributeType> |
CertificateMapperCfgClient.getIssuerAttribute()
Gets the "issuer-attribute" property.
|
ValueOrExpression<String> |
WorkQueueCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
WhoAmIExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
VirtualStaticGroupImplementationCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
VirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
UserDefinedVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
UniqueCharactersPasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
UniqueAttributePluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
TrustStoreBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
TrustManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
TripleDesPasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
TraditionalWorkQueueCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
TimeLimitLogRotationPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
TaskBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SynchronizationProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SubschemaSubentryVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SubjectEqualsDnCertificateMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SubjectDnToUserAttributeCertificateMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SubjectAttributeToUserAttributeCertificateMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
StructuralObjectClassVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
StaticServiceDiscoveryMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
StaticGroupImplementationCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
StartTlsExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SoftReferenceEntryCacheCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SnmpConnectionHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SmtpAlertHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SmtpAccountStatusNotificationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SizeLimitLogRotationPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SizeLimitLogRetentionPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SimilarityBasedPasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Sha1PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SevenBitCleanPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ServiceDiscoveryMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SchemaProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SchemaBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SambaPasswordPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SaltedSha512PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SaltedSha384PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SaltedSha256PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SaltedSha1PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
SaltedMd5PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Rest2ldapEndpointCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ReplicationSynchronizationProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ReplicationServiceDiscoveryMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
RepeatedCharactersPasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
RegularExpressionIdentityMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ReferentialIntegrityPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Rc4PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
RandomPasswordGeneratorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ProxyBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PrometheusEndpointCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ProfilerPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PolicyBasedAccessControlHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PlainSaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Pkcs5s2PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Pkcs11TrustManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Pkcs11KeyManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Pbkdf2PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordPolicySubentryVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordPolicyStateExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordPolicyImportPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordModifyExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordGeneratorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
PasswordExpirationTimeVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
NumSubordinatesVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
NullBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
MonitorBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
MemoryBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
MemberVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Md5PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LogRotationPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LogRetentionPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LengthBasedPasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdifConnectionHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdifBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdapTrustManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdapPassThroughAuthenticationPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdapKeyManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdapConnectionHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LdapAttributeDescriptionListPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
LastModPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
KeyManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JsonQueryEqualityMatchingRuleCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JsonOrderingMatchingRuleCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JsonFileHttpAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JsonFileAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JsonEqualityMatchingRuleCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JmxConnectionHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JmxAlertHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JeBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
IsMemberOfVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
IdentityMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpOauth2OpenamAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpOauth2FileAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpOauth2CtsAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpEndpointCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpConnectionHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpBasicAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpAnonymousAuthorizationMechanismCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HttpAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
HasSubordinatesVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
GssapiSaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
GroupImplementationCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
GraphiteMonitorReporterPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
GoverningStructureRuleVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
GetSymmetricKeyExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
GetConnectionIdExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FreeDiskSpaceLogRetentionPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FixedTimeLogRotationPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FingerprintCertificateMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileCountLogRetentionPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedTrustManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedKeyManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedHttpAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedErrorLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedDebugLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedAuditLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FileBasedAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
FifoEntryCacheCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ExternalSaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ExternalHttpAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ExternalAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ExactMatchIdentityMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ErrorLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ErrorLogAccountStatusNotificationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
EntryUuidVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
EntryUuidPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
EntryDnVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
EntryCacheCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
EntityTagVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
DynamicGroupImplementationCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
DseeCompatAccessControlHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
DigestMd5SaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
DictionaryPasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
DebugLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CryptPasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CrestMetricsEndpointCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CramMd5SaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CoreSchemaCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ConnectionHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CollectiveAttributeSubentriesVirtualAttributeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ClearPasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CharacterSetPasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
ChangeNumberControlPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CertificateMapperCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
CancelExtendedOperationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
BlowfishPasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
BlindTrustManagerProviderCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
BcryptPasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
Base64PasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
BackupBackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
BackendCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AuthenticationPolicyCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AttributeValuePasswordValidatorCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AttributeCleanupPluginCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AnonymousSaslMechanismHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AlertHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AesPasswordStorageSchemeCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AdminEndpointCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AccountStatusNotificationHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AccessLogPublisherCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
AccessControlHandlerCfgClient.getJavaClass()
Gets the "java-class" property.
|
ValueOrExpression<String> |
JsonOrderingMatchingRuleCfgClient.getJsonKeys()
Gets the "json-keys" property.
|
ValueOrExpression<String> |
JsonEqualityMatchingRuleCfgClient.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<String> |
StaticServiceDiscoveryMechanismCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
ReplicationServiceDiscoveryMechanismCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
LdapConnectionHandlerCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
JmxConnectionHandlerCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
HttpOauth2OpenamAuthorizationMechanismCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
HttpConnectionHandlerCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
AdministrationConnectorCfgClient.getKeyManagerProvider()
Gets the "key-manager-provider" property.
|
ValueOrExpression<String> |
FileBasedKeyManagerProviderCfgClient.getKeyStoreFile()
Gets the "key-store-file" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getKeyStoreFile()
Gets the "key-store-file" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getKeyStoreFile()
Gets the "key-store-file" property.
|
ValueOrExpression<String> |
Pkcs11KeyManagerProviderCfgClient.getKeyStorePin()
Gets the "key-store-pin" property.
|
ValueOrExpression<String> |
LdapKeyManagerProviderCfgClient.getKeyStorePin()
Gets the "key-store-pin" property.
|
ValueOrExpression<String> |
FileBasedKeyManagerProviderCfgClient.getKeyStorePin()
Gets the "key-store-pin" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getKeyStorePin()
Gets the "key-store-pin" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getKeyStorePin()
Gets the "key-store-pin" property.
|
ValueOrExpression<String> |
FileBasedKeyManagerProviderCfgClient.getKeyStoreType()
Gets the "key-store-type" property.
|
ValueOrExpression<String> |
GssapiSaslMechanismHandlerCfgClient.getKeytab()
Gets the "keytab" 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<InetAddress> |
JmxConnectionHandlerCfgClient.getListenAddress()
Gets the "listen-address" property.
|
ValueOrExpression<Integer> |
SnmpConnectionHandlerCfgClient.getListenPort()
Gets the "listen-port" property.
|
ValueOrExpression<Integer> |
LdapConnectionHandlerCfgClient.getListenPort()
Gets the "listen-port" property.
|
ValueOrExpression<Integer> |
JmxConnectionHandlerCfgClient.getListenPort()
Gets the "listen-port" property.
|
ValueOrExpression<Integer> |
HttpConnectionHandlerCfgClient.getListenPort()
Gets the "listen-port" property.
|
ValueOrExpression<Integer> |
AdministrationConnectorCfgClient.getListenPort()
Gets the "listen-port" property.
|
ValueOrExpression<ProxyBackendCfgDefn.LoadBalancingAlgorithm> |
ProxyBackendCfgClient.getLoadBalancingAlgorithm()
Gets the "load-balancing-algorithm" 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> |
SoftReferenceEntryCacheCfgClient.getLockTimeout()
Gets the "lock-timeout" property.
|
ValueOrExpression<Long> |
FifoEntryCacheCfgClient.getLockTimeout()
Gets the "lock-timeout" property.
|
ValueOrExpression<String> |
JsonFileHttpAccessLogPublisherCfgClient.getLogDirectory()
Gets the "log-directory" property.
|
ValueOrExpression<String> |
JsonFileAccessLogPublisherCfgClient.getLogDirectory()
Gets the "log-directory" property.
|
ValueOrExpression<String> |
CsvFileHttpAccessLogPublisherCfgClient.getLogDirectory()
Gets the "log-directory" property.
|
ValueOrExpression<String> |
CsvFileAccessLogPublisherCfgClient.getLogDirectory()
Gets the "log-directory" property.
|
ValueOrExpression<String> |
ReferentialIntegrityPluginCfgClient.getLogFile()
Gets the "log-file" property.
|
ValueOrExpression<String> |
FileBasedHttpAccessLogPublisherCfgClient.getLogFile()
Gets the "log-file" property.
|
ValueOrExpression<String> |
FileBasedErrorLogPublisherCfgClient.getLogFile()
Gets the "log-file" property.
|
ValueOrExpression<String> |
FileBasedDebugLogPublisherCfgClient.getLogFile()
Gets the "log-file" property.
|
ValueOrExpression<String> |
FileBasedAuditLogPublisherCfgClient.getLogFile()
Gets the "log-file" property.
|
ValueOrExpression<String> |
FileBasedAccessLogPublisherCfgClient.getLogFile()
Gets the "log-file" property.
|
ValueOrExpression<String> |
FileBasedHttpAccessLogPublisherCfgClient.getLogFilePermissions()
Gets the "log-file-permissions" property.
|
ValueOrExpression<String> |
FileBasedErrorLogPublisherCfgClient.getLogFilePermissions()
Gets the "log-file-permissions" property.
|
ValueOrExpression<String> |
FileBasedDebugLogPublisherCfgClient.getLogFilePermissions()
Gets the "log-file-permissions" property.
|
ValueOrExpression<String> |
FileBasedAuditLogPublisherCfgClient.getLogFilePermissions()
Gets the "log-file-permissions" property.
|
ValueOrExpression<String> |
FileBasedAccessLogPublisherCfgClient.getLogFilePermissions()
Gets the "log-file-permissions" property.
|
ValueOrExpression<String> |
FileBasedHttpAccessLogPublisherCfgClient.getLogFormat()
Gets the "log-format" property.
|
ValueOrExpression<FileBasedAccessLogPublisherCfgDefn.LogFormat> |
FileBasedAccessLogPublisherCfgClient.getLogFormat()
Gets the "log-format" property.
|
ValueOrExpression<String> |
FileBasedHttpAccessLogPublisherCfgClient.getLogRecordTimeFormat()
Gets the "log-record-time-format" property.
|
ValueOrExpression<String> |
FileBasedAccessLogPublisherCfgClient.getLogRecordTimeFormat()
Gets the "log-record-time-format" property.
|
ValueOrExpression<Integer> |
GlobalCfgClient.getLookthroughLimit()
Gets the "lookthrough-limit" 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> |
JsonQueryEqualityMatchingRuleCfgClient.getMatchingRuleName()
Gets the "matching-rule-name" property.
|
ValueOrExpression<String> |
JsonOrderingMatchingRuleCfgClient.getMatchingRuleName()
Gets the "matching-rule-name" property.
|
ValueOrExpression<String> |
JsonEqualityMatchingRuleCfgClient.getMatchingRuleName()
Gets the "matching-rule-name" property.
|
ValueOrExpression<String> |
JsonQueryEqualityMatchingRuleCfgClient.getMatchingRuleOid()
Gets the "matching-rule-oid" property.
|
ValueOrExpression<String> |
JsonOrderingMatchingRuleCfgClient.getMatchingRuleOid()
Gets the "matching-rule-oid" property.
|
ValueOrExpression<String> |
JsonEqualityMatchingRuleCfgClient.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> |
LdapConnectionHandlerCfgClient.getMaxBlockedWriteTimeLimit()
Gets the "max-blocked-write-time-limit" property.
|
ValueOrExpression<Long> |
HttpConnectionHandlerCfgClient.getMaxBlockedWriteTimeLimit()
Gets the "max-blocked-write-time-limit" 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> |
LdapConnectionHandlerCfgClient.getMaxRequestSize()
Gets the "max-request-size" property.
|
ValueOrExpression<Long> |
HttpConnectionHandlerCfgClient.getMaxRequestSize()
Gets the "max-request-size" property.
|
ValueOrExpression<Integer> |
TraditionalWorkQueueCfgClient.getMaxWorkQueueCapacity()
Gets the "max-work-queue-capacity" 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> |
DictionaryPasswordValidatorCfgClient.getMinSubstringLength()
Gets the "min-substring-length" property.
|
ValueOrExpression<Integer> |
AttributeValuePasswordValidatorCfgClient.getMinSubstringLength()
Gets the "min-substring-length" property.
|
ValueOrExpression<Integer> |
UniqueCharactersPasswordValidatorCfgClient.getMinUniqueCharacters()
Gets the "min-unique-characters" property.
|
ValueOrExpression<Long> |
ReplicationServerCfgClient.getMonitoringPeriod()
Gets the "monitoring-period" 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> |
LdapConnectionHandlerCfgClient.getNumRequestHandlers()
Gets the "num-request-handlers" property.
|
ValueOrExpression<Integer> |
HttpConnectionHandlerCfgClient.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> |
PluginRootCfgClient.getPluginOrderIntermediateResponse()
Gets the "plugin-order-intermediate-response" property.
|
ValueOrExpression<String> |
PluginRootCfgClient.getPluginOrderLdifExport()
Gets the "plugin-order-ldif-export" 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<Integer> |
ReplicationServiceDiscoveryMechanismCfgClient.getPrimaryGroupId()
Gets the "primary-group-id" property.
|
ValueOrExpression<String> |
GssapiSaslMechanismHandlerCfgClient.getPrincipalName()
Gets the "principal-name" property.
|
ValueOrExpression<ProfilerPluginCfgDefn.ProfileAction> |
ProfilerPluginCfgClient.getProfileAction()
Gets the "profile-action" property.
|
ValueOrExpression<String> |
ProfilerPluginCfgClient.getProfileDirectory()
Gets the "profile-directory" property.
|
ValueOrExpression<Long> |
ProfilerPluginCfgClient.getProfileSampleInterval()
Gets the "profile-sample-interval" property.
|
ValueOrExpression<String> |
GlobalCfgClient.getProxiedAuthorizationIdentityMapper()
Gets the "proxied-authorization-identity-mapper" property.
|
ValueOrExpression<Dn> |
ProxyBackendCfgClient.getProxyUserDn()
Gets the "proxy-user-dn" property.
|
ValueOrExpression<String> |
ProxyBackendCfgClient.getProxyUserPassword()
Gets the "proxy-user-password" property.
|
ValueOrExpression<GssapiSaslMechanismHandlerCfgDefn.QualityOfProtection> |
GssapiSaslMechanismHandlerCfgClient.getQualityOfProtection()
Gets the "quality-of-protection" property.
|
ValueOrExpression<DigestMd5SaslMechanismHandlerCfgDefn.QualityOfProtection> |
DigestMd5SaslMechanismHandlerCfgClient.getQualityOfProtection()
Gets the "quality-of-protection" property.
|
ValueOrExpression<Integer> |
FileBasedHttpAccessLogPublisherCfgClient.getQueueSize()
Gets the "queue-size" property.
|
ValueOrExpression<Integer> |
FileBasedErrorLogPublisherCfgClient.getQueueSize()
Gets the "queue-size" property.
|
ValueOrExpression<Integer> |
FileBasedDebugLogPublisherCfgClient.getQueueSize()
Gets the "queue-size" property.
|
ValueOrExpression<Integer> |
FileBasedAuditLogPublisherCfgClient.getQueueSize()
Gets the "queue-size" property.
|
ValueOrExpression<Integer> |
FileBasedAccessLogPublisherCfgClient.getQueueSize()
Gets the "queue-size" property.
|
ValueOrExpression<String> |
GssapiSaslMechanismHandlerCfgClient.getRealm()
Gets the "realm" property.
|
ValueOrExpression<String> |
DigestMd5SaslMechanismHandlerCfgClient.getRealm()
Gets the "realm" 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> |
ReplicationServerCfgClient.getReplicationPurgeDelay()
Gets the "replication-purge-delay" property.
|
ValueOrExpression<Integer> |
ReplicationServerCfgClient.getReplicationServerId()
Gets the "replication-server-id" property.
|
ValueOrExpression<Long> |
GraphiteMonitorReporterPluginCfgClient.getReportingInterval()
Gets the "reporting-interval" property.
|
ValueOrExpression<String> |
PasswordPolicyCfgClient.getRequireChangeByTime()
Gets the "require-change-by-time" 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> |
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<VirtualAttributeCfgDefn.Scope> |
VirtualAttributeCfgClient.getScope()
Gets the "scope" property.
|
ValueOrExpression<BackendVlvIndexCfgDefn.Scope> |
BackendVlvIndexCfgClient.getScope()
Gets the "scope" 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> |
SmtpAlertHandlerCfgClient.getSenderAddress()
Gets the "sender-address" property.
|
ValueOrExpression<String> |
SmtpAccountStatusNotificationHandlerCfgClient.getSenderAddress()
Gets the "sender-address" property.
|
ValueOrExpression<String> |
GssapiSaslMechanismHandlerCfgClient.getServerFqdn()
Gets the "server-fqdn" property.
|
ValueOrExpression<String> |
DigestMd5SaslMechanismHandlerCfgClient.getServerFqdn()
Gets the "server-fqdn" property.
|
ValueOrExpression<Integer> |
ReplicationDomainCfgClient.getServerId()
Gets the "server-id" property.
|
ValueOrExpression<Integer> |
GlobalCfgClient.getServerId()
Gets the "server-id" property.
|
ValueOrExpression<String> |
ProxyBackendCfgClient.getServiceDiscoveryMechanism()
Gets the "service-discovery-mechanism" property.
|
ValueOrExpression<Long> |
CsvFileHttpAccessLogPublisherCfgClient.getSignatureTimeInterval()
Gets the "signature-time-interval" property.
|
ValueOrExpression<Long> |
CsvFileAccessLogPublisherCfgClient.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> |
BackendVlvIndexCfgClient.getSortOrder()
Gets the "sort-order" property.
|
ValueOrExpression<InetAddress> |
ReplicationServerCfgClient.getSourceAddress()
Gets the "source-address" property.
|
ValueOrExpression<InetAddress> |
ReplicationDomainCfgClient.getSourceAddress()
Gets the "source-address" property.
|
ValueOrExpression<InetAddress> |
LdapPassThroughAuthenticationPolicyCfgClient.getSourceAddress()
Gets the "source-address" property.
|
ValueOrExpression<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy> |
LdapConnectionHandlerCfgClient.getSslClientAuthPolicy()
Gets the "ssl-client-auth-policy" property.
|
ValueOrExpression<HttpConnectionHandlerCfgDefn.SslClientAuthPolicy> |
HttpConnectionHandlerCfgClient.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<Integer> |
DebugTargetCfgClient.getThrowableStackFrames()
Gets the "throwable-stack-frames" property.
|
ValueOrExpression<Long> |
FileBasedHttpAccessLogPublisherCfgClient.getTimeInterval()
Gets the "time-interval" property.
|
ValueOrExpression<Long> |
FileBasedErrorLogPublisherCfgClient.getTimeInterval()
Gets the "time-interval" property.
|
ValueOrExpression<Long> |
FileBasedDebugLogPublisherCfgClient.getTimeInterval()
Gets the "time-interval" property.
|
ValueOrExpression<Long> |
FileBasedAuditLogPublisherCfgClient.getTimeInterval()
Gets the "time-interval" property.
|
ValueOrExpression<Long> |
FileBasedAccessLogPublisherCfgClient.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> |
StaticServiceDiscoveryMechanismCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
ReplicationServiceDiscoveryMechanismCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
LdapPassThroughAuthenticationPolicyCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
LdapConnectionHandlerCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
HttpOauth2OpenamAuthorizationMechanismCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
HttpConnectionHandlerCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
AdministrationConnectorCfgClient.getTrustManagerProvider()
Gets the "trust-manager-provider" property.
|
ValueOrExpression<String> |
TrustStoreBackendCfgClient.getTrustStoreFile()
Gets the "trust-store-file" property.
|
ValueOrExpression<String> |
FileBasedTrustManagerProviderCfgClient.getTrustStoreFile()
Gets the "trust-store-file" property.
|
ValueOrExpression<String> |
TrustStoreBackendCfgClient.getTrustStorePin()
Gets the "trust-store-pin" property.
|
ValueOrExpression<String> |
Pkcs11TrustManagerProviderCfgClient.getTrustStorePin()
Gets the "trust-store-pin" property.
|
ValueOrExpression<String> |
LdapTrustManagerProviderCfgClient.getTrustStorePin()
Gets the "trust-store-pin" property.
|
ValueOrExpression<String> |
FileBasedTrustManagerProviderCfgClient.getTrustStorePin()
Gets the "trust-store-pin" property.
|
ValueOrExpression<String> |
TrustStoreBackendCfgClient.getTrustStoreType()
Gets the "trust-store-type" property.
|
ValueOrExpression<String> |
FileBasedTrustManagerProviderCfgClient.getTrustStoreType()
Gets the "trust-store-type" property.
|
ValueOrExpression<Long> |
BackendIndexCfgClient.getTtlAge()
Gets the "ttl-age" 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<LocalBackendCfgDefn.WritabilityMode> |
TrustStoreBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
TaskBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
SchemaBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
PluggableBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
NullBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
MonitorBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
MemoryBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
LocalBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
LdifBackendCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<GlobalCfgDefn.WritabilityMode> |
GlobalCfgClient.getWritabilityMode()
Gets the "writability-mode" property.
|
ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> |
BackupBackendCfgClient.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> |
LdapConnectionHandlerCfgClient.isAllowTcpReuseAddress()
Gets the "allow-tcp-reuse-address" property.
|
ValueOrExpression<Boolean> |
HttpConnectionHandlerCfgClient.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> |
FileBasedHttpAccessLogPublisherCfgClient.isAppend()
Gets the "append" property.
|
ValueOrExpression<Boolean> |
FileBasedErrorLogPublisherCfgClient.isAppend()
Gets the "append" property.
|
ValueOrExpression<Boolean> |
FileBasedDebugLogPublisherCfgClient.isAppend()
Gets the "append" property.
|
ValueOrExpression<Boolean> |
FileBasedAuditLogPublisherCfgClient.isAppend()
Gets the "append" property.
|
ValueOrExpression<Boolean> |
FileBasedAccessLogPublisherCfgClient.isAppend()
Gets the "append" property.
|
ValueOrExpression<Boolean> |
FileBasedHttpAccessLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
FileBasedErrorLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
FileBasedDebugLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
FileBasedAuditLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
FileBasedAccessLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
CsvFileHttpAccessLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
CsvFileAccessLogPublisherCfgClient.isAsynchronous()
Gets the "asynchronous" property.
|
ValueOrExpression<Boolean> |
GlobalAccessControlPolicyCfgClient.isAuthenticationRequired()
Gets the "authentication-required" property.
|
ValueOrExpression<Boolean> |
FileBasedHttpAccessLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
FileBasedErrorLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
FileBasedDebugLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
FileBasedAuditLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
FileBasedAccessLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
CsvFileHttpAccessLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
CsvFileAccessLogPublisherCfgClient.isAutoFlush()
Gets the "auto-flush" property.
|
ValueOrExpression<Boolean> |
GlobalCfgClient.isBindWithDnRequiresPassword()
Gets the "bind-with-dn-requires-password" property.
|
ValueOrExpression<Boolean> |
JsonQueryEqualityMatchingRuleCfgClient.isCaseSensitiveStrings()
Gets the "case-sensitive-strings" property.
|
ValueOrExpression<Boolean> |
JsonOrderingMatchingRuleCfgClient.isCaseSensitiveStrings()
Gets the "case-sensitive-strings" property.
|
ValueOrExpression<Boolean> |
JsonEqualityMatchingRuleCfgClient.isCaseSensitiveStrings()
Gets the "case-sensitive-strings" property.
|
ValueOrExpression<Boolean> |
UniqueCharactersPasswordValidatorCfgClient.isCaseSensitiveValidation()
Gets the "case-sensitive-validation" property.
|
ValueOrExpression<Boolean> |
RepeatedCharactersPasswordValidatorCfgClient.isCaseSensitiveValidation()
Gets the "case-sensitive-validation" property.
|
ValueOrExpression<Boolean> |
DictionaryPasswordValidatorCfgClient.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> |
DictionaryPasswordValidatorCfgClient.isCheckSubstrings()
Gets the "check-substrings" property.
|
ValueOrExpression<Boolean> |
AttributeValuePasswordValidatorCfgClient.isCheckSubstrings()
Gets the "check-substrings" property.
|
ValueOrExpression<Boolean> |
PluggableBackendCfgClient.isCompactEncoding()
Gets the "compact-encoding" property.
|
ValueOrExpression<Boolean> |
ReplicationServerCfgClient.isComputeChangeNumber()
Gets the "compute-change-number" property.
|
ValueOrExpression<Boolean> |
ReplicationServerCfgClient.isConfidentialityEnabled()
Gets the "confidentiality-enabled" property.
|
ValueOrExpression<Boolean> |
PluggableBackendCfgClient.isConfidentialityEnabled()
Gets the "confidentiality-enabled" property.
|
ValueOrExpression<Boolean> |
BackendIndexCfgClient.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> |
VirtualAttributeCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
TrustManagerProviderCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
SynchronizationProviderCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
SchemaProviderCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
SaslMechanismHandlerCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
ReplicationDomainCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
PluginCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
PasswordValidatorCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
PasswordStorageSchemeCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
PasswordGeneratorCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
LogPublisherCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
KeyManagerProviderCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
IdentityMapperCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
HttpEndpointCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
HttpAuthorizationMechanismCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
GroupImplementationCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
ExternalChangelogDomainCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
ExtendedOperationHandlerCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
EntryCacheCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
DebugTargetCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
ConnectionHandlerCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
CertificateMapperCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
BackendCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
AlertHandlerCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
AccountStatusNotificationHandlerCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
AccessControlHandlerCfgClient.isEnabled()
Gets the "enabled" property.
|
ValueOrExpression<Boolean> |
ProfilerPluginCfgClient.isEnableProfilingOnStartup()
Gets the "enable-profiling-on-startup" 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> |
JsonQueryEqualityMatchingRuleCfgClient.isIgnoreWhiteSpace()
Gets the "ignore-white-space" property.
|
ValueOrExpression<Boolean> |
JsonOrderingMatchingRuleCfgClient.isIgnoreWhiteSpace()
Gets the "ignore-white-space" property.
|
ValueOrExpression<Boolean> |
JsonEqualityMatchingRuleCfgClient.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> |
ProfilerPluginCfgClient.isInvokeForInternalOperations()
Gets the "invoke-for-internal-operations" property.
|
ValueOrExpression<Boolean> |
PluginCfgClient.isInvokeForInternalOperations()
Gets the "invoke-for-internal-operations" property.
|
ValueOrExpression<Boolean> |
PasswordPolicyImportPluginCfgClient.isInvokeForInternalOperations()
Gets the "invoke-for-internal-operations" property.
|
ValueOrExpression<Boolean> |
AttributeCleanupPluginCfgClient.isInvokeForInternalOperations()
Gets the "invoke-for-internal-operations" property.
|
ValueOrExpression<Boolean> |
LdifBackendCfgClient.isIsPrivateBackend()
Gets the "is-private-backend" property.
|
ValueOrExpression<Boolean> |
LdapConnectionHandlerCfgClient.isKeepStats()
Gets the "keep-stats" property.
|
ValueOrExpression<Boolean> |
HttpConnectionHandlerCfgClient.isKeepStats()
Gets the "keep-stats" property.
|
ValueOrExpression<Boolean> |
ReplicationDomainCfgClient.isLogChangenumber()
Gets the "log-changenumber" property.
|
ValueOrExpression<Boolean> |
JsonFileAccessLogPublisherCfgClient.isLogControlOids()
Gets the "log-control-oids" property.
|
ValueOrExpression<Boolean> |
FileBasedAccessLogPublisherCfgClient.isLogControlOids()
Gets the "log-control-oids" property.
|
ValueOrExpression<Boolean> |
ExternalAccessLogPublisherCfgClient.isLogControlOids()
Gets the "log-control-oids" property.
|
ValueOrExpression<Boolean> |
CsvFileAccessLogPublisherCfgClient.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> |
SnmpConnectionHandlerCfgClient.isRegisteredMbean()
Gets the "registered-mbean" property.
|
ValueOrExpression<Boolean> |
GlobalCfgClient.isRejectUnauthenticatedRequests()
Gets the "reject-unauthenticated-requests" 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> |
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> |
SchemaBackendCfgClient.isShowAllAttributes()
Gets the "show-all-attributes" property.
|
ValueOrExpression<Boolean> |
RootDseBackendCfgClient.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> |
ReplicationDomainCfgClient.isSolveConflicts()
Gets the "solve-conflicts" property.
|
ValueOrExpression<Boolean> |
CryptoManagerCfgClient.isSslEncryption()
Gets the "ssl-encryption" 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> |
CsvFileHttpAccessLogPublisherCfgClient.isTamperEvident()
Gets the "tamper-evident" property.
|
ValueOrExpression<Boolean> |
CsvFileAccessLogPublisherCfgClient.isTamperEvident()
Gets the "tamper-evident" property.
|
ValueOrExpression<Boolean> |
DictionaryPasswordValidatorCfgClient.isTestReversedPassword()
Gets the "test-reversed-password" property.
|
ValueOrExpression<Boolean> |
AttributeValuePasswordValidatorCfgClient.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> |
StaticServiceDiscoveryMechanismCfgClient.isUseSsl()
Gets the "use-ssl" property.
|
ValueOrExpression<Boolean> |
ReplicationServiceDiscoveryMechanismCfgClient.isUseSsl()
Gets the "use-ssl" property.
|
ValueOrExpression<Boolean> |
LdapPassThroughAuthenticationPolicyCfgClient.isUseSsl()
Gets the "use-ssl" property.
|
ValueOrExpression<Boolean> |
LdapConnectionHandlerCfgClient.isUseSsl()
Gets the "use-ssl" property.
|
ValueOrExpression<Boolean> |
JmxConnectionHandlerCfgClient.isUseSsl()
Gets the "use-ssl" property.
|
ValueOrExpression<Boolean> |
HttpConnectionHandlerCfgClient.isUseSsl()
Gets the "use-ssl" property.
|
ValueOrExpression<Boolean> |
StaticServiceDiscoveryMechanismCfgClient.isUseStartTls()
Gets the "use-start-tls" property.
|
ValueOrExpression<Boolean> |
ReplicationServiceDiscoveryMechanismCfgClient.isUseStartTls()
Gets the "use-start-tls" property.
|
ValueOrExpression<Boolean> |
LdapPassThroughAuthenticationPolicyCfgClient.isUseTcpKeepAlive()
Gets the "use-tcp-keep-alive" property.
|
ValueOrExpression<Boolean> |
LdapConnectionHandlerCfgClient.isUseTcpKeepAlive()
Gets the "use-tcp-keep-alive" property.
|
ValueOrExpression<Boolean> |
HttpConnectionHandlerCfgClient.isUseTcpKeepAlive()
Gets the "use-tcp-keep-alive" property.
|
ValueOrExpression<Boolean> |
LdapPassThroughAuthenticationPolicyCfgClient.isUseTcpNoDelay()
Gets the "use-tcp-no-delay" property.
|
ValueOrExpression<Boolean> |
LdapConnectionHandlerCfgClient.isUseTcpNoDelay()
Gets the "use-tcp-no-delay" property.
|
ValueOrExpression<Boolean> |
HttpConnectionHandlerCfgClient.isUseTcpNoDelay()
Gets the "use-tcp-no-delay" property.
|
Modifier and Type | Method and 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<String>> |
GlobalAccessControlPolicyCfgClient.getAllowedAttribute()
Gets the "allowed-attribute" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalAccessControlPolicyCfgClient.getAllowedAttributeException()
Gets the "allowed-attribute-exception" property.
|
SortedSet<ValueOrExpression<AddressMask>> |
ConnectionHandlerCfgClient.getAllowedClient()
Gets the "allowed-client" property.
|
SortedSet<ValueOrExpression<AddressMask>> |
AdministrationConnectorCfgClient.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<AttributeType>> |
SevenBitCleanPluginCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
SortedSet<ValueOrExpression<AttributeType>> |
ReferentialIntegrityPluginCfgClient.getAttributeType()
Gets the "attribute-type" property.
|
SortedSet<ValueOrExpression<String>> |
HttpEndpointCfgClient.getAuthorizationMechanism()
Gets the "authorization-mechanism" property.
|
SortedSet<ValueOrExpression<String>> |
BackupBackendCfgClient.getBackupDirectory()
Gets the "backup-directory" property.
|
SortedSet<ValueOrExpression<Dn>> |
VirtualAttributeCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
UniqueAttributePluginCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
SevenBitCleanPluginCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
ReferentialIntegrityPluginCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
ProxyBackendCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
PluggableBackendCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
NullBackendCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
MemoryBackendCfgClient.getBaseDn()
Gets the "base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
LdifBackendCfgClient.getBaseDn()
Gets the "base-dn" 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>> |
GlobalAccessControlPolicyCfgClient.getConnectionClientAddressEqualTo()
Gets the "connection-client-address-equal-to" property.
|
SortedSet<ValueOrExpression<AddressMask>> |
AccessLogFilteringCriteriaCfgClient.getConnectionClientAddressEqualTo()
Gets the "connection-client-address-equal-to" property.
|
SortedSet<ValueOrExpression<AddressMask>> |
GlobalAccessControlPolicyCfgClient.getConnectionClientAddressNotEqualTo()
Gets the "connection-client-address-not-equal-to" property.
|
SortedSet<ValueOrExpression<AddressMask>> |
AccessLogFilteringCriteriaCfgClient.getConnectionClientAddressNotEqualTo()
Gets the "connection-client-address-not-equal-to" property.
|
SortedSet<ValueOrExpression<Integer>> |
GlobalAccessControlPolicyCfgClient.getConnectionPortEqualTo()
Gets the "connection-port-equal-to" property.
|
SortedSet<ValueOrExpression<Integer>> |
AccessLogFilteringCriteriaCfgClient.getConnectionPortEqualTo()
Gets the "connection-port-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalAccessControlPolicyCfgClient.getConnectionProtocolEqualTo()
Gets the "connection-protocol-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
AccessLogFilteringCriteriaCfgClient.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>> |
ConnectionHandlerCfgClient.getDeniedClient()
Gets the "denied-client" property.
|
SortedSet<ValueOrExpression<AddressMask>> |
AdministrationConnectorCfgClient.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>> |
ExternalChangelogDomainCfgClient.getEclInclude()
Gets the "ecl-include" property.
|
SortedSet<ValueOrExpression<String>> |
ExternalChangelogDomainCfgClient.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>> |
PrometheusEndpointCfgClient.getExcludedMetricPattern()
Gets the "excluded-metric-pattern" property.
|
SortedSet<ValueOrExpression<String>> |
GraphiteMonitorReporterPluginCfgClient.getExcludedMetricPattern()
Gets the "excluded-metric-pattern" property.
|
SortedSet<ValueOrExpression<String>> |
CrestMetricsEndpointCfgClient.getExcludedMetricPattern()
Gets the "excluded-metric-pattern" property.
|
SortedSet<ValueOrExpression<String>> |
SoftReferenceEntryCacheCfgClient.getExcludeFilter()
Gets the "exclude-filter" property.
|
SortedSet<ValueOrExpression<String>> |
FifoEntryCacheCfgClient.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>> |
PrometheusEndpointCfgClient.getIncludedMetricPattern()
Gets the "included-metric-pattern" property.
|
SortedSet<ValueOrExpression<String>> |
GraphiteMonitorReporterPluginCfgClient.getIncludedMetricPattern()
Gets the "included-metric-pattern" property.
|
SortedSet<ValueOrExpression<String>> |
CrestMetricsEndpointCfgClient.getIncludedMetricPattern()
Gets the "included-metric-pattern" property.
|
SortedSet<ValueOrExpression<String>> |
SoftReferenceEntryCacheCfgClient.getIncludeFilter()
Gets the "include-filter" property.
|
SortedSet<ValueOrExpression<String>> |
FifoEntryCacheCfgClient.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<InetAddress>> |
SnmpConnectionHandlerCfgClient.getListenAddress()
Gets the "listen-address" property.
|
SortedSet<ValueOrExpression<InetAddress>> |
LdapConnectionHandlerCfgClient.getListenAddress()
Gets the "listen-address" property.
|
SortedSet<ValueOrExpression<InetAddress>> |
HttpConnectionHandlerCfgClient.getListenAddress()
Gets the "listen-address" property.
|
SortedSet<ValueOrExpression<InetAddress>> |
AdministrationConnectorCfgClient.getListenAddress()
Gets the "listen-address" 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>> |
RegularExpressionIdentityMapperCfgClient.getMatchAttribute()
Gets the "match-attribute" property.
|
SortedSet<ValueOrExpression<AttributeType>> |
ExactMatchIdentityMapperCfgClient.getMatchAttribute()
Gets the "match-attribute" property.
|
SortedSet<ValueOrExpression<AttributeType>> |
AttributeValuePasswordValidatorCfgClient.getMatchAttribute()
Gets the "match-attribute" property.
|
SortedSet<ValueOrExpression<Dn>> |
RegularExpressionIdentityMapperCfgClient.getMatchBaseDn()
Gets the "match-base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
ExactMatchIdentityMapperCfgClient.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>> |
UniqueAttributePluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
SevenBitCleanPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
SambaPasswordPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
ReferentialIntegrityPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
ProfilerPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
PluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
PasswordPolicyImportPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
LdapAttributeDescriptionListPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
LastModPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
GraphiteMonitorReporterPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
EntryUuidPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
ChangeNumberControlPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<PluginCfgDefn.PluginType>> |
AttributeCleanupPluginCfgClient.getPluginType()
Gets the "plugin-type" property.
|
SortedSet<ValueOrExpression<String>> |
PasswordPolicyCfgClient.getPreviousLastLoginTimeFormat()
Gets the "previous-last-login-time-format" property.
|
SortedSet<ValueOrExpression<String>> |
LdapPassThroughAuthenticationPolicyCfgClient.getPrimaryRemoteLdapServer()
Gets the "primary-remote-ldap-server" property.
|
SortedSet<ValueOrExpression<String>> |
StaticServiceDiscoveryMechanismCfgClient.getPrimaryServer()
Gets the "primary-server" property.
|
SortedSet<ValueOrExpression<SambaPasswordPluginCfgDefn.PwdSyncPolicy>> |
SambaPasswordPluginCfgClient.getPwdSyncPolicy()
Gets the "pwd-sync-policy" property.
|
SortedSet<ValueOrExpression<String>> |
SmtpAlertHandlerCfgClient.getRecipientAddress()
Gets the "recipient-address" property.
|
SortedSet<ValueOrExpression<String>> |
SmtpAccountStatusNotificationHandlerCfgClient.getRecipientAddress()
Gets the "recipient-address" property.
|
SortedSet<ValueOrExpression<String>> |
ReplicationDomainCfgClient.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>> |
ReplicationServiceDiscoveryMechanismCfgClient.getReplicationServer()
Gets the "replication-server" property.
|
SortedSet<ValueOrExpression<String>> |
ReplicationServerCfgClient.getReplicationServer()
Gets the "replication-server" property.
|
SortedSet<ValueOrExpression<String>> |
ReplicationDomainCfgClient.getReplicationServer()
Gets the "replication-server" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalAccessControlPolicyCfgClient.getRequestTargetDnEqualTo()
Gets the "request-target-dn-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
AccessLogFilteringCriteriaCfgClient.getRequestTargetDnEqualTo()
Gets the "request-target-dn-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalAccessControlPolicyCfgClient.getRequestTargetDnNotEqualTo()
Gets the "request-target-dn-not-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
AccessLogFilteringCriteriaCfgClient.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<String>> |
JsonFileHttpAccessLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
JsonFileAccessLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedHttpAccessLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedErrorLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedDebugLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedAuditLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedAccessLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
CsvFileHttpAccessLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
CsvFileAccessLogPublisherCfgClient.getRetentionPolicy()
Gets the "retention-policy" property.
|
SortedSet<ValueOrExpression<String>> |
JsonFileHttpAccessLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
JsonFileAccessLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedHttpAccessLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedErrorLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedDebugLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedAuditLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
FileBasedAccessLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
CsvFileHttpAccessLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<String>> |
CsvFileAccessLogPublisherCfgClient.getRotationPolicy()
Gets the "rotation-policy" property.
|
SortedSet<ValueOrExpression<Dn>> |
SchemaBackendCfgClient.getSchemaEntryDn()
Gets the "schema-entry-dn" property.
|
SortedSet<ValueOrExpression<String>> |
LdapPassThroughAuthenticationPolicyCfgClient.getSecondaryRemoteLdapServer()
Gets the "secondary-remote-ldap-server" property.
|
SortedSet<ValueOrExpression<String>> |
StaticServiceDiscoveryMechanismCfgClient.getSecondaryServer()
Gets the "secondary-server" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalCfgClient.getSmtpServer()
Gets the "smtp-server" property.
|
SortedSet<ValueOrExpression<String>> |
StaticServiceDiscoveryMechanismCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
ReplicationServiceDiscoveryMechanismCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
LdapConnectionHandlerCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
JmxConnectionHandlerCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
HttpConnectionHandlerCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
CryptoManagerCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
AdministrationConnectorCfgClient.getSslCertNickname()
Gets the "ssl-cert-nickname" property.
|
SortedSet<ValueOrExpression<String>> |
LdapPassThroughAuthenticationPolicyCfgClient.getSslCipherSuite()
Gets the "ssl-cipher-suite" property.
|
SortedSet<ValueOrExpression<String>> |
LdapConnectionHandlerCfgClient.getSslCipherSuite()
Gets the "ssl-cipher-suite" property.
|
SortedSet<ValueOrExpression<String>> |
HttpConnectionHandlerCfgClient.getSslCipherSuite()
Gets the "ssl-cipher-suite" property.
|
SortedSet<ValueOrExpression<String>> |
CryptoManagerCfgClient.getSslCipherSuite()
Gets the "ssl-cipher-suite" property.
|
SortedSet<ValueOrExpression<String>> |
AdministrationConnectorCfgClient.getSslCipherSuite()
Gets the "ssl-cipher-suite" property.
|
SortedSet<ValueOrExpression<String>> |
LdapPassThroughAuthenticationPolicyCfgClient.getSslProtocol()
Gets the "ssl-protocol" property.
|
SortedSet<ValueOrExpression<String>> |
LdapConnectionHandlerCfgClient.getSslProtocol()
Gets the "ssl-protocol" property.
|
SortedSet<ValueOrExpression<String>> |
HttpConnectionHandlerCfgClient.getSslProtocol()
Gets the "ssl-protocol" property.
|
SortedSet<ValueOrExpression<String>> |
CryptoManagerCfgClient.getSslProtocol()
Gets the "ssl-protocol" property.
|
SortedSet<ValueOrExpression<String>> |
AdministrationConnectorCfgClient.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<AttributeType>> |
UniqueAttributePluginCfgClient.getType()
Gets the "type" property.
|
SortedSet<ValueOrExpression<Dn>> |
SubjectDnToUserAttributeCertificateMapperCfgClient.getUserBaseDn()
Gets the "user-base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
SubjectAttributeToUserAttributeCertificateMapperCfgClient.getUserBaseDn()
Gets the "user-base-dn" property.
|
SortedSet<ValueOrExpression<Dn>> |
FingerprintCertificateMapperCfgClient.getUserBaseDn()
Gets the "user-base-dn" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalAccessControlPolicyCfgClient.getUserDnEqualTo()
Gets the "user-dn-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
AccessLogFilteringCriteriaCfgClient.getUserDnEqualTo()
Gets the "user-dn-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
GlobalAccessControlPolicyCfgClient.getUserDnNotEqualTo()
Gets the "user-dn-not-equal-to" property.
|
SortedSet<ValueOrExpression<String>> |
AccessLogFilteringCriteriaCfgClient.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.
|
Modifier and Type | Method and Description |
---|---|
void |
LdapConnectionHandlerCfgClient.setAcceptBacklog(ValueOrExpression<Integer> value)
Sets the "accept-backlog" property.
|
void |
HttpConnectionHandlerCfgClient.setAcceptBacklog(ValueOrExpression<Integer> value)
Sets the "accept-backlog" property.
|
void |
HttpOauth2AuthorizationMechanismCfgClient.setAccessTokenCacheEnabled(ValueOrExpression<Boolean> value)
Sets the "access-token-cache-enabled" property.
|
void |
HttpOauth2AuthorizationMechanismCfgClient.setAccessTokenCacheExpiration(ValueOrExpression<Long> value)
Sets the "access-token-cache-expiration" property.
|
void |
HttpOauth2FileAuthorizationMechanismCfgClient.setAccessTokenDirectory(ValueOrExpression<String> value)
Sets the "access-token-directory" property.
|
void |
GlobalCfgClient.setAddMissingRdnAttributes(ValueOrExpression<Boolean> value)
Sets the "add-missing-rdn-attributes" property.
|
void |
GlobalCfgClient.setAllowAttributeNameExceptions(ValueOrExpression<Boolean> value)
Sets the "allow-attribute-name-exceptions" property.
|
void |
CoreSchemaCfgClient.setAllowAttributeTypesWithNoSupOrSyntax(ValueOrExpression<Boolean> value)
Sets the "allow-attribute-types-with-no-sup-or-syntax" property.
|
void |
PasswordPolicyCfgClient.setAllowExpiredPasswordChanges(ValueOrExpression<Boolean> value)
Sets the "allow-expired-password-changes" property.
|
void |
LdapConnectionHandlerCfgClient.setAllowLdapV2(ValueOrExpression<Boolean> value)
Sets the "allow-ldap-v2" property.
|
void |
PasswordPolicyCfgClient.setAllowMultiplePasswordValues(ValueOrExpression<Boolean> value)
Sets the "allow-multiple-password-values" property.
|
void |
PasswordPolicyCfgClient.setAllowPreEncodedPasswords(ValueOrExpression<Boolean> value)
Sets the "allow-pre-encoded-passwords" property.
|
void |
MemberVirtualAttributeCfgClient.setAllowRetrievingMembership(ValueOrExpression<Boolean> value)
Sets the "allow-retrieving-membership" property.
|
void |
LdapConnectionHandlerCfgClient.setAllowStartTls(ValueOrExpression<Boolean> value)
Sets the "allow-start-tls" property.
|
void |
LdapConnectionHandlerCfgClient.setAllowTcpReuseAddress(ValueOrExpression<Boolean> value)
Sets the "allow-tcp-reuse-address" property.
|
void |
HttpConnectionHandlerCfgClient.setAllowTcpReuseAddress(ValueOrExpression<Boolean> value)
Sets the "allow-tcp-reuse-address" property.
|
void |
CharacterSetPasswordValidatorCfgClient.setAllowUnclassifiedCharacters(ValueOrExpression<Boolean> value)
Sets the "allow-unclassified-characters" property.
|
void |
PasswordPolicyCfgClient.setAllowUserPasswordChanges(ValueOrExpression<Boolean> value)
Sets the "allow-user-password-changes" property.
|
void |
CoreSchemaCfgClient.setAllowZeroLengthValuesDirectoryString(ValueOrExpression<Boolean> value)
Sets the "allow-zero-length-values-directory-string" property.
|
void |
HttpBasicAuthorizationMechanismCfgClient.setAltAuthenticationEnabled(ValueOrExpression<Boolean> value)
Sets the "alt-authentication-enabled" property.
|
void |
HttpBasicAuthorizationMechanismCfgClient.setAltPasswordHeader(ValueOrExpression<String> value)
Sets the "alt-password-header" property.
|
void |
HttpBasicAuthorizationMechanismCfgClient.setAltUsernameHeader(ValueOrExpression<String> value)
Sets the "alt-username-header" property.
|
void |
HttpConnectionHandlerCfgClient.setApiDescriptorEnabled(ValueOrExpression<Boolean> value)
Sets the "api-descriptor-enabled" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setAppend(ValueOrExpression<Boolean> value)
Sets the "append" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setAppend(ValueOrExpression<Boolean> value)
Sets the "append" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setAppend(ValueOrExpression<Boolean> value)
Sets the "append" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setAppend(ValueOrExpression<Boolean> value)
Sets the "append" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setAppend(ValueOrExpression<Boolean> value)
Sets the "append" property.
|
void |
ReplicationDomainCfgClient.setAssuredSdLevel(ValueOrExpression<Integer> value)
Sets the "assured-sd-level" property.
|
void |
ReplicationServerCfgClient.setAssuredTimeout(ValueOrExpression<Long> value)
Sets the "assured-timeout" property.
|
void |
ReplicationDomainCfgClient.setAssuredTimeout(ValueOrExpression<Long> value)
Sets the "assured-timeout" property.
|
void |
ReplicationDomainCfgClient.setAssuredType(ValueOrExpression<ReplicationDomainCfgDefn.AssuredType> value)
Sets the "assured-type" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setAsynchronous(ValueOrExpression<Boolean> value)
Sets the "asynchronous" property.
|
void |
BackendIndexCfgClient.setAttribute(ValueOrExpression<AttributeType> value)
Sets the "attribute" property.
|
void |
VirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
SubschemaSubentryVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
StructuralObjectClassVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
PasswordPolicySubentryVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
PasswordExpirationTimeVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
NumSubordinatesVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
IsMemberOfVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
HasSubordinatesVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
GoverningStructureRuleVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
EntryUuidVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
EntryDnVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
EntityTagVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
CollectiveAttributeSubentriesVirtualAttributeCfgClient.setAttributeType(ValueOrExpression<AttributeType> value)
Sets the "attribute-type" property.
|
void |
GlobalAccessControlPolicyCfgClient.setAuthenticationRequired(ValueOrExpression<Boolean> value)
Sets the "authentication-required" property.
|
void |
HttpOauth2AuthorizationMechanismCfgClient.setAuthzidJsonPointer(ValueOrExpression<String> value)
Sets the "authzid-json-pointer" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setAutoFlush(ValueOrExpression<Boolean> value)
Sets the "auto-flush" property.
|
void |
BackendCfgClient.setBackendId(ValueOrExpression<String> value)
Sets the "backend-id" property.
|
void |
ReplicationDomainCfgClient.setBaseDn(ValueOrExpression<Dn> value)
Sets the "base-dn" property.
|
void |
LdapTrustManagerProviderCfgClient.setBaseDn(ValueOrExpression<Dn> value)
Sets the "base-dn" property.
|
void |
LdapKeyManagerProviderCfgClient.setBaseDn(ValueOrExpression<Dn> value)
Sets the "base-dn" property.
|
void |
BackendVlvIndexCfgClient.setBaseDn(ValueOrExpression<Dn> value)
Sets the "base-dn" property.
|
void |
HttpOauth2CtsAuthorizationMechanismCfgClient.setBaseDn(ValueOrExpression<String> value)
Sets the "base-dn" property.
|
void |
HttpEndpointCfgClient.setBasePath(ValueOrExpression<String> value)
Sets the "base-path" property.
|
void |
BcryptPasswordStorageSchemeCfgClient.setBcryptCost(ValueOrExpression<Integer> value)
Sets the "bcrypt-cost" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setBindDn(ValueOrExpression<Dn> value)
Sets the "bind-dn" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setBindPassword(ValueOrExpression<String> value)
Sets the "bind-password" property.
|
void |
GlobalCfgClient.setBindWithDnRequiresPassword(ValueOrExpression<Boolean> value)
Sets the "bind-with-dn-requires-password" property.
|
void |
LdapConnectionHandlerCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
HttpConnectionHandlerCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setBufferSize(ValueOrExpression<Long> value)
Sets the "buffer-size" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setCachedPasswordStorageScheme(ValueOrExpression<String> value)
Sets the "cached-password-storage-scheme" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setCachedPasswordTtl(ValueOrExpression<Long> value)
Sets the "cached-password-ttl" property.
|
void |
EntryCacheCfgClient.setCacheLevel(ValueOrExpression<Integer> value)
Sets the "cache-level" property.
|
void |
JsonQueryEqualityMatchingRuleCfgClient.setCaseSensitiveStrings(ValueOrExpression<Boolean> value)
Sets the "case-sensitive-strings" property.
|
void |
JsonOrderingMatchingRuleCfgClient.setCaseSensitiveStrings(ValueOrExpression<Boolean> value)
Sets the "case-sensitive-strings" property.
|
void |
JsonEqualityMatchingRuleCfgClient.setCaseSensitiveStrings(ValueOrExpression<Boolean> value)
Sets the "case-sensitive-strings" property.
|
void |
UniqueCharactersPasswordValidatorCfgClient.setCaseSensitiveValidation(ValueOrExpression<Boolean> value)
Sets the "case-sensitive-validation" property.
|
void |
RepeatedCharactersPasswordValidatorCfgClient.setCaseSensitiveValidation(ValueOrExpression<Boolean> value)
Sets the "case-sensitive-validation" property.
|
void |
DictionaryPasswordValidatorCfgClient.setCaseSensitiveValidation(ValueOrExpression<Boolean> value)
Sets the "case-sensitive-validation" property.
|
void |
ExternalSaslMechanismHandlerCfgClient.setCertificateAttribute(ValueOrExpression<AttributeType> value)
Sets the "certificate-attribute" property.
|
void |
ExternalSaslMechanismHandlerCfgClient.setCertificateMapper(ValueOrExpression<String> value)
Sets the "certificate-mapper" property.
|
void |
ExternalSaslMechanismHandlerCfgClient.setCertificateValidationPolicy(ValueOrExpression<ExternalSaslMechanismHandlerCfgDefn.CertificateValidationPolicy> value)
Sets the "certificate-validation-policy" property.
|
void |
ReplicationDomainCfgClient.setChangetimeHeartbeatInterval(ValueOrExpression<Long> value)
Sets the "changetime-heartbeat-interval" property.
|
void |
ReferentialIntegrityPluginCfgClient.setCheckReferences(ValueOrExpression<Boolean> value)
Sets the "check-references" property.
|
void |
ReferentialIntegrityPluginCfgClient.setCheckReferencesScopeCriteria(ValueOrExpression<ReferentialIntegrityPluginCfgDefn.CheckReferencesScopeCriteria> value)
Sets the "check-references-scope-criteria" property.
|
void |
GlobalCfgClient.setCheckSchema(ValueOrExpression<Boolean> value)
Sets the "check-schema" property.
|
void |
DictionaryPasswordValidatorCfgClient.setCheckSubstrings(ValueOrExpression<Boolean> value)
Sets the "check-substrings" property.
|
void |
AttributeValuePasswordValidatorCfgClient.setCheckSubstrings(ValueOrExpression<Boolean> value)
Sets the "check-substrings" property.
|
void |
EntityTagVirtualAttributeCfgClient.setChecksumAlgorithm(ValueOrExpression<EntityTagVirtualAttributeCfgDefn.ChecksumAlgorithm> value)
Sets the "checksum-algorithm" property.
|
void |
ReplicationServerCfgClient.setCipherKeyLength(ValueOrExpression<Integer> value)
Sets the "cipher-key-length" property.
|
void |
PluggableBackendCfgClient.setCipherKeyLength(ValueOrExpression<Integer> value)
Sets the "cipher-key-length" property.
|
void |
CryptoManagerCfgClient.setCipherKeyLength(ValueOrExpression<Integer> value)
Sets the "cipher-key-length" property.
|
void |
ReplicationServerCfgClient.setCipherTransformation(ValueOrExpression<String> value)
Sets the "cipher-transformation" property.
|
void |
PluggableBackendCfgClient.setCipherTransformation(ValueOrExpression<String> value)
Sets the "cipher-transformation" property.
|
void |
CryptoManagerCfgClient.setCipherTransformation(ValueOrExpression<String> value)
Sets the "cipher-transformation" property.
|
void |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.setClientId(ValueOrExpression<String> value)
Sets the "client-id" property.
|
void |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.setClientSecret(ValueOrExpression<String> value)
Sets the "client-secret" property.
|
void |
SnmpConnectionHandlerCfgClient.setCommunity(ValueOrExpression<String> value)
Sets the "community" property.
|
void |
PluggableBackendCfgClient.setCompactEncoding(ValueOrExpression<Boolean> value)
Sets the "compact-encoding" property.
|
void |
ReplicationServerCfgClient.setComputeChangeNumber(ValueOrExpression<Boolean> value)
Sets the "compute-change-number" property.
|
void |
ReplicationServerCfgClient.setConfidentialityEnabled(ValueOrExpression<Boolean> value)
Sets the "confidentiality-enabled" property.
|
void |
PluggableBackendCfgClient.setConfidentialityEnabled(ValueOrExpression<Boolean> value)
Sets the "confidentiality-enabled" property.
|
void |
BackendIndexCfgClient.setConfidentialityEnabled(ValueOrExpression<Boolean> value)
Sets the "confidentiality-enabled" property.
|
void |
Rest2ldapEndpointCfgClient.setConfigDirectory(ValueOrExpression<String> value)
Sets the "config-directory" property.
|
void |
ExternalHttpAccessLogPublisherCfgClient.setConfigFile(ValueOrExpression<String> value)
Sets the "config-file" property.
|
void |
ExternalAccessLogPublisherCfgClient.setConfigFile(ValueOrExpression<String> value)
Sets the "config-file" property.
|
void |
VirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
SubschemaSubentryVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
StructuralObjectClassVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
PasswordPolicySubentryVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
PasswordExpirationTimeVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
NumSubordinatesVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
MemberVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
IsMemberOfVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
HasSubordinatesVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
GoverningStructureRuleVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
EntryUuidVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
EntryDnVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
EntityTagVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
CollectiveAttributeSubentriesVirtualAttributeCfgClient.setConflictBehavior(ValueOrExpression<VirtualAttributeCfgDefn.ConflictBehavior> value)
Sets the "conflict-behavior" property.
|
void |
ReplicationDomainCfgClient.setConflictsHistoricalPurgeDelay(ValueOrExpression<Long> value)
Sets the "conflicts-historical-purge-delay" property.
|
void |
GlobalAccessControlPolicyCfgClient.setConnectionMinimumSsf(ValueOrExpression<Integer> value)
Sets the "connection-minimum-ssf" property.
|
void |
ProxyBackendCfgClient.setConnectionPoolIdleTimeout(ValueOrExpression<Long> value)
Sets the "connection-pool-idle-timeout" property.
|
void |
ProxyBackendCfgClient.setConnectionPoolMaxSize(ValueOrExpression<Integer> value)
Sets the "connection-pool-max-size" property.
|
void |
ProxyBackendCfgClient.setConnectionPoolMinSize(ValueOrExpression<Integer> value)
Sets the "connection-pool-min-size" property.
|
void |
ReplicationSynchronizationProviderCfgClient.setConnectionTimeout(ValueOrExpression<Long> value)
Sets the "connection-timeout" property.
|
void |
ProxyBackendCfgClient.setConnectionTimeout(ValueOrExpression<Long> value)
Sets the "connection-timeout" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setConnectionTimeout(ValueOrExpression<Long> value)
Sets the "connection-timeout" property.
|
void |
CryptPasswordStorageSchemeCfgClient.setCryptPasswordStorageEncryptionAlgorithm(ValueOrExpression<CryptPasswordStorageSchemeCfgDefn.CryptPasswordStorageEncryptionAlgorithm> value)
Sets the "crypt-password-storage-encryption-algorithm" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setCsvDelimiterChar(ValueOrExpression<String> value)
Sets the "csv-delimiter-char" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setCsvDelimiterChar(ValueOrExpression<String> value)
Sets the "csv-delimiter-char" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setCsvEolSymbols(ValueOrExpression<String> value)
Sets the "csv-eol-symbols" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setCsvEolSymbols(ValueOrExpression<String> value)
Sets the "csv-eol-symbols" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setCsvQuoteChar(ValueOrExpression<String> value)
Sets the "csv-quote-char" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setCsvQuoteChar(ValueOrExpression<String> value)
Sets the "csv-quote-char" property.
|
void |
GlobalCfgClient.setCursorEntryLimit(ValueOrExpression<Integer> value)
Sets the "cursor-entry-limit" property.
|
void |
JeBackendCfgClient.setDbCachePercent(ValueOrExpression<Integer> value)
Sets the "db-cache-percent" property.
|
void |
JeBackendCfgClient.setDbCacheSize(ValueOrExpression<Long> value)
Sets the "db-cache-size" property.
|
void |
JeBackendCfgClient.setDbCheckpointerBytesInterval(ValueOrExpression<Long> value)
Sets the "db-checkpointer-bytes-interval" property.
|
void |
JeBackendCfgClient.setDbCheckpointerWakeupInterval(ValueOrExpression<Long> value)
Sets the "db-checkpointer-wakeup-interval" property.
|
void |
JeBackendCfgClient.setDbCleanerMinUtilization(ValueOrExpression<Integer> value)
Sets the "db-cleaner-min-utilization" property.
|
void |
JeBackendCfgClient.setDbDirectory(ValueOrExpression<String> value)
Sets the "db-directory" property.
|
void |
JeBackendCfgClient.setDbDirectoryPermissions(ValueOrExpression<String> value)
Sets the "db-directory-permissions" property.
|
void |
JeBackendCfgClient.setDbDurability(ValueOrExpression<JeBackendCfgDefn.DbDurability> value)
Sets the "db-durability" property.
|
void |
JeBackendCfgClient.setDbEvictorCoreThreads(ValueOrExpression<Integer> value)
Sets the "db-evictor-core-threads" property.
|
void |
JeBackendCfgClient.setDbEvictorKeepAlive(ValueOrExpression<Long> value)
Sets the "db-evictor-keep-alive" property.
|
void |
JeBackendCfgClient.setDbEvictorMaxThreads(ValueOrExpression<Integer> value)
Sets the "db-evictor-max-threads" property.
|
void |
JeBackendCfgClient.setDbLogFilecacheSize(ValueOrExpression<Integer> value)
Sets the "db-log-filecache-size" property.
|
void |
JeBackendCfgClient.setDbLogFileMax(ValueOrExpression<Long> value)
Sets the "db-log-file-max" property.
|
void |
JeBackendCfgClient.setDbLoggingFileHandlerOn(ValueOrExpression<Boolean> value)
Sets the "db-logging-file-handler-on" property.
|
void |
JeBackendCfgClient.setDbLoggingLevel(ValueOrExpression<String> value)
Sets the "db-logging-level" property.
|
void |
JeBackendCfgClient.setDbLogVerifierSchedule(ValueOrExpression<String> value)
Sets the "db-log-verifier-schedule" property.
|
void |
JeBackendCfgClient.setDbNumCleanerThreads(ValueOrExpression<Integer> value)
Sets the "db-num-cleaner-threads" property.
|
void |
JeBackendCfgClient.setDbNumLockTables(ValueOrExpression<Integer> value)
Sets the "db-num-lock-tables" property.
|
void |
JeBackendCfgClient.setDbRunCleaner(ValueOrExpression<Boolean> value)
Sets the "db-run-cleaner" property.
|
void |
JeBackendCfgClient.setDbRunLogVerifier(ValueOrExpression<Boolean> value)
Sets the "db-run-log-verifier" property.
|
void |
DebugTargetCfgClient.setDebugExceptionsOnly(ValueOrExpression<Boolean> value)
Sets the "debug-exceptions-only" property.
|
void |
DebugTargetCfgClient.setDebugScope(ValueOrExpression<String> value)
Sets the "debug-scope" property.
|
void |
DebugLogPublisherCfgClient.setDefaultDebugExceptionsOnly(ValueOrExpression<Boolean> value)
Sets the "default-debug-exceptions-only" property.
|
void |
DebugLogPublisherCfgClient.setDefaultIncludeThrowableCause(ValueOrExpression<Boolean> value)
Sets the "default-include-throwable-cause" property.
|
void |
DebugLogPublisherCfgClient.setDefaultOmitMethodEntryArguments(ValueOrExpression<Boolean> value)
Sets the "default-omit-method-entry-arguments" property.
|
void |
DebugLogPublisherCfgClient.setDefaultOmitMethodReturnValue(ValueOrExpression<Boolean> value)
Sets the "default-omit-method-return-value" property.
|
void |
GlobalCfgClient.setDefaultPasswordPolicy(ValueOrExpression<String> value)
Sets the "default-password-policy" property.
|
void |
DebugLogPublisherCfgClient.setDefaultThrowableStackFrames(ValueOrExpression<Integer> value)
Sets the "default-throwable-stack-frames" property.
|
void |
ReplicationServerCfgClient.setDegradedStatusThreshold(ValueOrExpression<Integer> value)
Sets the "degraded-status-threshold" property.
|
void |
DictionaryPasswordValidatorCfgClient.setDictionaryFile(ValueOrExpression<String> value)
Sets the "dictionary-file" property.
|
void |
CryptoManagerCfgClient.setDigestAlgorithm(ValueOrExpression<String> value)
Sets the "digest-algorithm" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setDiscoveryInterval(ValueOrExpression<Long> value)
Sets the "discovery-interval" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setDiscoveryInterval(ValueOrExpression<Long> value)
Sets the "discovery-interval" property.
|
void |
ProxyBackendCfgClient.setDiscoveryInterval(ValueOrExpression<Long> value)
Sets the "discovery-interval" property.
|
void |
ReplicationServerCfgClient.setDiskFullThreshold(ValueOrExpression<Long> value)
Sets the "disk-full-threshold" property.
|
void |
JeBackendCfgClient.setDiskFullThreshold(ValueOrExpression<Long> value)
Sets the "disk-full-threshold" property.
|
void |
ReplicationServerCfgClient.setDiskLowThreshold(ValueOrExpression<Long> value)
Sets the "disk-low-threshold" property.
|
void |
JeBackendCfgClient.setDiskLowThreshold(ValueOrExpression<Long> value)
Sets the "disk-low-threshold" property.
|
void |
SizeLimitLogRetentionPolicyCfgClient.setDiskSpaceUsed(ValueOrExpression<Long> value)
Sets the "disk-space-used" property.
|
void |
VirtualAttributeCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
TrustManagerProviderCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
SynchronizationProviderCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
SchemaProviderCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
SaslMechanismHandlerCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
ReplicationDomainCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
PluginCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
PasswordValidatorCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
PasswordStorageSchemeCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
PasswordGeneratorCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
LogPublisherCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
KeyManagerProviderCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
IdentityMapperCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
HttpEndpointCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
HttpAuthorizationMechanismCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
GroupImplementationCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
ExternalChangelogDomainCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
ExtendedOperationHandlerCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
EntryCacheCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
DebugTargetCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
ConnectionHandlerCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
CertificateMapperCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
BackendCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
AlertHandlerCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
AccountStatusNotificationHandlerCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
AccessControlHandlerCfgClient.setEnabled(ValueOrExpression<Boolean> value)
Sets the "enabled" property.
|
void |
ProfilerPluginCfgClient.setEnableProfilingOnStartup(ValueOrExpression<Boolean> value)
Sets the "enable-profiling-on-startup" property.
|
void |
PluggableBackendCfgClient.setEntriesCompressed(ValueOrExpression<Boolean> value)
Sets the "entries-compressed" property.
|
void |
GlobalCfgClient.setEtimeResolution(ValueOrExpression<GlobalCfgDefn.EtimeResolution> value)
Sets the "etime-resolution" property.
|
void |
PasswordPolicyCfgClient.setExpirePasswordsWithoutWarning(ValueOrExpression<Boolean> value)
Sets the "expire-passwords-without-warning" property.
|
void |
SizeLimitLogRotationPolicyCfgClient.setFileSizeLimit(ValueOrExpression<Long> value)
Sets the "file-size-limit" property.
|
void |
BackendVlvIndexCfgClient.setFilter(ValueOrExpression<String> value)
Sets the "filter" property.
|
void |
AccessLogPublisherCfgClient.setFilteringPolicy(ValueOrExpression<AccessLogPublisherCfgDefn.FilteringPolicy> value)
Sets the "filtering-policy" property.
|
void |
FingerprintCertificateMapperCfgClient.setFingerprintAlgorithm(ValueOrExpression<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm> value)
Sets the "fingerprint-algorithm" property.
|
void |
FingerprintCertificateMapperCfgClient.setFingerprintAttribute(ValueOrExpression<AttributeType> value)
Sets the "fingerprint-attribute" property.
|
void |
PasswordPolicyCfgClient.setForceChangeOnAdd(ValueOrExpression<Boolean> value)
Sets the "force-change-on-add" property.
|
void |
PasswordPolicyCfgClient.setForceChangeOnReset(ValueOrExpression<Boolean> value)
Sets the "force-change-on-reset" property.
|
void |
FreeDiskSpaceLogRetentionPolicyCfgClient.setFreeDiskSpace(ValueOrExpression<Long> value)
Sets the "free-disk-space" property.
|
void |
PasswordPolicyCfgClient.setGraceLoginCount(ValueOrExpression<Integer> value)
Sets the "grace-login-count" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setGraphiteServer(ValueOrExpression<String> value)
Sets the "graphite-server" property.
|
void |
ReplicationServerCfgClient.setGroupId(ValueOrExpression<Integer> value)
Sets the "group-id" property.
|
void |
ReplicationDomainCfgClient.setGroupId(ValueOrExpression<Integer> value)
Sets the "group-id" property.
|
void |
ReplicationDomainCfgClient.setHeartbeatInterval(ValueOrExpression<Long> value)
Sets the "heartbeat-interval" property.
|
void |
ProxyBackendCfgClient.setHeartbeatInterval(ValueOrExpression<Long> value)
Sets the "heartbeat-interval" property.
|
void |
ProxyBackendCfgClient.setHeartbeatSearchRequestBaseDn(ValueOrExpression<Dn> value)
Sets the "heartbeat-search-request-base-dn" property.
|
void |
PlainSaslMechanismHandlerCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
PasswordModifyExtendedOperationHandlerCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
HttpOauth2AuthorizationMechanismCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
HttpBasicAuthorizationMechanismCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
DigestMd5SaslMechanismHandlerCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
CramMd5SaslMechanismHandlerCfgClient.setIdentityMapper(ValueOrExpression<String> value)
Sets the "identity-mapper" property.
|
void |
PasswordPolicyCfgClient.setIdleLockoutInterval(ValueOrExpression<Long> value)
Sets the "idle-lockout-interval" property.
|
void |
GlobalCfgClient.setIdleTimeLimit(ValueOrExpression<Long> value)
Sets the "idle-time-limit" property.
|
void |
JsonQueryEqualityMatchingRuleCfgClient.setIgnoreWhiteSpace(ValueOrExpression<Boolean> value)
Sets the "ignore-white-space" property.
|
void |
JsonOrderingMatchingRuleCfgClient.setIgnoreWhiteSpace(ValueOrExpression<Boolean> value)
Sets the "ignore-white-space" property.
|
void |
JsonEqualityMatchingRuleCfgClient.setIgnoreWhiteSpace(ValueOrExpression<Boolean> value)
Sets the "ignore-white-space" property.
|
void |
PluggableBackendCfgClient.setImportOffheapMemorySize(ValueOrExpression<Long> value)
Sets the "import-offheap-memory-size" property.
|
void |
DebugTargetCfgClient.setIncludeThrowableCause(ValueOrExpression<Boolean> value)
Sets the "include-throwable-cause" property.
|
void |
PluggableBackendCfgClient.setIndexEntryLimit(ValueOrExpression<Integer> value)
Sets the "index-entry-limit" property.
|
void |
BackendIndexCfgClient.setIndexEntryLimit(ValueOrExpression<Integer> value)
Sets the "index-entry-limit" property.
|
void |
PluggableBackendCfgClient.setIndexFilterAnalyzerEnabled(ValueOrExpression<Boolean> value)
Sets the "index-filter-analyzer-enabled" property.
|
void |
PluggableBackendCfgClient.setIndexFilterAnalyzerMaxFilters(ValueOrExpression<Integer> value)
Sets the "index-filter-analyzer-max-filters" property.
|
void |
ReplicationDomainCfgClient.setInitializationWindowSize(ValueOrExpression<Integer> value)
Sets the "initialization-window-size" property.
|
void |
GlobalCfgClient.setInvalidAttributeSyntaxBehavior(ValueOrExpression<GlobalCfgDefn.InvalidAttributeSyntaxBehavior> value)
Sets the "invalid-attribute-syntax-behavior" property.
|
void |
ProfilerPluginCfgClient.setInvokeForInternalOperations(ValueOrExpression<Boolean> value)
Sets the "invoke-for-internal-operations" property.
|
void |
PluginCfgClient.setInvokeForInternalOperations(ValueOrExpression<Boolean> value)
Sets the "invoke-for-internal-operations" property.
|
void |
PasswordPolicyImportPluginCfgClient.setInvokeForInternalOperations(ValueOrExpression<Boolean> value)
Sets the "invoke-for-internal-operations" property.
|
void |
AttributeCleanupPluginCfgClient.setInvokeForInternalOperations(ValueOrExpression<Boolean> value)
Sets the "invoke-for-internal-operations" property.
|
void |
ReplicationDomainCfgClient.setIsolationPolicy(ValueOrExpression<ReplicationDomainCfgDefn.IsolationPolicy> value)
Sets the "isolation-policy" property.
|
void |
LdifBackendCfgClient.setIsPrivateBackend(ValueOrExpression<Boolean> value)
Sets the "is-private-backend" property.
|
void |
CertificateMapperCfgClient.setIssuerAttribute(ValueOrExpression<AttributeType> value)
Sets the "issuer-attribute" property.
|
void |
WorkQueueCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
WhoAmIExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
VirtualStaticGroupImplementationCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
VirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
UserDefinedVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
UniqueCharactersPasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
UniqueAttributePluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
TrustStoreBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
TrustManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
TripleDesPasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
TraditionalWorkQueueCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
TimeLimitLogRotationPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
TaskBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SynchronizationProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SubschemaSubentryVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SubjectEqualsDnCertificateMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SubjectDnToUserAttributeCertificateMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SubjectAttributeToUserAttributeCertificateMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
StructuralObjectClassVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
StaticGroupImplementationCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
StartTlsExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SoftReferenceEntryCacheCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SnmpConnectionHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SmtpAlertHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SizeLimitLogRotationPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SizeLimitLogRetentionPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SimilarityBasedPasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Sha1PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SevenBitCleanPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ServiceDiscoveryMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SchemaProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SchemaBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SambaPasswordPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SaltedSha512PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SaltedSha384PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SaltedSha256PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SaltedSha1PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
SaltedMd5PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Rest2ldapEndpointCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ReplicationSynchronizationProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
RepeatedCharactersPasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
RegularExpressionIdentityMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ReferentialIntegrityPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Rc4PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
RandomPasswordGeneratorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ProxyBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PrometheusEndpointCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ProfilerPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PolicyBasedAccessControlHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PlainSaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Pkcs5s2PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Pkcs11TrustManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Pkcs11KeyManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Pbkdf2PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordPolicySubentryVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordPolicyStateExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordPolicyImportPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordModifyExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordGeneratorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
PasswordExpirationTimeVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
NumSubordinatesVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
NullBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
MonitorBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
MemoryBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
MemberVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Md5PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LogRotationPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LogRetentionPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LengthBasedPasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdifConnectionHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdifBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdapTrustManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdapKeyManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdapConnectionHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LdapAttributeDescriptionListPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
LastModPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
KeyManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JsonQueryEqualityMatchingRuleCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JsonOrderingMatchingRuleCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JsonFileHttpAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JsonFileAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JsonEqualityMatchingRuleCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JmxConnectionHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JmxAlertHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JeBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
IsMemberOfVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
IdentityMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpOauth2OpenamAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpOauth2FileAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpOauth2CtsAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpEndpointCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpConnectionHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpBasicAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpAnonymousAuthorizationMechanismCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HttpAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
HasSubordinatesVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
GroupImplementationCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
GoverningStructureRuleVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
GetSymmetricKeyExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
GetConnectionIdExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FreeDiskSpaceLogRetentionPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FixedTimeLogRotationPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FingerprintCertificateMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileCountLogRetentionPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedTrustManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedKeyManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
FifoEntryCacheCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ExternalSaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ExternalHttpAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ExternalAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ExactMatchIdentityMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ErrorLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ErrorLogAccountStatusNotificationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
EntryUuidVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
EntryUuidPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
EntryDnVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
EntryCacheCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
EntityTagVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
DynamicGroupImplementationCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
DseeCompatAccessControlHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
DigestMd5SaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
DictionaryPasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
DebugLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CryptPasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CrestMetricsEndpointCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CramMd5SaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CoreSchemaCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ConnectionHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CollectiveAttributeSubentriesVirtualAttributeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ClearPasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CharacterSetPasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
ChangeNumberControlPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CertificateMapperCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
CancelExtendedOperationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
BlowfishPasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
BlindTrustManagerProviderCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
BcryptPasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
Base64PasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
BackupBackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
BackendCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AuthenticationPolicyCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AttributeValuePasswordValidatorCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AttributeCleanupPluginCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AnonymousSaslMechanismHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AlertHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AesPasswordStorageSchemeCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AdminEndpointCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AccountStatusNotificationHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AccessLogPublisherCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
AccessControlHandlerCfgClient.setJavaClass(ValueOrExpression<String> value)
Sets the "java-class" property.
|
void |
JsonOrderingMatchingRuleCfgClient.setJsonKeys(ValueOrExpression<String> value)
Sets the "json-keys" property.
|
void |
JsonEqualityMatchingRuleCfgClient.setJsonKeys(ValueOrExpression<String> value)
Sets the "json-keys" property.
|
void |
CoreSchemaCfgClient.setJsonValidationPolicy(ValueOrExpression<CoreSchemaCfgDefn.JsonValidationPolicy> value)
Sets the "json-validation-policy" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setKdcAddress(ValueOrExpression<String> value)
Sets the "kdc-address" property.
|
void |
LdapConnectionHandlerCfgClient.setKeepStats(ValueOrExpression<Boolean> value)
Sets the "keep-stats" property.
|
void |
HttpConnectionHandlerCfgClient.setKeepStats(ValueOrExpression<Boolean> value)
Sets the "keep-stats" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
LdapConnectionHandlerCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
JmxConnectionHandlerCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
HttpOauth2OpenamAuthorizationMechanismCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
HttpConnectionHandlerCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
AdministrationConnectorCfgClient.setKeyManagerProvider(ValueOrExpression<String> value)
Sets the "key-manager-provider" property.
|
void |
FileBasedKeyManagerProviderCfgClient.setKeyStoreFile(ValueOrExpression<String> value)
Sets the "key-store-file" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setKeyStoreFile(ValueOrExpression<String> value)
Sets the "key-store-file" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setKeyStoreFile(ValueOrExpression<String> value)
Sets the "key-store-file" property.
|
void |
Pkcs11KeyManagerProviderCfgClient.setKeyStorePin(ValueOrExpression<String> value)
Sets the "key-store-pin" property.
|
void |
LdapKeyManagerProviderCfgClient.setKeyStorePin(ValueOrExpression<String> value)
Sets the "key-store-pin" property.
|
void |
FileBasedKeyManagerProviderCfgClient.setKeyStorePin(ValueOrExpression<String> value)
Sets the "key-store-pin" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setKeyStorePin(ValueOrExpression<String> value)
Sets the "key-store-pin" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setKeyStorePin(ValueOrExpression<String> value)
Sets the "key-store-pin" property.
|
void |
FileBasedKeyManagerProviderCfgClient.setKeyStoreType(ValueOrExpression<String> value)
Sets the "key-store-type" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setKeytab(ValueOrExpression<String> value)
Sets the "keytab" property.
|
void |
CryptoManagerCfgClient.setKeyWrappingTransformation(ValueOrExpression<String> value)
Sets the "key-wrapping-transformation" property.
|
void |
PasswordPolicyCfgClient.setLastLoginTimeAttribute(ValueOrExpression<AttributeType> value)
Sets the "last-login-time-attribute" property.
|
void |
PasswordPolicyCfgClient.setLastLoginTimeFormat(ValueOrExpression<String> value)
Sets the "last-login-time-format" property.
|
void |
LdifConnectionHandlerCfgClient.setLdifDirectory(ValueOrExpression<String> value)
Sets the "ldif-directory" property.
|
void |
LdifBackendCfgClient.setLdifFile(ValueOrExpression<String> value)
Sets the "ldif-file" property.
|
void |
JmxConnectionHandlerCfgClient.setListenAddress(ValueOrExpression<InetAddress> value)
Sets the "listen-address" property.
|
void |
SnmpConnectionHandlerCfgClient.setListenPort(ValueOrExpression<Integer> value)
Sets the "listen-port" property.
|
void |
LdapConnectionHandlerCfgClient.setListenPort(ValueOrExpression<Integer> value)
Sets the "listen-port" property.
|
void |
JmxConnectionHandlerCfgClient.setListenPort(ValueOrExpression<Integer> value)
Sets the "listen-port" property.
|
void |
HttpConnectionHandlerCfgClient.setListenPort(ValueOrExpression<Integer> value)
Sets the "listen-port" property.
|
void |
AdministrationConnectorCfgClient.setListenPort(ValueOrExpression<Integer> value)
Sets the "listen-port" property.
|
void |
ProxyBackendCfgClient.setLoadBalancingAlgorithm(ValueOrExpression<ProxyBackendCfgDefn.LoadBalancingAlgorithm> value)
Sets the "load-balancing-algorithm" property.
|
void |
PasswordPolicyCfgClient.setLockoutDuration(ValueOrExpression<Long> value)
Sets the "lockout-duration" property.
|
void |
PasswordPolicyCfgClient.setLockoutFailureCount(ValueOrExpression<Integer> value)
Sets the "lockout-failure-count" property.
|
void |
PasswordPolicyCfgClient.setLockoutFailureExpirationInterval(ValueOrExpression<Long> value)
Sets the "lockout-failure-expiration-interval" property.
|
void |
SoftReferenceEntryCacheCfgClient.setLockTimeout(ValueOrExpression<Long> value)
Sets the "lock-timeout" property.
|
void |
FifoEntryCacheCfgClient.setLockTimeout(ValueOrExpression<Long> value)
Sets the "lock-timeout" property.
|
void |
ReplicationDomainCfgClient.setLogChangenumber(ValueOrExpression<Boolean> value)
Sets the "log-changenumber" property.
|
void |
JsonFileAccessLogPublisherCfgClient.setLogControlOids(ValueOrExpression<Boolean> value)
Sets the "log-control-oids" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setLogControlOids(ValueOrExpression<Boolean> value)
Sets the "log-control-oids" property.
|
void |
ExternalAccessLogPublisherCfgClient.setLogControlOids(ValueOrExpression<Boolean> value)
Sets the "log-control-oids" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setLogControlOids(ValueOrExpression<Boolean> value)
Sets the "log-control-oids" property.
|
void |
JsonFileHttpAccessLogPublisherCfgClient.setLogDirectory(ValueOrExpression<String> value)
Sets the "log-directory" property.
|
void |
JsonFileAccessLogPublisherCfgClient.setLogDirectory(ValueOrExpression<String> value)
Sets the "log-directory" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setLogDirectory(ValueOrExpression<String> value)
Sets the "log-directory" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setLogDirectory(ValueOrExpression<String> value)
Sets the "log-directory" property.
|
void |
ReferentialIntegrityPluginCfgClient.setLogFile(ValueOrExpression<String> value)
Sets the "log-file" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setLogFile(ValueOrExpression<String> value)
Sets the "log-file" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setLogFile(ValueOrExpression<String> value)
Sets the "log-file" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setLogFile(ValueOrExpression<String> value)
Sets the "log-file" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setLogFile(ValueOrExpression<String> value)
Sets the "log-file" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setLogFile(ValueOrExpression<String> value)
Sets the "log-file" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setLogFilePermissions(ValueOrExpression<String> value)
Sets the "log-file-permissions" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setLogFilePermissions(ValueOrExpression<String> value)
Sets the "log-file-permissions" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setLogFilePermissions(ValueOrExpression<String> value)
Sets the "log-file-permissions" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setLogFilePermissions(ValueOrExpression<String> value)
Sets the "log-file-permissions" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setLogFilePermissions(ValueOrExpression<String> value)
Sets the "log-file-permissions" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setLogFormat(ValueOrExpression<FileBasedAccessLogPublisherCfgDefn.LogFormat> value)
Sets the "log-format" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setLogFormat(ValueOrExpression<String> value)
Sets the "log-format" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setLogRecordTimeFormat(ValueOrExpression<String> value)
Sets the "log-record-time-format" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setLogRecordTimeFormat(ValueOrExpression<String> value)
Sets the "log-record-time-format" property.
|
void |
GlobalCfgClient.setLookthroughLimit(ValueOrExpression<Integer> value)
Sets the "lookthrough-limit" property.
|
void |
CryptoManagerCfgClient.setMacAlgorithm(ValueOrExpression<String> value)
Sets the "mac-algorithm" property.
|
void |
CryptoManagerCfgClient.setMacKeyLength(ValueOrExpression<Integer> value)
Sets the "mac-key-length" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setMappedSearchBindDn(ValueOrExpression<Dn> value)
Sets the "mapped-search-bind-dn" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setMappedSearchBindPassword(ValueOrExpression<String> value)
Sets the "mapped-search-bind-password" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setMappedSearchFilterTemplate(ValueOrExpression<String> value)
Sets the "mapped-search-filter-template" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setMappingPolicy(ValueOrExpression<LdapPassThroughAuthenticationPolicyCfgDefn.MappingPolicy> value)
Sets the "mapping-policy" property.
|
void |
JsonQueryEqualityMatchingRuleCfgClient.setMatchingRuleName(ValueOrExpression<String> value)
Sets the "matching-rule-name" property.
|
void |
JsonOrderingMatchingRuleCfgClient.setMatchingRuleName(ValueOrExpression<String> value)
Sets the "matching-rule-name" property.
|
void |
JsonEqualityMatchingRuleCfgClient.setMatchingRuleName(ValueOrExpression<String> value)
Sets the "matching-rule-name" property.
|
void |
JsonQueryEqualityMatchingRuleCfgClient.setMatchingRuleOid(ValueOrExpression<String> value)
Sets the "matching-rule-oid" property.
|
void |
JsonOrderingMatchingRuleCfgClient.setMatchingRuleOid(ValueOrExpression<String> value)
Sets the "matching-rule-oid" property.
|
void |
JsonEqualityMatchingRuleCfgClient.setMatchingRuleOid(ValueOrExpression<String> value)
Sets the "matching-rule-oid" property.
|
void |
RegularExpressionIdentityMapperCfgClient.setMatchPattern(ValueOrExpression<String> value)
Sets the "match-pattern" property.
|
void |
GlobalCfgClient.setMaxAllowedClientConnections(ValueOrExpression<Integer> value)
Sets the "max-allowed-client-connections" property.
|
void |
LdapConnectionHandlerCfgClient.setMaxBlockedWriteTimeLimit(ValueOrExpression<Long> value)
Sets the "max-blocked-write-time-limit" property.
|
void |
HttpConnectionHandlerCfgClient.setMaxBlockedWriteTimeLimit(ValueOrExpression<Long> value)
Sets the "max-blocked-write-time-limit" property.
|
void |
HttpConnectionHandlerCfgClient.setMaxConcurrentOpsPerConnection(ValueOrExpression<Integer> value)
Sets the "max-concurrent-ops-per-connection" property.
|
void |
RepeatedCharactersPasswordValidatorCfgClient.setMaxConsecutiveLength(ValueOrExpression<Integer> value)
Sets the "max-consecutive-length" property.
|
void |
FifoEntryCacheCfgClient.setMaxEntries(ValueOrExpression<Integer> value)
Sets the "max-entries" property.
|
void |
GlobalCfgClient.setMaxInternalBufferSize(ValueOrExpression<Long> value)
Sets the "max-internal-buffer-size" property.
|
void |
FifoEntryCacheCfgClient.setMaxMemoryPercent(ValueOrExpression<Integer> value)
Sets the "max-memory-percent" property.
|
void |
PasswordPolicyCfgClient.setMaxPasswordAge(ValueOrExpression<Long> value)
Sets the "max-password-age" property.
|
void |
LengthBasedPasswordValidatorCfgClient.setMaxPasswordLength(ValueOrExpression<Integer> value)
Sets the "max-password-length" property.
|
void |
PasswordPolicyCfgClient.setMaxPasswordResetAge(ValueOrExpression<Long> value)
Sets the "max-password-reset-age" property.
|
void |
GlobalCfgClient.setMaxPsearches(ValueOrExpression<Integer> value)
Sets the "max-psearches" property.
|
void |
LdapConnectionHandlerCfgClient.setMaxRequestSize(ValueOrExpression<Long> value)
Sets the "max-request-size" property.
|
void |
HttpConnectionHandlerCfgClient.setMaxRequestSize(ValueOrExpression<Long> value)
Sets the "max-request-size" property.
|
void |
TraditionalWorkQueueCfgClient.setMaxWorkQueueCapacity(ValueOrExpression<Integer> value)
Sets the "max-work-queue-capacity" property.
|
void |
SmtpAlertHandlerCfgClient.setMessageBody(ValueOrExpression<String> value)
Sets the "message-body" property.
|
void |
SmtpAlertHandlerCfgClient.setMessageSubject(ValueOrExpression<String> value)
Sets the "message-subject" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setMetricNamePrefix(ValueOrExpression<String> value)
Sets the "metric-name-prefix" property.
|
void |
CharacterSetPasswordValidatorCfgClient.setMinCharacterSets(ValueOrExpression<Integer> value)
Sets the "min-character-sets" property.
|
void |
PasswordPolicyCfgClient.setMinPasswordAge(ValueOrExpression<Long> value)
Sets the "min-password-age" property.
|
void |
SimilarityBasedPasswordValidatorCfgClient.setMinPasswordDifference(ValueOrExpression<Integer> value)
Sets the "min-password-difference" property.
|
void |
LengthBasedPasswordValidatorCfgClient.setMinPasswordLength(ValueOrExpression<Integer> value)
Sets the "min-password-length" property.
|
void |
DictionaryPasswordValidatorCfgClient.setMinSubstringLength(ValueOrExpression<Integer> value)
Sets the "min-substring-length" property.
|
void |
AttributeValuePasswordValidatorCfgClient.setMinSubstringLength(ValueOrExpression<Integer> value)
Sets the "min-substring-length" property.
|
void |
UniqueCharactersPasswordValidatorCfgClient.setMinUniqueCharacters(ValueOrExpression<Integer> value)
Sets the "min-unique-characters" property.
|
void |
ReplicationServerCfgClient.setMonitoringPeriod(ValueOrExpression<Long> value)
Sets the "monitoring-period" property.
|
void |
BackendVlvIndexCfgClient.setName(ValueOrExpression<String> value)
Sets the "name" property.
|
void |
TaskBackendCfgClient.setNotificationSenderAddress(ValueOrExpression<String> value)
Sets the "notification-sender-address" property.
|
void |
GlobalCfgClient.setNotifyAbandonedOperations(ValueOrExpression<Boolean> value)
Sets the "notify-abandoned-operations" property.
|
void |
FileCountLogRetentionPolicyCfgClient.setNumberOfFiles(ValueOrExpression<Integer> value)
Sets the "number-of-files" property.
|
void |
LdapConnectionHandlerCfgClient.setNumRequestHandlers(ValueOrExpression<Integer> value)
Sets the "num-request-handlers" property.
|
void |
HttpConnectionHandlerCfgClient.setNumRequestHandlers(ValueOrExpression<Integer> value)
Sets the "num-request-handlers" property.
|
void |
ReplicationSynchronizationProviderCfgClient.setNumUpdateReplayThreads(ValueOrExpression<Integer> value)
Sets the "num-update-replay-threads" property.
|
void |
TraditionalWorkQueueCfgClient.setNumWorkerThreads(ValueOrExpression<Integer> value)
Sets the "num-worker-threads" property.
|
void |
DebugTargetCfgClient.setOmitMethodEntryArguments(ValueOrExpression<Boolean> value)
Sets the "omit-method-entry-arguments" property.
|
void |
DebugTargetCfgClient.setOmitMethodReturnValue(ValueOrExpression<Boolean> value)
Sets the "omit-method-return-value" property.
|
void |
PasswordPolicyCfgClient.setPasswordAttribute(ValueOrExpression<AttributeType> value)
Sets the "password-attribute" property.
|
void |
PasswordPolicyCfgClient.setPasswordChangeRequiresCurrentPassword(ValueOrExpression<Boolean> value)
Sets the "password-change-requires-current-password" property.
|
void |
PasswordPolicyCfgClient.setPasswordExpirationWarningInterval(ValueOrExpression<Long> value)
Sets the "password-expiration-warning-interval" property.
|
void |
RandomPasswordGeneratorCfgClient.setPasswordFormat(ValueOrExpression<String> value)
Sets the "password-format" property.
|
void |
PasswordPolicyCfgClient.setPasswordGenerator(ValueOrExpression<String> value)
Sets the "password-generator" property.
|
void |
PasswordPolicyCfgClient.setPasswordHistoryCount(ValueOrExpression<Integer> value)
Sets the "password-history-count" property.
|
void |
PasswordPolicyCfgClient.setPasswordHistoryDuration(ValueOrExpression<Long> value)
Sets the "password-history-duration" property.
|
void |
Pbkdf2PasswordStorageSchemeCfgClient.setPbkdf2Iterations(ValueOrExpression<Integer> value)
Sets the "pbkdf2-iterations" property.
|
void |
PluginRootCfgClient.setPluginOrderIntermediateResponse(ValueOrExpression<String> value)
Sets the "plugin-order-intermediate-response" property.
|
void |
PluginRootCfgClient.setPluginOrderLdifExport(ValueOrExpression<String> value)
Sets the "plugin-order-ldif-export" property.
|
void |
PluginRootCfgClient.setPluginOrderLdifImport(ValueOrExpression<String> value)
Sets the "plugin-order-ldif-import" property.
|
void |
PluginRootCfgClient.setPluginOrderLdifImportBegin(ValueOrExpression<String> value)
Sets the "plugin-order-ldif-import-begin" property.
|
void |
PluginRootCfgClient.setPluginOrderLdifImportEnd(ValueOrExpression<String> value)
Sets the "plugin-order-ldif-import-end" property.
|
void |
PluginRootCfgClient.setPluginOrderPostConnect(ValueOrExpression<String> value)
Sets the "plugin-order-post-connect" property.
|
void |
PluginRootCfgClient.setPluginOrderPostDisconnect(ValueOrExpression<String> value)
Sets the "plugin-order-post-disconnect" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationAbandon(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-abandon" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationAdd(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-add" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationBind(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-bind" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationCompare(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-compare" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationDelete(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-delete" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationExtended(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-extended" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationModify(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-modify" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationModifyDn(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-modify-dn" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationSearch(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-search" property.
|
void |
PluginRootCfgClient.setPluginOrderPostOperationUnbind(ValueOrExpression<String> value)
Sets the "plugin-order-post-operation-unbind" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseAdd(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-add" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseBind(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-bind" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseCompare(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-compare" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseDelete(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-delete" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseExtended(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-extended" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseModify(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-modify" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseModifyDn(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-modify-dn" property.
|
void |
PluginRootCfgClient.setPluginOrderPostResponseSearch(ValueOrExpression<String> value)
Sets the "plugin-order-post-response-search" property.
|
void |
PluginRootCfgClient.setPluginOrderPostSynchronizationAdd(ValueOrExpression<String> value)
Sets the "plugin-order-post-synchronization-add" property.
|
void |
PluginRootCfgClient.setPluginOrderPostSynchronizationDelete(ValueOrExpression<String> value)
Sets the "plugin-order-post-synchronization-delete" property.
|
void |
PluginRootCfgClient.setPluginOrderPostSynchronizationModify(ValueOrExpression<String> value)
Sets the "plugin-order-post-synchronization-modify" property.
|
void |
PluginRootCfgClient.setPluginOrderPostSynchronizationModifyDn(ValueOrExpression<String> value)
Sets the "plugin-order-post-synchronization-modify-dn" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationAdd(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-add" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationBind(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-bind" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationCompare(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-compare" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationDelete(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-delete" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationExtended(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-extended" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationModify(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-modify" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationModifyDn(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-modify-dn" property.
|
void |
PluginRootCfgClient.setPluginOrderPreOperationSearch(ValueOrExpression<String> value)
Sets the "plugin-order-pre-operation-search" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseAbandon(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-abandon" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseAdd(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-add" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseBind(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-bind" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseCompare(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-compare" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseDelete(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-delete" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseExtended(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-extended" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseModify(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-modify" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseModifyDn(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-modify-dn" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseSearch(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-search" property.
|
void |
PluginRootCfgClient.setPluginOrderPreParseUnbind(ValueOrExpression<String> value)
Sets the "plugin-order-pre-parse-unbind" property.
|
void |
PluginRootCfgClient.setPluginOrderSearchResultEntry(ValueOrExpression<String> value)
Sets the "plugin-order-search-result-entry" property.
|
void |
PluginRootCfgClient.setPluginOrderSearchResultReference(ValueOrExpression<String> value)
Sets the "plugin-order-search-result-reference" property.
|
void |
PluginRootCfgClient.setPluginOrderShutdown(ValueOrExpression<String> value)
Sets the "plugin-order-shutdown" property.
|
void |
PluginRootCfgClient.setPluginOrderStartup(ValueOrExpression<String> value)
Sets the "plugin-order-startup" property.
|
void |
PluginRootCfgClient.setPluginOrderSubordinateDelete(ValueOrExpression<String> value)
Sets the "plugin-order-subordinate-delete" property.
|
void |
PluginRootCfgClient.setPluginOrderSubordinateModifyDn(ValueOrExpression<String> value)
Sets the "plugin-order-subordinate-modify-dn" property.
|
void |
LdifConnectionHandlerCfgClient.setPollInterval(ValueOrExpression<Long> value)
Sets the "poll-interval" property.
|
void |
PluggableBackendCfgClient.setPreloadTimeLimit(ValueOrExpression<Long> value)
Sets the "preload-time-limit" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setPrimaryGroupId(ValueOrExpression<Integer> value)
Sets the "primary-group-id" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setPrincipalName(ValueOrExpression<String> value)
Sets the "principal-name" property.
|
void |
ProfilerPluginCfgClient.setProfileAction(ValueOrExpression<ProfilerPluginCfgDefn.ProfileAction> value)
Sets the "profile-action" property.
|
void |
ProfilerPluginCfgClient.setProfileDirectory(ValueOrExpression<String> value)
Sets the "profile-directory" property.
|
void |
ProfilerPluginCfgClient.setProfileSampleInterval(ValueOrExpression<Long> value)
Sets the "profile-sample-interval" property.
|
void |
GlobalCfgClient.setProxiedAuthorizationIdentityMapper(ValueOrExpression<String> value)
Sets the "proxied-authorization-identity-mapper" property.
|
void |
ProxyBackendCfgClient.setProxyUserDn(ValueOrExpression<Dn> value)
Sets the "proxy-user-dn" property.
|
void |
ProxyBackendCfgClient.setProxyUserPassword(ValueOrExpression<String> value)
Sets the "proxy-user-password" property.
|
void |
DigestMd5SaslMechanismHandlerCfgClient.setQualityOfProtection(ValueOrExpression<DigestMd5SaslMechanismHandlerCfgDefn.QualityOfProtection> value)
Sets the "quality-of-protection" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setQualityOfProtection(ValueOrExpression<GssapiSaslMechanismHandlerCfgDefn.QualityOfProtection> value)
Sets the "quality-of-protection" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setQueueSize(ValueOrExpression<Integer> value)
Sets the "queue-size" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setQueueSize(ValueOrExpression<Integer> value)
Sets the "queue-size" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setQueueSize(ValueOrExpression<Integer> value)
Sets the "queue-size" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setQueueSize(ValueOrExpression<Integer> value)
Sets the "queue-size" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setQueueSize(ValueOrExpression<Integer> value)
Sets the "queue-size" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setRealm(ValueOrExpression<String> value)
Sets the "realm" property.
|
void |
DigestMd5SaslMechanismHandlerCfgClient.setRealm(ValueOrExpression<String> value)
Sets the "realm" property.
|
void |
SnmpConnectionHandlerCfgClient.setRegisteredMbean(ValueOrExpression<Boolean> value)
Sets the "registered-mbean" property.
|
void |
GlobalCfgClient.setRejectUnauthenticatedRequests(ValueOrExpression<Boolean> value)
Sets the "reject-unauthenticated-requests" property.
|
void |
RegularExpressionIdentityMapperCfgClient.setReplacePattern(ValueOrExpression<String> value)
Sets the "replace-pattern" property.
|
void |
ReplicationServerCfgClient.setReplicationDbDirectory(ValueOrExpression<String> value)
Sets the "replication-db-directory" property.
|
void |
ReplicationServerCfgClient.setReplicationPort(ValueOrExpression<Integer> value)
Sets the "replication-port" property.
|
void |
ReplicationServerCfgClient.setReplicationPurgeDelay(ValueOrExpression<Long> value)
Sets the "replication-purge-delay" property.
|
void |
ReplicationServerCfgClient.setReplicationServerId(ValueOrExpression<Integer> value)
Sets the "replication-server-id" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setReportingInterval(ValueOrExpression<Long> value)
Sets the "reporting-interval" property.
|
void |
GlobalAccessControlPolicyCfgClient.setRequestTargetDnEqualToUserDn(ValueOrExpression<Boolean> value)
Sets the "request-target-dn-equal-to-user-dn" property.
|
void |
PasswordPolicyCfgClient.setRequireChangeByTime(ValueOrExpression<String> value)
Sets the "require-change-by-time" property.
|
void |
PasswordPolicyCfgClient.setRequireSecureAuthentication(ValueOrExpression<Boolean> value)
Sets the "require-secure-authentication" property.
|
void |
PasswordPolicyCfgClient.setRequireSecurePasswordChanges(ValueOrExpression<Boolean> value)
Sets the "require-secure-password-changes" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setResponseEtimeGreaterThan(ValueOrExpression<Integer> value)
Sets the "response-etime-greater-than" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setResponseEtimeLessThan(ValueOrExpression<Integer> value)
Sets the "response-etime-less-than" property.
|
void |
GlobalCfgClient.setReturnBindErrorMessages(ValueOrExpression<Boolean> value)
Sets the "return-bind-error-messages" property.
|
void |
JmxConnectionHandlerCfgClient.setRmiPort(ValueOrExpression<Integer> value)
Sets the "rmi-port" property.
|
void |
TimeLimitLogRotationPolicyCfgClient.setRotationInterval(ValueOrExpression<Long> value)
Sets the "rotation-interval" property.
|
void |
ProxyBackendCfgClient.setRouteAll(ValueOrExpression<Boolean> value)
Sets the "route-all" property.
|
void |
SambaPasswordPluginCfgClient.setSambaAdministratorDn(ValueOrExpression<Dn> value)
Sets the "samba-administrator-dn" property.
|
void |
GlobalCfgClient.setSaveConfigOnSuccessfulStartup(ValueOrExpression<Boolean> value)
Sets the "save-config-on-successful-startup" property.
|
void |
BackendVlvIndexCfgClient.setScope(ValueOrExpression<BackendVlvIndexCfgDefn.Scope> value)
Sets the "scope" property.
|
void |
VirtualAttributeCfgClient.setScope(ValueOrExpression<VirtualAttributeCfgDefn.Scope> value)
Sets the "scope" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setSearchResponseIsIndexed(ValueOrExpression<Boolean> value)
Sets the "search-response-is-indexed" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setSearchResponseNentriesGreaterThan(ValueOrExpression<Integer> value)
Sets the "search-response-nentries-greater-than" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setSearchResponseNentriesLessThan(ValueOrExpression<Integer> value)
Sets the "search-response-nentries-less-than" property.
|
void |
SnmpConnectionHandlerCfgClient.setSecurityAgentFile(ValueOrExpression<String> value)
Sets the "security-agent-file" property.
|
void |
SnmpConnectionHandlerCfgClient.setSecurityLevel(ValueOrExpression<SnmpConnectionHandlerCfgDefn.SecurityLevel> value)
Sets the "security-level" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setSendEmailAsHtml(ValueOrExpression<Boolean> value)
Sets the "send-email-as-html" property.
|
void |
SmtpAlertHandlerCfgClient.setSenderAddress(ValueOrExpression<String> value)
Sets the "sender-address" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setSenderAddress(ValueOrExpression<String> value)
Sets the "sender-address" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setSendMessageWithoutEndUserAddress(ValueOrExpression<Boolean> value)
Sets the "send-message-without-end-user-address" property.
|
void |
LdapConnectionHandlerCfgClient.setSendRejectionNotice(ValueOrExpression<Boolean> value)
Sets the "send-rejection-notice" property.
|
void |
GssapiSaslMechanismHandlerCfgClient.setServerFqdn(ValueOrExpression<String> value)
Sets the "server-fqdn" property.
|
void |
DigestMd5SaslMechanismHandlerCfgClient.setServerFqdn(ValueOrExpression<String> value)
Sets the "server-fqdn" property.
|
void |
ReplicationDomainCfgClient.setServerId(ValueOrExpression<Integer> value)
Sets the "server-id" property.
|
void |
GlobalCfgClient.setServerId(ValueOrExpression<Integer> value)
Sets the "server-id" property.
|
void |
ProxyBackendCfgClient.setServiceDiscoveryMechanism(ValueOrExpression<String> value)
Sets the "service-discovery-mechanism" property.
|
void |
SchemaBackendCfgClient.setShowAllAttributes(ValueOrExpression<Boolean> value)
Sets the "show-all-attributes" property.
|
void |
RootDseBackendCfgClient.setShowAllAttributes(ValueOrExpression<Boolean> value)
Sets the "show-all-attributes" property.
|
void |
RootDseBackendCfgClient.setShowSubordinateNamingContexts(ValueOrExpression<Boolean> value)
Sets the "show-subordinate-naming-contexts" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setSignatureTimeInterval(ValueOrExpression<Long> value)
Sets the "signature-time-interval" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setSignatureTimeInterval(ValueOrExpression<Long> value)
Sets the "signature-time-interval" property.
|
void |
GlobalCfgClient.setSingleStructuralObjectclassBehavior(ValueOrExpression<GlobalCfgDefn.SingleStructuralObjectclassBehavior> value)
Sets the "single-structural-objectclass-behavior" property.
|
void |
GlobalCfgClient.setSizeLimit(ValueOrExpression<Integer> value)
Sets the "size-limit" property.
|
void |
PasswordPolicyCfgClient.setSkipValidationForAdministrators(ValueOrExpression<Boolean> value)
Sets the "skip-validation-for-administrators" property.
|
void |
ReplicationDomainCfgClient.setSolveConflicts(ValueOrExpression<Boolean> value)
Sets the "solve-conflicts" property.
|
void |
BackendVlvIndexCfgClient.setSortOrder(ValueOrExpression<String> value)
Sets the "sort-order" property.
|
void |
ReplicationServerCfgClient.setSourceAddress(ValueOrExpression<InetAddress> value)
Sets the "source-address" property.
|
void |
ReplicationDomainCfgClient.setSourceAddress(ValueOrExpression<InetAddress> value)
Sets the "source-address" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setSourceAddress(ValueOrExpression<InetAddress> value)
Sets the "source-address" property.
|
void |
HttpConnectionHandlerCfgClient.setSslClientAuthPolicy(ValueOrExpression<HttpConnectionHandlerCfgDefn.SslClientAuthPolicy> value)
Sets the "ssl-client-auth-policy" property.
|
void |
LdapConnectionHandlerCfgClient.setSslClientAuthPolicy(ValueOrExpression<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy> value)
Sets the "ssl-client-auth-policy" property.
|
void |
CryptoManagerCfgClient.setSslEncryption(ValueOrExpression<Boolean> value)
Sets the "ssl-encryption" property.
|
void |
PasswordPolicyCfgClient.setStateUpdateFailurePolicy(ValueOrExpression<PasswordPolicyCfgDefn.StateUpdateFailurePolicy> value)
Sets the "state-update-failure-policy" property.
|
void |
CoreSchemaCfgClient.setStrictFormatCertificates(ValueOrExpression<Boolean> value)
Sets the "strict-format-certificates" property.
|
void |
CoreSchemaCfgClient.setStrictFormatCountryString(ValueOrExpression<Boolean> value)
Sets the "strict-format-country-string" property.
|
void |
CoreSchemaCfgClient.setStrictFormatJpegPhotos(ValueOrExpression<Boolean> value)
Sets the "strict-format-jpeg-photos" property.
|
void |
CoreSchemaCfgClient.setStrictFormatTelephoneNumbers(ValueOrExpression<Boolean> value)
Sets the "strict-format-telephone-numbers" property.
|
void |
CoreSchemaCfgClient.setStripSyntaxMinUpperBoundAttributeTypeDescription(ValueOrExpression<Boolean> value)
Sets the "strip-syntax-min-upper-bound-attribute-type-description" property.
|
void |
SubjectDnToUserAttributeCertificateMapperCfgClient.setSubjectAttribute(ValueOrExpression<AttributeType> value)
Sets the "subject-attribute" property.
|
void |
BackendIndexCfgClient.setSubstringLength(ValueOrExpression<Integer> value)
Sets the "substring-length" property.
|
void |
AccessLogPublisherCfgClient.setSuppressInternalOperations(ValueOrExpression<Boolean> value)
Sets the "suppress-internal-operations" property.
|
void |
AccessLogPublisherCfgClient.setSuppressSynchronizationOperations(ValueOrExpression<Boolean> value)
Sets the "suppress-synchronization-operations" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setTamperEvident(ValueOrExpression<Boolean> value)
Sets the "tamper-evident" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setTamperEvident(ValueOrExpression<Boolean> value)
Sets the "tamper-evident" property.
|
void |
TaskBackendCfgClient.setTaskBackingFile(ValueOrExpression<String> value)
Sets the "task-backing-file" property.
|
void |
TaskBackendCfgClient.setTaskRetentionTime(ValueOrExpression<Long> value)
Sets the "task-retention-time" property.
|
void |
DictionaryPasswordValidatorCfgClient.setTestReversedPassword(ValueOrExpression<Boolean> value)
Sets the "test-reversed-password" property.
|
void |
AttributeValuePasswordValidatorCfgClient.setTestReversedPassword(ValueOrExpression<Boolean> value)
Sets the "test-reversed-password" property.
|
void |
DebugTargetCfgClient.setThrowableStackFrames(ValueOrExpression<Integer> value)
Sets the "throwable-stack-frames" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setTimeInterval(ValueOrExpression<Long> value)
Sets the "time-interval" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setTimeInterval(ValueOrExpression<Long> value)
Sets the "time-interval" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setTimeInterval(ValueOrExpression<Long> value)
Sets the "time-interval" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setTimeInterval(ValueOrExpression<Long> value)
Sets the "time-interval" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setTimeInterval(ValueOrExpression<Long> value)
Sets the "time-interval" property.
|
void |
GlobalCfgClient.setTimeLimit(ValueOrExpression<Long> value)
Sets the "time-limit" property.
|
void |
HttpOauth2OpenamAuthorizationMechanismCfgClient.setTokenInfoUrl(ValueOrExpression<String> value)
Sets the "token-info-url" property.
|
void |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.setTokenIntrospectionUrl(ValueOrExpression<String> value)
Sets the "token-introspection-url" property.
|
void |
SnmpConnectionHandlerCfgClient.setTrapPort(ValueOrExpression<Integer> value)
Sets the "trap-port" property.
|
void |
SnmpConnectionHandlerCfgClient.setTrapsCommunity(ValueOrExpression<String> value)
Sets the "traps-community" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
LdapConnectionHandlerCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
HttpOauth2TokenIntrospectionAuthorizationMechanismCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
HttpOauth2OpenamAuthorizationMechanismCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
HttpConnectionHandlerCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
AdministrationConnectorCfgClient.setTrustManagerProvider(ValueOrExpression<String> value)
Sets the "trust-manager-provider" property.
|
void |
TrustStoreBackendCfgClient.setTrustStoreFile(ValueOrExpression<String> value)
Sets the "trust-store-file" property.
|
void |
FileBasedTrustManagerProviderCfgClient.setTrustStoreFile(ValueOrExpression<String> value)
Sets the "trust-store-file" property.
|
void |
TrustStoreBackendCfgClient.setTrustStorePin(ValueOrExpression<String> value)
Sets the "trust-store-pin" property.
|
void |
Pkcs11TrustManagerProviderCfgClient.setTrustStorePin(ValueOrExpression<String> value)
Sets the "trust-store-pin" property.
|
void |
LdapTrustManagerProviderCfgClient.setTrustStorePin(ValueOrExpression<String> value)
Sets the "trust-store-pin" property.
|
void |
FileBasedTrustManagerProviderCfgClient.setTrustStorePin(ValueOrExpression<String> value)
Sets the "trust-store-pin" property.
|
void |
TrustStoreBackendCfgClient.setTrustStoreType(ValueOrExpression<String> value)
Sets the "trust-store-type" property.
|
void |
FileBasedTrustManagerProviderCfgClient.setTrustStoreType(ValueOrExpression<String> value)
Sets the "trust-store-type" property.
|
void |
GlobalCfgClient.setTrustTransactionIds(ValueOrExpression<Boolean> value)
Sets the "trust-transaction-ids" property.
|
void |
BackendIndexCfgClient.setTtlAge(ValueOrExpression<Long> value)
Sets the "ttl-age" property.
|
void |
BackendIndexCfgClient.setTtlEnabled(ValueOrExpression<Boolean> value)
Sets the "ttl-enabled" property.
|
void |
ReferentialIntegrityPluginCfgClient.setUpdateInterval(ValueOrExpression<Long> value)
Sets the "update-interval" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setUsePasswordCaching(ValueOrExpression<Boolean> value)
Sets the "use-password-caching" property.
|
void |
HttpAnonymousAuthorizationMechanismCfgClient.setUserDn(ValueOrExpression<Dn> value)
Sets the "user-dn" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setUseSsl(ValueOrExpression<Boolean> value)
Sets the "use-ssl" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setUseSsl(ValueOrExpression<Boolean> value)
Sets the "use-ssl" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setUseSsl(ValueOrExpression<Boolean> value)
Sets the "use-ssl" property.
|
void |
LdapConnectionHandlerCfgClient.setUseSsl(ValueOrExpression<Boolean> value)
Sets the "use-ssl" property.
|
void |
JmxConnectionHandlerCfgClient.setUseSsl(ValueOrExpression<Boolean> value)
Sets the "use-ssl" property.
|
void |
HttpConnectionHandlerCfgClient.setUseSsl(ValueOrExpression<Boolean> value)
Sets the "use-ssl" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setUseStartTls(ValueOrExpression<Boolean> value)
Sets the "use-start-tls" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setUseStartTls(ValueOrExpression<Boolean> value)
Sets the "use-start-tls" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setUseTcpKeepAlive(ValueOrExpression<Boolean> value)
Sets the "use-tcp-keep-alive" property.
|
void |
LdapConnectionHandlerCfgClient.setUseTcpKeepAlive(ValueOrExpression<Boolean> value)
Sets the "use-tcp-keep-alive" property.
|
void |
HttpConnectionHandlerCfgClient.setUseTcpKeepAlive(ValueOrExpression<Boolean> value)
Sets the "use-tcp-keep-alive" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setUseTcpNoDelay(ValueOrExpression<Boolean> value)
Sets the "use-tcp-no-delay" property.
|
void |
LdapConnectionHandlerCfgClient.setUseTcpNoDelay(ValueOrExpression<Boolean> value)
Sets the "use-tcp-no-delay" property.
|
void |
HttpConnectionHandlerCfgClient.setUseTcpNoDelay(ValueOrExpression<Boolean> value)
Sets the "use-tcp-no-delay" property.
|
void |
ReplicationServerCfgClient.setWeight(ValueOrExpression<Integer> value)
Sets the "weight" property.
|
void |
GlobalCfgClient.setWritabilityMode(ValueOrExpression<GlobalCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
TrustStoreBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
TaskBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
SchemaBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
PluggableBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
NullBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
MonitorBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
MemoryBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
LocalBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
LdifBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
void |
BackupBackendCfgClient.setWritabilityMode(ValueOrExpression<LocalBackendCfgDefn.WritabilityMode> value)
Sets the "writability-mode" property.
|
Modifier and Type | Method and Description |
---|---|
void |
PasswordPolicyCfgClient.setAccountStatusNotificationHandler(Collection<ValueOrExpression<String>> values)
Sets the "account-status-notification-handler" property.
|
void |
ErrorLogAccountStatusNotificationHandlerCfgClient.setAccountStatusNotificationType(Collection<ValueOrExpression<ErrorLogAccountStatusNotificationHandlerCfgDefn.AccountStatusNotificationType>> values)
Sets the "account-status-notification-type" property.
|
void |
GlobalAccessControlPolicyCfgClient.setAllowedAttribute(Collection<ValueOrExpression<String>> values)
Sets the "allowed-attribute" property.
|
void |
GlobalAccessControlPolicyCfgClient.setAllowedAttributeException(Collection<ValueOrExpression<String>> values)
Sets the "allowed-attribute-exception" property.
|
void |
ConnectionHandlerCfgClient.setAllowedClient(Collection<ValueOrExpression<AddressMask>> values)
Sets the "allowed-client" property.
|
void |
AdministrationConnectorCfgClient.setAllowedClient(Collection<ValueOrExpression<AddressMask>> values)
Sets the "allowed-client" property.
|
void |
GlobalAccessControlPolicyCfgClient.setAllowedControl(Collection<ValueOrExpression<String>> values)
Sets the "allowed-control" property.
|
void |
GlobalAccessControlPolicyCfgClient.setAllowedExtendedOperation(Collection<ValueOrExpression<String>> values)
Sets the "allowed-extended-operation" property.
|
void |
SnmpConnectionHandlerCfgClient.setAllowedManager(Collection<ValueOrExpression<String>> values)
Sets the "allowed-manager" property.
|
void |
GlobalCfgClient.setAllowedTask(Collection<ValueOrExpression<String>> values)
Sets the "allowed-task" property.
|
void |
SnmpConnectionHandlerCfgClient.setAllowedUser(Collection<ValueOrExpression<String>> values)
Sets the "allowed-user" property.
|
void |
SevenBitCleanPluginCfgClient.setAttributeType(Collection<ValueOrExpression<AttributeType>> values)
Sets the "attribute-type" property.
|
void |
ReferentialIntegrityPluginCfgClient.setAttributeType(Collection<ValueOrExpression<AttributeType>> values)
Sets the "attribute-type" property.
|
void |
HttpEndpointCfgClient.setAuthorizationMechanism(Collection<ValueOrExpression<String>> values)
Sets the "authorization-mechanism" property.
|
void |
BackupBackendCfgClient.setBackupDirectory(Collection<ValueOrExpression<String>> values)
Sets the "backup-directory" property.
|
void |
VirtualAttributeCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
UniqueAttributePluginCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
SevenBitCleanPluginCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
ReferentialIntegrityPluginCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
ProxyBackendCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
PluggableBackendCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
NullBackendCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
MemoryBackendCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
LdifBackendCfgClient.setBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "base-dn" property.
|
void |
CharacterSetPasswordValidatorCfgClient.setCharacterSet(Collection<ValueOrExpression<String>> values)
Sets the "character-set" property.
|
void |
CharacterSetPasswordValidatorCfgClient.setCharacterSetRanges(Collection<ValueOrExpression<String>> values)
Sets the "character-set-ranges" property.
|
void |
ReferentialIntegrityPluginCfgClient.setCheckReferencesFilterCriteria(Collection<ValueOrExpression<String>> values)
Sets the "check-references-filter-criteria" property.
|
void |
GlobalAccessControlPolicyCfgClient.setConnectionClientAddressEqualTo(Collection<ValueOrExpression<AddressMask>> values)
Sets the "connection-client-address-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setConnectionClientAddressEqualTo(Collection<ValueOrExpression<AddressMask>> values)
Sets the "connection-client-address-equal-to" property.
|
void |
GlobalAccessControlPolicyCfgClient.setConnectionClientAddressNotEqualTo(Collection<ValueOrExpression<AddressMask>> values)
Sets the "connection-client-address-not-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setConnectionClientAddressNotEqualTo(Collection<ValueOrExpression<AddressMask>> values)
Sets the "connection-client-address-not-equal-to" property.
|
void |
GlobalAccessControlPolicyCfgClient.setConnectionPortEqualTo(Collection<ValueOrExpression<Integer>> values)
Sets the "connection-port-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setConnectionPortEqualTo(Collection<ValueOrExpression<Integer>> values)
Sets the "connection-port-equal-to" property.
|
void |
GlobalAccessControlPolicyCfgClient.setConnectionProtocolEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "connection-protocol-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setConnectionProtocolEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "connection-protocol-equal-to" property.
|
void |
PasswordPolicyImportPluginCfgClient.setDefaultAuthPasswordStorageScheme(Collection<ValueOrExpression<String>> values)
Sets the "default-auth-password-storage-scheme" property.
|
void |
PasswordPolicyCfgClient.setDefaultPasswordStorageScheme(Collection<ValueOrExpression<String>> values)
Sets the "default-password-storage-scheme" property.
|
void |
ErrorLogPublisherCfgClient.setDefaultSeverity(Collection<ValueOrExpression<ErrorLogPublisherCfgDefn.DefaultSeverity>> values)
Sets the "default-severity" property.
|
void |
PasswordPolicyImportPluginCfgClient.setDefaultUserPasswordStorageScheme(Collection<ValueOrExpression<String>> values)
Sets the "default-user-password-storage-scheme" property.
|
void |
ConnectionHandlerCfgClient.setDeniedClient(Collection<ValueOrExpression<AddressMask>> values)
Sets the "denied-client" property.
|
void |
AdministrationConnectorCfgClient.setDeniedClient(Collection<ValueOrExpression<AddressMask>> values)
Sets the "denied-client" property.
|
void |
PasswordPolicyCfgClient.setDeprecatedPasswordStorageScheme(Collection<ValueOrExpression<String>> values)
Sets the "deprecated-password-storage-scheme" property.
|
void |
AlertHandlerCfgClient.setDisabledAlertType(Collection<ValueOrExpression<String>> values)
Sets the "disabled-alert-type" property.
|
void |
CoreSchemaCfgClient.setDisabledMatchingRule(Collection<ValueOrExpression<String>> values)
Sets the "disabled-matching-rule" property.
|
void |
GlobalCfgClient.setDisabledPrivilege(Collection<ValueOrExpression<GlobalCfgDefn.DisabledPrivilege>> values)
Sets the "disabled-privilege" property.
|
void |
CoreSchemaCfgClient.setDisabledSyntax(Collection<ValueOrExpression<String>> values)
Sets the "disabled-syntax" property.
|
void |
ExternalChangelogDomainCfgClient.setEclInclude(Collection<ValueOrExpression<String>> values)
Sets the "ecl-include" property.
|
void |
ExternalChangelogDomainCfgClient.setEclIncludeForDeletes(Collection<ValueOrExpression<String>> values)
Sets the "ecl-include-for-deletes" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setEmailAddressAttributeType(Collection<ValueOrExpression<AttributeType>> values)
Sets the "email-address-attribute-type" property.
|
void |
AlertHandlerCfgClient.setEnabledAlertType(Collection<ValueOrExpression<String>> values)
Sets the "enabled-alert-type" property.
|
void |
EntityTagVirtualAttributeCfgClient.setExcludedAttribute(Collection<ValueOrExpression<AttributeType>> values)
Sets the "excluded-attribute" property.
|
void |
PrometheusEndpointCfgClient.setExcludedMetricPattern(Collection<ValueOrExpression<String>> values)
Sets the "excluded-metric-pattern" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setExcludedMetricPattern(Collection<ValueOrExpression<String>> values)
Sets the "excluded-metric-pattern" property.
|
void |
CrestMetricsEndpointCfgClient.setExcludedMetricPattern(Collection<ValueOrExpression<String>> values)
Sets the "excluded-metric-pattern" property.
|
void |
SoftReferenceEntryCacheCfgClient.setExcludeFilter(Collection<ValueOrExpression<String>> values)
Sets the "exclude-filter" property.
|
void |
FifoEntryCacheCfgClient.setExcludeFilter(Collection<ValueOrExpression<String>> values)
Sets the "exclude-filter" property.
|
void |
VirtualAttributeCfgClient.setFilter(Collection<ValueOrExpression<String>> values)
Sets the "filter" property.
|
void |
ReplicationDomainCfgClient.setFractionalExclude(Collection<ValueOrExpression<String>> values)
Sets the "fractional-exclude" property.
|
void |
ReplicationDomainCfgClient.setFractionalInclude(Collection<ValueOrExpression<String>> values)
Sets the "fractional-include" property.
|
void |
DseeCompatAccessControlHandlerCfgClient.setGlobalAci(Collection<ValueOrExpression<String>> values)
Sets the "global-aci" property.
|
void |
VirtualAttributeCfgClient.setGroupDn(Collection<ValueOrExpression<Dn>> values)
Sets the "group-dn" property.
|
void |
PrometheusEndpointCfgClient.setIncludedMetricPattern(Collection<ValueOrExpression<String>> values)
Sets the "included-metric-pattern" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setIncludedMetricPattern(Collection<ValueOrExpression<String>> values)
Sets the "included-metric-pattern" property.
|
void |
CrestMetricsEndpointCfgClient.setIncludedMetricPattern(Collection<ValueOrExpression<String>> values)
Sets the "included-metric-pattern" property.
|
void |
SoftReferenceEntryCacheCfgClient.setIncludeFilter(Collection<ValueOrExpression<String>> values)
Sets the "include-filter" property.
|
void |
FifoEntryCacheCfgClient.setIncludeFilter(Collection<ValueOrExpression<String>> values)
Sets the "include-filter" property.
|
void |
JsonQueryEqualityMatchingRuleCfgClient.setIndexedField(Collection<ValueOrExpression<String>> values)
Sets the "indexed-field" property.
|
void |
BackendIndexCfgClient.setIndexExtensibleMatchingRule(Collection<ValueOrExpression<String>> values)
Sets the "index-extensible-matching-rule" property.
|
void |
BackendIndexCfgClient.setIndexType(Collection<ValueOrExpression<BackendIndexCfgDefn.IndexType>> values)
Sets the "index-type" property.
|
void |
JeBackendCfgClient.setJeProperty(Collection<ValueOrExpression<String>> values)
Sets the "je-property" property.
|
void |
SnmpConnectionHandlerCfgClient.setListenAddress(Collection<ValueOrExpression<InetAddress>> values)
Sets the "listen-address" property.
|
void |
LdapConnectionHandlerCfgClient.setListenAddress(Collection<ValueOrExpression<InetAddress>> values)
Sets the "listen-address" property.
|
void |
HttpConnectionHandlerCfgClient.setListenAddress(Collection<ValueOrExpression<InetAddress>> values)
Sets the "listen-address" property.
|
void |
AdministrationConnectorCfgClient.setListenAddress(Collection<ValueOrExpression<InetAddress>> values)
Sets the "listen-address" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setLogRecordType(Collection<ValueOrExpression<AccessLogFilteringCriteriaCfgDefn.LogRecordType>> values)
Sets the "log-record-type" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setMappedAttribute(Collection<ValueOrExpression<AttributeType>> values)
Sets the "mapped-attribute" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setMappedSearchBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "mapped-search-base-dn" property.
|
void |
RegularExpressionIdentityMapperCfgClient.setMatchAttribute(Collection<ValueOrExpression<AttributeType>> values)
Sets the "match-attribute" property.
|
void |
ExactMatchIdentityMapperCfgClient.setMatchAttribute(Collection<ValueOrExpression<AttributeType>> values)
Sets the "match-attribute" property.
|
void |
AttributeValuePasswordValidatorCfgClient.setMatchAttribute(Collection<ValueOrExpression<AttributeType>> values)
Sets the "match-attribute" property.
|
void |
RegularExpressionIdentityMapperCfgClient.setMatchBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "match-base-dn" property.
|
void |
ExactMatchIdentityMapperCfgClient.setMatchBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "match-base-dn" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setMessageSubject(Collection<ValueOrExpression<String>> values)
Sets the "message-subject" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setMessageTemplateFile(Collection<ValueOrExpression<String>> values)
Sets the "message-template-file" property.
|
void |
ErrorLogPublisherCfgClient.setOverrideSeverity(Collection<ValueOrExpression<String>> values)
Sets the "override-severity" property.
|
void |
ProxyBackendCfgClient.setPartitionBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "partition-base-dn" property.
|
void |
RandomPasswordGeneratorCfgClient.setPasswordCharacterSet(Collection<ValueOrExpression<String>> values)
Sets the "password-character-set" property.
|
void |
PasswordPolicyCfgClient.setPasswordValidator(Collection<ValueOrExpression<String>> values)
Sets the "password-validator" property.
|
void |
GlobalAccessControlPolicyCfgClient.setPermission(Collection<ValueOrExpression<GlobalAccessControlPolicyCfgDefn.Permission>> values)
Sets the "permission" property.
|
void |
UniqueAttributePluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
SevenBitCleanPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
SambaPasswordPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
ReferentialIntegrityPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
ProfilerPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
PluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
PasswordPolicyImportPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
LdapAttributeDescriptionListPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
LastModPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
GraphiteMonitorReporterPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
EntryUuidPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
ChangeNumberControlPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
AttributeCleanupPluginCfgClient.setPluginType(Collection<ValueOrExpression<PluginCfgDefn.PluginType>> values)
Sets the "plugin-type" property.
|
void |
PasswordPolicyCfgClient.setPreviousLastLoginTimeFormat(Collection<ValueOrExpression<String>> values)
Sets the "previous-last-login-time-format" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setPrimaryRemoteLdapServer(Collection<ValueOrExpression<String>> values)
Sets the "primary-remote-ldap-server" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setPrimaryServer(Collection<ValueOrExpression<String>> values)
Sets the "primary-server" property.
|
void |
SambaPasswordPluginCfgClient.setPwdSyncPolicy(Collection<ValueOrExpression<SambaPasswordPluginCfgDefn.PwdSyncPolicy>> values)
Sets the "pwd-sync-policy" property.
|
void |
SmtpAlertHandlerCfgClient.setRecipientAddress(Collection<ValueOrExpression<String>> values)
Sets the "recipient-address" property.
|
void |
SmtpAccountStatusNotificationHandlerCfgClient.setRecipientAddress(Collection<ValueOrExpression<String>> values)
Sets the "recipient-address" property.
|
void |
ReplicationDomainCfgClient.setReferralsUrl(Collection<ValueOrExpression<String>> values)
Sets the "referrals-url" property.
|
void |
AttributeCleanupPluginCfgClient.setRemoveInboundAttributes(Collection<ValueOrExpression<String>> values)
Sets the "remove-inbound-attributes" property.
|
void |
AttributeCleanupPluginCfgClient.setRenameInboundAttributes(Collection<ValueOrExpression<String>> values)
Sets the "rename-inbound-attributes" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setReplicationServer(Collection<ValueOrExpression<String>> values)
Sets the "replication-server" property.
|
void |
ReplicationServerCfgClient.setReplicationServer(Collection<ValueOrExpression<String>> values)
Sets the "replication-server" property.
|
void |
ReplicationDomainCfgClient.setReplicationServer(Collection<ValueOrExpression<String>> values)
Sets the "replication-server" property.
|
void |
GlobalAccessControlPolicyCfgClient.setRequestTargetDnEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "request-target-dn-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setRequestTargetDnEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "request-target-dn-equal-to" property.
|
void |
GlobalAccessControlPolicyCfgClient.setRequestTargetDnNotEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "request-target-dn-not-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setRequestTargetDnNotEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "request-target-dn-not-equal-to" property.
|
void |
HttpOauth2AuthorizationMechanismCfgClient.setRequiredScope(Collection<ValueOrExpression<String>> values)
Sets the "required-scope" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setResponseResultCodeEqualTo(Collection<ValueOrExpression<Integer>> values)
Sets the "response-result-code-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setResponseResultCodeNotEqualTo(Collection<ValueOrExpression<Integer>> values)
Sets the "response-result-code-not-equal-to" property.
|
void |
JsonFileHttpAccessLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
JsonFileAccessLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setRetentionPolicy(Collection<ValueOrExpression<String>> values)
Sets the "retention-policy" property.
|
void |
JsonFileHttpAccessLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
JsonFileAccessLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
FileBasedHttpAccessLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
FileBasedErrorLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
FileBasedDebugLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
FileBasedAuditLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
FileBasedAccessLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
CsvFileHttpAccessLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
CsvFileAccessLogPublisherCfgClient.setRotationPolicy(Collection<ValueOrExpression<String>> values)
Sets the "rotation-policy" property.
|
void |
SchemaBackendCfgClient.setSchemaEntryDn(Collection<ValueOrExpression<Dn>> values)
Sets the "schema-entry-dn" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setSecondaryRemoteLdapServer(Collection<ValueOrExpression<String>> values)
Sets the "secondary-remote-ldap-server" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setSecondaryServer(Collection<ValueOrExpression<String>> values)
Sets the "secondary-server" property.
|
void |
GlobalCfgClient.setSmtpServer(Collection<ValueOrExpression<String>> values)
Sets the "smtp-server" property.
|
void |
StaticServiceDiscoveryMechanismCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
ReplicationServiceDiscoveryMechanismCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
LdapConnectionHandlerCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
JmxConnectionHandlerCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
HttpConnectionHandlerCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
CryptoManagerCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
AdministrationConnectorCfgClient.setSslCertNickname(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cert-nickname" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setSslCipherSuite(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cipher-suite" property.
|
void |
LdapConnectionHandlerCfgClient.setSslCipherSuite(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cipher-suite" property.
|
void |
HttpConnectionHandlerCfgClient.setSslCipherSuite(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cipher-suite" property.
|
void |
CryptoManagerCfgClient.setSslCipherSuite(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cipher-suite" property.
|
void |
AdministrationConnectorCfgClient.setSslCipherSuite(Collection<ValueOrExpression<String>> values)
Sets the "ssl-cipher-suite" property.
|
void |
LdapPassThroughAuthenticationPolicyCfgClient.setSslProtocol(Collection<ValueOrExpression<String>> values)
Sets the "ssl-protocol" property.
|
void |
LdapConnectionHandlerCfgClient.setSslProtocol(Collection<ValueOrExpression<String>> values)
Sets the "ssl-protocol" property.
|
void |
HttpConnectionHandlerCfgClient.setSslProtocol(Collection<ValueOrExpression<String>> values)
Sets the "ssl-protocol" property.
|
void |
CryptoManagerCfgClient.setSslProtocol(Collection<ValueOrExpression<String>> values)
Sets the "ssl-protocol" property.
|
void |
AdministrationConnectorCfgClient.setSslProtocol(Collection<ValueOrExpression<String>> values)
Sets the "ssl-protocol" property.
|
void |
SubjectAttributeToUserAttributeCertificateMapperCfgClient.setSubjectAttributeMapping(Collection<ValueOrExpression<String>> values)
Sets the "subject-attribute-mapping" property.
|
void |
GlobalCfgClient.setSubordinateBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "subordinate-base-dn" property.
|
void |
FixedTimeLogRotationPolicyCfgClient.setTimeOfDay(Collection<ValueOrExpression<String>> values)
Sets the "time-of-day" property.
|
void |
SnmpConnectionHandlerCfgClient.setTrapsDestination(Collection<ValueOrExpression<String>> values)
Sets the "traps-destination" property.
|
void |
UniqueAttributePluginCfgClient.setType(Collection<ValueOrExpression<AttributeType>> values)
Sets the "type" property.
|
void |
SubjectDnToUserAttributeCertificateMapperCfgClient.setUserBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "user-base-dn" property.
|
void |
SubjectAttributeToUserAttributeCertificateMapperCfgClient.setUserBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "user-base-dn" property.
|
void |
FingerprintCertificateMapperCfgClient.setUserBaseDn(Collection<ValueOrExpression<Dn>> values)
Sets the "user-base-dn" property.
|
void |
GlobalAccessControlPolicyCfgClient.setUserDnEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "user-dn-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setUserDnEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "user-dn-equal-to" property.
|
void |
GlobalAccessControlPolicyCfgClient.setUserDnNotEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "user-dn-not-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setUserDnNotEqualTo(Collection<ValueOrExpression<String>> values)
Sets the "user-dn-not-equal-to" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setUserIsMemberOf(Collection<ValueOrExpression<Dn>> values)
Sets the "user-is-member-of" property.
|
void |
AccessLogFilteringCriteriaCfgClient.setUserIsNotMemberOf(Collection<ValueOrExpression<Dn>> values)
Sets the "user-is-not-member-of" property.
|
void |
UserDefinedVirtualAttributeCfgClient.setValue(Collection<ValueOrExpression<String>> values)
Sets the "value" property.
|
Copyright 2010-2018 ForgeRock AS.