Package | Description |
---|---|
org.opends.guitools.controlpanel.datamodel |
Defines the data structures that are used in the control panel.
|
org.opends.server.config |
Contains code used to interact with the Directory Server configuration.
|
Modifier and Type | Method and Description |
---|---|
void |
ControlPanelInfo.initializeConfigurationFramework()
Initialize the new configuration framework if needed.
|
Modifier and Type | Method and Description |
---|---|
int |
IntegerConfigAttribute.activeIntValue()
Retrieves the active value for this configuration attribute as an integer.
|
long |
IntegerConfigAttribute.activeValue()
Retrieves the active value for this configuration attribute as a long.
|
DN |
DNConfigAttribute.activeValue()
Retrieves the active value for this configuration attribute as a DN.
|
String |
MultiChoiceConfigAttribute.activeValue()
Retrieves the active value for this configuration attribute as a string.
|
String |
ReadOnlyConfigAttribute.activeValue()
Retrieves the active value for this configuration attribute as a string.
|
void |
ConfigEntry.addChild(ConfigEntry childEntry)
Adds the specified entry as a child of this configuration entry.
|
protected void |
ConfigAttribute.addValues(List<org.forgerock.opendj.ldap.ByteString> values)
Attempts to add the provided set of values to this configuration attribute.
|
ConfigAttribute |
ConfigEntry.getConfigAttribute(ConfigAttribute stub)
Retrieves the specified configuration attribute from this configuration
entry.
|
ConfigAttribute |
BooleanConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
ConfigAttribute |
StringConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
ConfigAttribute |
IntegerConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
ConfigAttribute |
DNConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
ConfigAttribute |
MultiChoiceConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
abstract ConfigAttribute |
ConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
ConfigAttribute |
ReadOnlyConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
ConfigAttribute |
IntegerWithUnitConfigAttribute.getConfigAttribute(List<Attribute> attributeList)
Retrieves a new configuration attribute of this type that will contain the
values from the provided attribute.
|
int |
IntegerConfigAttribute.pendingIntValue()
Retrieves the pending value for this configuration attribute as an integer.
|
long |
IntegerConfigAttribute.pendingValue()
Retrieves the pending value for this configuration attribute as a long.
|
DN |
DNConfigAttribute.pendingValue()
Retrieves the pending value for this configuration attribute as a DN.
|
String |
MultiChoiceConfigAttribute.pendingValue()
Retrieves the pending value for this configuration attribute as a string.
|
String |
ReadOnlyConfigAttribute.pendingValue()
Retrieves the pending value for this configuration attribute as a string.
|
protected void |
ConfigAttribute.removeAllValues()
Removes all values from this configuration attribute.
|
ConfigEntry |
ConfigEntry.removeChild(DN childDN)
Attempts to remove the child entry with the specified DN.
|
protected void |
ConfigAttribute.removeValues(List<org.forgerock.opendj.ldap.ByteString> values)
Attempts to remove the set of values from this configuration attribute.
|
void |
BooleanConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
StringConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
IntegerConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
DNConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
MultiChoiceConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
abstract void |
ConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
ReadOnlyConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
IntegerWithUnitConfigAttribute.setValue(Attribute jmxAttribute)
Attempts to set the value of this configuration attribute based on the
information in the provided JMX attribute.
|
void |
DNConfigAttribute.setValue(DN value)
Sets the value for this DN configuration attribute.
|
void |
IntegerConfigAttribute.setValue(long value)
Sets the value for this integer configuration attribute.
|
void |
IntegerWithUnitConfigAttribute.setValue(long intValue,
String unit)
Sets the value for this configuration attribute.
|
void |
StringConfigAttribute.setValue(String value)
Sets the value for this string configuration attribute.
|
void |
MultiChoiceConfigAttribute.setValue(String value)
Sets the value for this string configuration attribute.
|
void |
ReadOnlyConfigAttribute.setValue(String value)
Sets the value for this string configuration attribute.
|
void |
IntegerWithUnitConfigAttribute.setValue(String value)
Sets the value for this configuration attribute.
|
protected void |
ConfigAttribute.setValues(LinkedHashSet<org.forgerock.opendj.ldap.ByteString> values)
Specifies the set of values for this configuration attribute.
|
void |
DNConfigAttribute.setValues(List<DN> values)
Sets the values for this DN configuration attribute.
|
void |
IntegerConfigAttribute.setValues(List<Long> values)
Sets the values for this integer configuration attribute.
|
void |
StringConfigAttribute.setValues(List<String> values)
Sets the values for this string configuration attribute.
|
void |
MultiChoiceConfigAttribute.setValues(List<String> values)
Sets the values for this string configuration attribute.
|
void |
ReadOnlyConfigAttribute.setValues(List<String> values)
Sets the values for this string configuration attribute.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
BooleanConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
StringConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
IntegerConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
DNConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
MultiChoiceConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
abstract LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
ConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
ReadOnlyConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
LinkedHashSet<org.forgerock.opendj.ldap.ByteString> |
IntegerWithUnitConfigAttribute.stringsToValues(List<String> valueStrings,
boolean allowFailures)
Converts the provided set of strings to a corresponding set of attribute
values.
|
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.