Advanced properties phase 1: tag advanced properties and perform
various clean-up to the XML definitions:
* clean up typos and any bad grammar in the synopsis/description
elements
* fixed common errors. For example, there were many places where the
synopsis was repeated in the description (the description is only
ever used in conjunction with the synopsis). There were also many
places where the <adm:user-friendly-name> was being used in
property definition description elements to refer to the property
name, when it actually refers to the managed object name
* split big synopsis (not sure of the plural form - synopsi?) where
possible - there were lots of cases where we'd have a big synopsis
but no description
* overrode properties with sensible default values where
appropriate (for example, I provided sensible default values for
some of the attribute-type properties in the virtual attribute
definitions)
* generally made documentation more consistent across the definitions
* removed unneeded XML attributes of the form 'mandatory="false"'.
Attributes only need to be specified if their value is true as
they default to false. Adding redundant attributes just makes the
XML harder to read
* removed any documentation that referred to the configuration in
LDAP related terms (with one exception in the Schema backend). All
documentation now refers to other properties using the property
names, not their associated LDAP attribute.
| | |
| | | </xsd:documentation> |
| | | </xsd:annotation> |
| | | </xsd:attribute> |
| | | <xsd:attribute name="advanced" type="xsd:boolean" use="optional" |
| | | default="false"> |
| | | <xsd:annotation> |
| | | <xsd:documentation> |
| | | Optionally override the advanced option defined in the |
| | | overridden property definition. Indicates whether or not this |
| | | property should be treated as an advanced property and hidden |
| | | by default in client applications. Advanced properties should |
| | | either be optional (i.e. not mandatory) or be mandatory with |
| | | default values. This constraint is required so that users do |
| | | not have to specify values for advanced properties. |
| | | </xsd:documentation> |
| | | </xsd:annotation> |
| | | </xsd:attribute> |
| | | </xsd:complexType> |
| | | <xsd:complexType name="relation-type"> |
| | | <xsd:annotation> |
| | |
| | | <xsl:variable name="property" |
| | | select="$hierarchy/adm:managed-object/adm:property[@name=$name]" /> |
| | | <xsl:element name="adm:property"> |
| | | <xsl:copy-of select="$property/@*" /> |
| | | <xsl:copy-of select="$property/@*[local-name() != 'advanced']" /> |
| | | <xsl:choose> |
| | | <xsl:when test="@advanced"> |
| | | <xsl:copy-of select="@advanced" /> |
| | | </xsl:when> |
| | | <xsl:otherwise> |
| | | <xsl:copy-of select="$property/@advanced" /> |
| | | </xsl:otherwise> |
| | | </xsl:choose> |
| | | <xsl:apply-templates |
| | | select="$property/adm:TODO | $property/adm:synopsis | $property/adm:description" |
| | | mode="pre-process"> |
| | |
| | | <xsl:if test="@naming-property"> |
| | | <xsl:variable name="naming-property-name" |
| | | select="@naming-property" /> |
| | | |
| | | <!-- |
| | | FIXME: this does not cope with the situation where the property |
| | | is inherited, referenced, or overridden. |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="aes-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="aes-password-storage-scheme" |
| | | plural-name="aes-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using the AES reversible encryption mechanism. This |
| | | implementation contains only an implementation for the user password syntax, |
| | | with a storage scheme name of "AES". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using the AES |
| | | reversible encryption mechanism. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "AES". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-aes-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="access-control-handler" |
| | | plural-name="access-control-handlers" |
| | | package="org.opends.server.admin.std" |
| | |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | manage the application-wide access-control. |
| | | manage the application-wide access-control. |
| | | </adm:synopsis> |
| | | <adm:tag name="security"/> |
| | | <adm:tag name="security" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-access-control-handler</ldap:name> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="access-log-publisher" |
| | | plural-name="access-log-publishers" |
| | | package="org.opends.server.admin.std" |
| | | extends="log-publisher" |
| | | abstract="true" |
| | | package="org.opends.server.admin.std" extends="log-publisher" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for distributing access log messages from the access logger |
| | | to a destination. |
| | | are responsible for distributing access log messages from the access |
| | | logger to a destination. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-access-log-publisher</ldap:name> |
| | | <ldap:superior>ds-cfg-log-publisher</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="suppress-internal-operations"> |
| | | <adm:property name="suppress-internal-operations" advanced="true"> |
| | | <adm:synopsis> |
| | | Omit access messages generated by internal operations. |
| | | Except for Synchronization operations that are controlled |
| | | by the ds-cfg-suppress-synchronization-operations property. |
| | | Suppress access messages generated by internal operations. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="suppress-synchronization-operations"> |
| | | <adm:property name="suppress-synchronization-operations" |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Omit access messages generated by synchronization operations. |
| | | Suppress access messages generated by synchronization operations. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-suppress-synchronization-operations</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-suppress-synchronization-operations |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="account-status-notification-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="account-status-notification-handler" |
| | | plural-name="account-status-notification-handlers" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | > |
| | | |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | is invoked whenever certain types of events occur that could change |
| | |
| | | <adm:user-friendly-name /> |
| | | may be used to notify the user and/or administrators of the change. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="user-management"/> |
| | | |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-account-status-notification-handler</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="alert-handler" plural-name="alert-handlers" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | are used to notify administrators of significant problems or notable events |
| | | that occur in the Directory Server. |
| | | are used to notify administrators of significant problems or notable |
| | | events that occur in the Directory Server. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-alert-handler</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="enabled-alert-type" mandatory="false" multi-valued="true"> |
| | | <adm:property name="enabled-alert-type" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the alert types that are enabled for this alert |
| | | handler. If there are any values for this attribute, then only alerts |
| | | with one of the specified types will be allowed (unless they are also |
| | | included in the disabled alert types). If there are no values for this |
| | | attribute, then any alerts with a type not included in the list of |
| | | disabled alert types will be allowed. |
| | | Specifies the names of the alert types that are enabled for this |
| | | alert handler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If there are any values for this attribute, then only alerts with |
| | | one of the specified types will be allowed (unless they are also |
| | | included in the disabled alert types). If there are no values for |
| | | this attribute, then any alerts with a type not included in the |
| | | list of disabled alert types will be allowed. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | All alerts with types not included in the set of disabled alert types |
| | | will be allowed. |
| | | All alerts with types not included in the set of disabled |
| | | alert types will be allowed. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="disabled-alert-type" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="disabled-alert-type" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the alert types that are disabled for this alert |
| | | handler. If there are any values for this attribute, then no alerts with |
| | | any of the specified types will be allowed. If there are no values for |
| | | this attribute, then only alerts with a type included in the set of |
| | | enabled alert types will be allowed, or if there are no values for the |
| | | enabled alert types option then all alert types will be allowed. |
| | | Specifies the names of the alert types that are disabled for this |
| | | alert handler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If there are any values for this attribute, then no alerts with |
| | | any of the specified types will be allowed. If there are no values |
| | | for this attribute, then only alerts with a type included in the |
| | | set of enabled alert types will be allowed, or if there are no |
| | | values for the enabled alert types option then all alert types |
| | | will be allowed. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If there is a set of enabled alert types, then only alerts with one of |
| | | those types will be allowed. Otherwise, all alerts will be allowed. |
| | | If there is a set of enabled alert types, then only alerts |
| | | with one of those types will be allowed. Otherwise, all alerts |
| | | will be allowed. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="anonymous-sasl-mechanism-handler" |
| | | plural-name="anonymous-sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" extends="sasl-mechanism-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to perform all processing related to SASL ANONYMOUS authentication. |
| | | is used to perform all processing related to SASL ANONYMOUS |
| | | authentication. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-anonymous-sasl-mechanism-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-sasl-mechanism-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="approximate-matching-rule" |
| | | plural-name="approximate-matching-rules" |
| | | package="org.opends.server.admin.std" extends="matching-rule" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="approximate-matching-rules" |
| | | package="org.opends.server.admin.std" extends="matching-rule" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define a set of rules for performing approximate matching operations against |
| | | assertion values. In many cases, approximate matching is based on a |
| | | "sounds like" operation. |
| | | define a set of rules for performing approximate matching operations |
| | | against assertion values. In many cases, approximate matching is |
| | | based on a "sounds like" operation. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-approximate-matching-rule</ldap:name> |
| | | <ldap:superior>ds-cfg-matching-rule</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="attribute-syntax" |
| | | plural-name="attribute-syntaxes" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="attribute-syntaxes" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define the type of data that may be stored in an attribute with that syntax. |
| | | A syntax is generally associated with a set of matching rules that indicate |
| | | how to perform matching operations against values of that syntax. |
| | | define the type of data that may be stored in an attribute with that |
| | | syntax. A syntax is generally associated with a set of matching |
| | | rules that indicate how to perform matching operations against |
| | | values of that syntax. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-attribute-syntax</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="attribute-type-description-attribute-syntax" |
| | | plural-name="attribute-type-description-attribute-syntaxes" |
| | | extends="attribute-syntax" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="attribute-type-description-attribute-syntaxes" |
| | | extends="attribute-syntax" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | describe the format of the directory schema attribute type definitions. |
| | | describe the format of the directory schema attribute type |
| | | definitions. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-attribute-type-description-attribute-syntax</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-attribute-type-description-attribute-syntax |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-attribute-syntax</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="strip-syntax-min-upper-bound" mandatory="false"> |
| | | <adm:property name="strip-syntax-min-upper-bound" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the suggested minimum upper bound appended |
| | | to an attribute's syntax OID in it's schema definition Attribute Type |
| | | Description is stripped off. When retrieving the server's schema, some APIs |
| | | (JNDI) fail in their syntax lookup methods because they don't parse this value |
| | | correctly. This configuration option allows the server to be configured to |
| | | provide schema definitions these APIs can parse correctly. |
| | | Indicate whether the suggested minimum upper bound appended to an |
| | | attribute's syntax OID in it's schema definition Attribute Type |
| | | Description is stripped off. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When retrieving the server's schema, some APIs (JNDI) fail in |
| | | their syntax lookup methods because they don't parse this value |
| | | correctly. This configuration option allows the server to be |
| | | configured to provide schema definitions these APIs can parse |
| | | correctly. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <ldap:superior>ds-cfg-password-validator</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="match-attribute" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="match-attribute" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the name(s) of the attribute(s) whose values should be |
| | | checked to determine whether they match the provided password. If |
| | | this is not provided, then all attributes in the user's entry will |
| | | be checked. |
| | | checked to determine whether they match the provided password. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If this is not provided, then all attributes in the user's entry |
| | | will be checked. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="backend" |
| | | plural-name="backends" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="backend" plural-name="backends" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name/> are responsible for providing access |
| | | to the underlying data presented by the server. The data may be stored |
| | | locally (e.g., in an embedded database), remotely (e.g., in an |
| | | external system), or generated on the fly (e.g., calculated from other |
| | | information that is available). |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for providing access to the underlying data |
| | | presented by the server. |
| | | </adm:synopsis> |
| | | <adm:tag name="database"/> |
| | | <adm:description> |
| | | The data may be stored locally (e.g., in an embedded database), |
| | | remotely (e.g., in an external system), or generated on the fly |
| | | (e.g., calculated from other information that is available). |
| | | </adm:description> |
| | | <adm:tag name="database" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-backend</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property name="enabled" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the backend is enabled for use in the server. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If a backend is not enabled, then its contents will not be accessible |
| | | when processing operations. |
| | | If a backend is not enabled, then its contents will not be |
| | | accessible when processing operations. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="java-class" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | | backend implementation. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The specified class must be a subclass of the |
| | | org.opends.server.api.Backend superclass. The backend must be disabled |
| | | and re-enabled for changes to the handler class to take effect. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:java-class> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="backend-id" mandatory="true" read-only="true" |
| | | multi-valued="false"> |
| | | <adm:property name="backend-id" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | Provides a name that will be used to identify the associated |
| | | backend. |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="writability-mode" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="writability-mode" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the behavior that the backend should use when processing write |
| | | operations. |
| | | Specifies the behavior that the backend should use when processing |
| | | write operations. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A value of "enabled" will allow write operations to be |
| | | performed in that backend (if the requested operation is valid, the user |
| | | has permission to perform the operation, the backend supports that type |
| | | of write operation, and the global writability mode property is also |
| | | enabled). A value of "disabled" will cause all write attempts to |
| | | fail, and a value of "internal-only" will cause external write attempts |
| | | to fail but will allow writes by replication and internal operations. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="enabled"> |
| | | <adm:synopsis> |
| | | Allows write operations to be performed in that backend. |
| | | Allows write operations to be performed in that backend (if |
| | | the requested operation is valid, the user has permission to |
| | | perform the operation, the backend supports that type of |
| | | write operation, and the global writability mode property is |
| | | also enabled). |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="disabled"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="base-dn" |
| | | mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:property name="base-dn" mandatory="true" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the base DN(s) for the data that the backend will handle. |
| | | Specifies the base DN(s) for the data that the backend will |
| | | handle. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A single backend may be responsible for one or more base DNs. Note |
| | | that no two backends may have the same base DN, although one backend |
| | | may have a base DN that is below a base DN provided by another |
| | | backend (similar to the use of sub-suffixes in the Sun Java System |
| | | Directory Server). Note that if any of the base DNs is subordinate |
| | | to a base DN for another backend, then all base DNs for that backend |
| | | must be subordinate to that same base DN. |
| | | A single backend may be responsible for one or more base DNs. Note |
| | | that no two backends may have the same base DN, although one |
| | | backend may have a base DN that is below a base DN provided by |
| | | another backend (similar to the use of sub-suffixes in the Sun |
| | | Java System Directory Server). Note that if any of the base DNs is |
| | | subordinate to a base DN for another backend, then all base DNs |
| | | for that backend must be subordinate to that same base DN. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No administrative action is required by default, although some action |
| | | may be required on a per-backend basis before the new base DN may |
| | | be used. |
| | | No administrative action is required by default, although some |
| | | action may be required on a per-backend basis before the new |
| | | base DN may be used. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:dn /> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="backup-backend" plural-name="backup-backends" |
| | | package="org.opends.server.admin.std" |
| | | extends="backend" |
| | | package="org.opends.server.admin.std" extends="backend" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The backup backend provides read-only access to the set of backups that |
| | | are available for the OpenDS Directory Server. |
| | | The backup backend provides read-only access to the set of backups |
| | | that are available for the OpenDS Directory Server. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The backup backend is provided as a convenience feature that makes it |
| | | easier to determine what backups are available to be restored if necessary. |
| | | The org.opends.server.backends.BackupBackend class provides the |
| | | implementation for this backend. |
| | | The backup backend is provided as a convenience feature that makes |
| | | it easier to determine what backups are available to be restored if |
| | | necessary. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-backend</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.backends.BackupBackend |
| | | </adm:value> |
| | | <adm:value>org.opends.server.backends.BackupBackend</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="backup-directory" |
| | | mandatory="true" |
| | | <adm:property-override name="writability-mode" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>disabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="backup-directory" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the path to a backup directory containing one or more backups |
| | | for a particular backend. It may be either an absolute path or one that |
| | | is relative to the base of the OpenDS Directory Server installation. |
| | | Specifies the path to a backup directory containing one or more |
| | | backups for a particular backend. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This is a multivalued attribute, and each value may specify a different |
| | | backup directory if desired (e.g., one for each backend for which backups |
| | | are taken). |
| | | This is a multivalued property, and each value may specify a |
| | | different backup directory if desired (e.g., one for each backend |
| | | for which backups are taken). Values may be either absolute paths |
| | | or paths that are relative to the base of the OpenDS Directory |
| | | Server installation. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="base64-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="base64-password-storage-scheme" |
| | | plural-name="base64-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using the BASE64 encoding mechanism. This implementation contains |
| | | only an implementation for the user password syntax, with a storage scheme |
| | | name of "BASE64". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using the BASE64 |
| | | encoding mechanism. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "BASE64". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-base64-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="blind-trust-manager-provider" |
| | | plural-name="blind-trust-manager-providers" |
| | | package="org.opends.server.admin.std" extends="trust-manager-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for blindly trusting any certificate presented to it |
| | | without performing any kind of validation, including ignoring the validity |
| | | dates included within the certificate. |
| | | provides a mechanism for blindly trusting any certificate presented |
| | | to it without performing any kind of validation, including ignoring |
| | | the validity dates included within the certificate. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-blind-trust-manager-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-trust-manager-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="blowfish-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="blowfish-password-storage-scheme" |
| | | plural-name="blowfish-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using the Blowfish reversible encryption mechanism. This |
| | | implementation contains only an implementation for the user password syntax, |
| | | with a storage scheme name of "BLOWFISH". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using the Blowfish |
| | | reversible encryption mechanism. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "BLOWFISH". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-blowfish-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="cancel-extended-operation-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="cancel-extended-operation-handler" |
| | | plural-name="cancel-extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | extends="extended-operation-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides support for the LDAP cancel extended |
| | | operation as defined in RFC 3909. It allows clients to cancel operations |
| | | initiated from earlier requests, and will ensure that both the cancel |
| | | request and the operation being canceled will receive response messages. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides support for the LDAP cancel extended operation as defined |
| | | in RFC 3909. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | It allows clients to cancel operations initiated from earlier |
| | | requests, and will ensure that both the cancel request and the |
| | | operation being canceled will receive response messages. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-cancel-extended-operation-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-extended-operation-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for establishing a mapping between a client |
| | | certificate and the entry for the user that corresponds to that |
| | | certificate. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="security"/> |
| | | <adm:tag name="user-management"/> |
| | | |
| | | <adm:tag name="security" /> |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-certificate-mapper</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="character-set-password-validator" |
| | | plural-name="character-set-password-validators" |
| | | package="org.opends.server.admin.std" extends="password-validator" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="character-set-password-validators" |
| | | package="org.opends.server.admin.std" extends="password-validator" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to determine whether a proposed password is acceptable by |
| | | determining whether it contains a sufficient number of characters from one |
| | | or more user-defined character sets (e.g., passwords must have at least |
| | | one lowercase letter, one uppercase letter, one digit, and one symbol). |
| | | determining whether it contains a sufficient number of characters |
| | | from one or more user-defined character sets (e.g., passwords must |
| | | have at least one lowercase letter, one uppercase letter, one digit, |
| | | and one symbol). |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-password-validator</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="character-set" mandatory="true" multi-valued="true"> |
| | | <adm:property name="character-set" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies a character set containing characters that a password may |
| | | contain and a value indicating the minimum number of characters required |
| | | from that set. The value must be an integer (indicating the minimum |
| | | required characters from the set) followed by a colon and the characters |
| | | to include in that set (e.g., "3:abcdefghijklmnopqrstuvwxyz" indicates |
| | | that a user password must contain at least three characters from the set |
| | | of lowercase ASCII letters). Multiple character sets may be defined in |
| | | separate values, although no character may appear in more than one |
| | | character set. |
| | | Specifies a character set containing characters that a password |
| | | may contain and a value indicating the minimum number of |
| | | characters required from that set. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Each value must be an integer (indicating the minimum required |
| | | characters from the set) followed by a colon and the characters to |
| | | include in that set (e.g., "3:abcdefghijklmnopqrstuvwxyz" |
| | | indicates that a user password must contain at least three |
| | | characters from the set of lowercase ASCII letters). Multiple |
| | | character sets may be defined in separate values, although no |
| | | character may appear in more than one character set. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string case-insensitive="false" /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allow-unclassified-characters" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether this password validator allows passwords to contain |
| | | characters outside of any of the user-defined character sets. If this is |
| | | "false", then only those characters in the user-defined character sets |
| | | may be used in passwords. |
| | | Indicates whether this password validator allows passwords to |
| | | contain characters outside of any of the user-defined character |
| | | sets. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If this is "false", then only those characters in the user-defined |
| | | character sets may be used in passwords. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="clear-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="clear-password-storage-scheme" |
| | | plural-name="clear-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for storing user |
| | | passwords in clear text, without any form of obfuscation. This |
| | | implementation contains only an implementation for the user password syntax, |
| | | with a storage scheme name of "CLEAR". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for storing user passwords in clear text, |
| | | without any form of obfuscation. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "CLEAR". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-clear-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="client-connection-monitor-provider" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="client-connection-monitor-provider" |
| | | plural-name="client-connection-monitor-providers" |
| | | package="org.opends.server.admin.std" |
| | | extends="monitor-provider" |
| | | package="org.opends.server.admin.std" extends="monitor-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> exposes monitor information about the set of |
| | | client connections that are established to the Directory Server. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | exposes monitor information about the set of client connections that |
| | | are established to the Directory Server. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-client-connection-monitor-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-monitor-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="config-file-handler-backend" |
| | | plural-name="config-file-handler-backends" |
| | | package="org.opends.server.admin.std" |
| | | extends="backend" |
| | | package="org.opends.server.admin.std" extends="backend" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The config file handler backend provides the ability for clients to |
| | | access the server configuration over protocol, allowing both read and write |
| | | operations (although modify DN operations are not supported for entries in |
| | | the server configuration). |
| | | access the server configuration over protocol, allowing both read |
| | | and write operations (although modify DN operations are not |
| | | supported for entries in the server configuration). |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-config-file-handler-backend</ldap:name> |
| | | <ldap:superior>ds-cfg-backend</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="writability-mode" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>enabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="connection-handler" |
| | | plural-name="connection-handlers" |
| | | package="org.opends.server.admin.std" abstract="true" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for handling all interaction with the clients, |
| | | including accepting the connections, reading requests, and sending |
| | | responses. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-connection-handler</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true" advanced="true"> |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | | <adm:user-friendly-name /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allowed-client" multi-valued="true"> |
| | | <adm:synopsis> |
| | | This property specifies a set of address masks that may be used to |
| | | determine the addresses of the clients that are allowed to |
| | | establish connections to this connection handler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Changes to this configuration attribute will take effect |
| | | immediately but will not interfere with connections that may |
| | | already be established. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | Changes to this configuration attribute will take effect |
| | | immediately but will not interfere with connections that may |
| | | already be established. |
| | | </adm:synopsis> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | All clients with addresses that do not match an address on the |
| | | deny list will be allowed. If there is no deny list, then all clients |
| | | will be allowed. |
| | | deny list will be allowed. If there is no deny list, then all |
| | | clients will be allowed. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="denied-client" multi-valued="true"> |
| | | <adm:synopsis> |
| | | This property specifies a set of address masks that may be used to |
| | |
| | | connection matches one or more masks in both lists, then the |
| | | connection will be denied. If only a denied list is specified, |
| | | then any client not matching a mask in that list will be allowed. |
| | | Changes to this configuration attribute will take effect |
| | | immediately but will not interfere with connections that may |
| | | already be established. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | Changes to this configuration attribute will take effect |
| | | immediately but will not interfere with connections that may |
| | | already be established. |
| | | </adm:synopsis> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If an allow list is specified, then only clients with addresses on the |
| | | allow list will be allowed. Otherwise, all clients will be allowed. |
| | | If an allow list is specified, then only clients with |
| | | addresses on the allow list will be allowed. Otherwise, all |
| | | clients will be allowed. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="cram-md5-sasl-mechanism-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="cram-md5-sasl-mechanism-handler" |
| | | plural-name="cram-md5-sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" extends="sasl-mechanism-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to perform all processing related to SASL CRAM-MD5 authentication. |
| | | is used to perform all processing related to SASL CRAM-MD5 |
| | | authentication. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-sasl-mechanism-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:property-override> |
| | | <adm:property name="identity-mapper" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the name of the identity mapper that |
| | | should be used to match the client authentication ID to a user entry. |
| | | Specifies the name of the identity mapper that should be used to |
| | | match the client authentication ID to a user entry. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:aggregation relation-name="identity-mapper" |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="crypt-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="crypt-password-storage-scheme" |
| | | plural-name="crypt-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using the UNIX crypt algorithm. This implementation contains |
| | | only an implementation for the user password syntax, with a storage scheme |
| | | name of "CRYPT". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using the UNIX |
| | | crypt algorithm. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This implementation contains only an implementation for the user |
| | | password syntax, with a storage scheme name of "CRYPT". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-crypt-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="crypto-manager" |
| | | plural-name="crypto-managers" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="crypto-manager" plural-name="crypto-managers" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides hashing, encryption and other kinds of cryptographic operations. |
| | | It also contains methods for compressing and decompressing data. |
| | | provides a common interface for performing compression, |
| | | decompression, hashing, encryption and other kinds of cryptographic |
| | | operations. |
| | | </adm:synopsis> |
| | | <adm:tag name="security"/> |
| | | <adm:tag name="security" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-crypto-manager</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property name="digest-algorithm" multi-valued="false" advanced="false"> |
| | | <adm:property name="digest-algorithm" advanced="true"> |
| | | <adm:synopsis> |
| | | The preferred message digest algorithm for the Directory Server. |
| | | </adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="mac-algorithm" multi-valued="false" advanced="false"> |
| | | <adm:property name="mac-algorithm" advanced="true"> |
| | | <adm:synopsis> |
| | | The preferred MAC algorithm for the Directory Server. |
| | | </adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="mac-key-length" multi-valued="false" advanced="false"> |
| | | <adm:property name="mac-key-length" advanced="true"> |
| | | <adm:synopsis> |
| | | The preferred key length in bits for the preferred MAC algorithm. |
| | | </adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="cipher-transformation" multi-valued="false" advanced="false"> |
| | | <adm:property name="cipher-transformation" advanced="true"> |
| | | <adm:synopsis> |
| | | The preferred cipher for the Directory Server, to be specified using the |
| | | syntax algorithm/mode/padding. The full transformation is required: |
| | | specifying only an algorithm and allowing the cipher provider to supply |
| | | the default mode and padding is not supported, because there is no |
| | | guarantee these default values will be the same among different |
| | | implementations. Some cipher algorithms, including RC4 and ARCFOUR, do not |
| | | have a mode or padding, and hence must be specified using NONE for the |
| | | The preferred cipher for the Directory Server, to be specified |
| | | using the syntax algorithm/mode/padding. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The full transformation is required: specifying only an algorithm |
| | | and allowing the cipher provider to supply the default mode and |
| | | padding is not supported, because there is no guarantee these |
| | | default values will be the same among different implementations. |
| | | Some cipher algorithms, including RC4 and ARCFOUR, do not have a |
| | | mode or padding, and hence must be specified using NONE for the |
| | | mode field and NoPadding for the padding field. For example, |
| | | RC4/NONE/NoPadding. |
| | | </adm:synopsis> |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="cipher-key-length" multi-valued="false" advanced="false"> |
| | | <adm:property name="cipher-key-length" advanced="true"> |
| | | <adm:synopsis> |
| | | The preferred key length in bits for the preferred cipher. |
| | | </adm:synopsis> |
| | |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | Uses the default set of SSL protocols provided by the server's JVM. |
| | | Uses the default set of SSL protocols provided by the server's |
| | | JVM. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="ssl-encryption" multi-valued="false"> |
| | | <adm:property name="ssl-encryption"> |
| | | <adm:synopsis> |
| | | Specifies whether SSL/TLS is used to provide encrypted communication |
| | | between two OpenDS server components. |
| | | Specifies whether SSL/TLS is used to provide encrypted |
| | | communication between two OpenDS server components. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </adm:property> |
| | | <adm:property-reference name="ssl-cert-nickname" /> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="debug-log-publisher" |
| | | plural-name="debug-log-publishers" |
| | | package="org.opends.server.admin.std" extends="log-publisher" |
| | | abstract="true" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | xmlns:cli="http://www.opends.org/admin-cli"> |
| | | |
| | | plural-name="debug-log-publishers" |
| | | package="org.opends.server.admin.std" extends="log-publisher" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | xmlns:cli="http://www.opends.org/admin-cli"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for distributing debug log messages from the debug |
| | | logger to a destination. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-debug-log-publisher</ldap:name> |
| | | <ldap:superior>ds-cfg-log-publisher</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:relation name="debug-target"> |
| | | <adm:one-to-many naming-property="debug-scope"/> |
| | | <adm:one-to-many naming-property="debug-scope" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence>cn=Debug Targets</ldap:rdn-sequence> |
| | | </adm:profile> |
| | |
| | | </cli:relation> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-debug-level" mandatory="true"> |
| | | <adm:synopsis> |
| | | The lowest severity level of debug messages to log when none of |
| | | the defined targets match the message. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>error</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="disabled"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-debug-category" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The debug message categories to be logged when none of the |
| | | defined targets match the message. |
| | | The debug message categories to be logged when none of the defined |
| | | targets match the message. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | Messages with any category will be logged if they have a sufficient |
| | | debug level. |
| | | Messages with any category will be logged if they have a |
| | | sufficient debug level. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-omit-method-entry-arguments"> |
| | | <adm:synopsis> |
| | | Property to indicate whether to include method arguments in debug |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-omit-method-return-value"> |
| | | <adm:synopsis> |
| | | Property to indicate whether to include the return value in debug |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-include-throwable-cause"> |
| | | <adm:synopsis> |
| | | Property to indicate whether to include the cause of exceptions in |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-throwable-stack-frames"> |
| | | <adm:synopsis> |
| | | Property to indicate the number of stack frames to include in the |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="debug-target" |
| | | plural-name="debug-targets" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="debug-target" plural-name="debug-targets" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define the types of messages logged by the debug logPublisher. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="logging"/> |
| | | |
| | | <adm:tag name="logging" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-debug-target</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="debug-scope" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified OpenDS Java package, class, or method affected by |
| | | the settings in this target definition. Use the number character (#) to |
| | | separate the class name and the method name. |
| | | (ie. org.opends.server.core.DirectoryServer#startUp) |
| | | The fully-qualified OpenDS Java package, class, or method affected |
| | | by the settings in this target definition. Use the number |
| | | character (#) to separate the class name and the method name. (ie. |
| | | org.opends.server.core.DirectoryServer#startUp) |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:string> |
| | |
| | | </adm:regex> |
| | | <adm:usage>JAVA_NAME</adm:usage> |
| | | <adm:synopsis> |
| | | A fully-qualified OpenDS Java package, class, or method name. |
| | | A fully-qualified OpenDS Java package, class, or method |
| | | name. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name> |
| | | ds-cfg-debug-scope |
| | | </ldap:name> |
| | | <ldap:name>ds-cfg-debug-scope</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="debug-level" mandatory="true"> |
| | | <adm:synopsis> |
| | | The lowest severity level of debug messages to log. |
| | |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="disabled"> |
| | | <adm:synopsis> |
| | | No messages will be logged. |
| | | </adm:synopsis> |
| | | <adm:synopsis>No messages will be logged.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="error"> |
| | | <adm:synopsis> |
| | | Messages with severity level of ERROR or higher will be logged. |
| | | Messages with severity level of ERROR or higher will be |
| | | logged. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="warning"> |
| | | <adm:synopsis> |
| | | Messages with severity level of WARNING or higher will be logged. |
| | | Messages with severity level of WARNING or higher will be |
| | | logged. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="info"> |
| | | <adm:synopsis> |
| | | Messages with severity level of INFO or higher will be logged. |
| | | Messages with severity level of INFO or higher will be |
| | | logged. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="verbose"> |
| | | <adm:synopsis> |
| | | Messages with severity level of VERBOSE or higher will be logged. |
| | | Messages with severity level of VERBOSE or higher will be |
| | | logged. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="all"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="debug-category" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The debug message categories to be logged. |
| | |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | Messages with any category will be logged if they have a sufficient |
| | | debug level. |
| | | Messages with any category will be logged if they have a |
| | | sufficient debug level. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="caught"> |
| | | <adm:synopsis> |
| | | Exception caught. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Exception caught.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="constructor"> |
| | | <adm:synopsis> |
| | | Constructor entry. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Constructor entry.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="data"> |
| | | <adm:synopsis> |
| | | Raw data dump. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Raw data dump.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="database-access"> |
| | | <adm:synopsis> |
| | | Access to a backend database. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Access to a backend database.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="enter"> |
| | | <adm:synopsis> |
| | | Method entry. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Method entry.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="exit"> |
| | | <adm:synopsis> |
| | | Method exit. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Method exit.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="message"> |
| | | <adm:synopsis> |
| | | Arbitrary debug message. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Arbitrary debug message.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="protocol"> |
| | | <adm:synopsis> |
| | | Protocol element dump. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Protocol element dump.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="thrown"> |
| | | <adm:synopsis> |
| | | Exception throw from method. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Exception throw from method.</adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="omit-method-entry-arguments"> |
| | | <adm:synopsis> |
| | | Property to indicate whether to include method arguments in debug |
| | |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="omit-method-return-value"> |
| | | <adm:synopsis> |
| | | Property to indicate whether to include the return value in debug |
| | |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="include-throwable-cause"> |
| | | <adm:synopsis> |
| | | Property to indicate whether to include the cause of exceptions in |
| | |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="throwable-stack-frames"> |
| | | <adm:synopsis> |
| | | Property to indicate the number of stack frames to include in the stack |
| | | trace for method entry and exception thrown messages. |
| | | Property to indicate the number of stack frames to include in the |
| | | stack trace for method entry and exception thrown messages. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 0 |
| | | </adm:value> |
| | | <adm:value>0</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="dictionary-password-validator" |
| | | plural-name="dictionary-password-validators" |
| | | package="org.opends.server.admin.std" extends="password-validator" |
| | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to determine whether a proposed password is acceptable based on |
| | | whether the given password value appears in a provided dictionary file. |
| | | is used to determine whether a proposed password is acceptable based |
| | | on whether the given password value appears in a provided dictionary |
| | | file. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-password-validator</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="dictionary-file" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the path to the file containing a list of words that may not be |
| | | used as passwords. It should be formatted with one word per line. The |
| | | value may be an absolute path, or a path that is relative to the |
| | | Specifies the path to the file containing a list of words that may |
| | | not be used as passwords. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | It should be formatted with one word per line. The value may be an |
| | | absolute path, or a path that is relative to the |
| | | <adm:product-name /> |
| | | instance root. |
| | | </adm:synopsis> |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="case-sensitive-validation" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether this password validator should treat password characters |
| | | in a case-sensitive manner. |
| | | Indicates whether this password validator should treat password |
| | | characters in a case-sensitive manner. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether this password validator should treat password characters |
| | | in a case-sensitive manner. A value of false indicates that any |
| | | differences in capitalization should be ignored when looking for |
| | | consecutive characters in the password. A value of true indicates that |
| | | a character should only be considered repeating if all consecutive |
| | | occurrences use the same capitalization. |
| | | A value of false indicates that any differences in capitalization |
| | | should be ignored when looking for consecutive characters in the |
| | | password. A value of true indicates that a character should only |
| | | be considered repeating if all consecutive occurrences use the |
| | | same capitalization. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="test-reversed-password" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether this password validator should test the reversed value |
| | | of the provided password as well as the order in which it was given. |
| | | Indicates whether this password validator should test the reversed |
| | | value of the provided password as well as the order in which it |
| | | was given. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="digest-md5-sasl-mechanism-handler" |
| | | plural-name="digest-md5-sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" extends="sasl-mechanism-handler" |
| | |
| | | <ldap:superior>ds-cfg-sasl-mechanism-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="realm" mandatory="false"> |
| | | <adm:property name="realm"> |
| | | <adm:synopsis> |
| | | The realm that should be used for DIGEST-MD5 authentication. |
| | | Specifies the realm that should be used by the server for |
| | | DIGEST-MD5 authentication. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the realm that should be used by the server for DIGEST-MD5 |
| | | authentication. If this is not provided, then the server will default |
| | | to using a set of realm names that correspond to the defined suffixes. |
| | | Changes to this configuration attribute will take effect immediately. |
| | | If this is not provided, then the server will default to using a |
| | | set of realm names that correspond to the defined suffixes. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The server will default to a set of realm names that correspond to the |
| | | defined suffixes. |
| | | The server will default to a set of realm names that |
| | | correspond to the defined suffixes. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="server-fqdn" mandatory="false"> |
| | | <adm:property name="server-fqdn"> |
| | | <adm:synopsis> |
| | | Specifies the fully-qualified domain name for the system. This is the |
| | | value expected to be present in the host field of the digest-uri-value |
| | | element. |
| | | Specifies the DNS-resolvable fully-qualified domain name for the |
| | | system. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the DNS-resolvable fully-qualified domain name for the system. |
| | | If this is not provided, then the server will attempt to determine this |
| | | dynamically. Changes to this configuration attribute will take effect |
| | | immediately. |
| | | This is the value expected to be present in the host field of the |
| | | digest-uri-value element. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The server will attempt to dynamically determine the fully-qualified |
| | | domain name. |
| | | The server will attempt to dynamically determine the |
| | | fully-qualified domain name. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="directory-string-attribute-syntax" |
| | | plural-name="directory-string-attribute-syntaxes" |
| | | extends="attribute-syntax" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="directory-string-attribute-syntaxes" |
| | | extends="attribute-syntax" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define an attribute syntax for storing arbitrary string (and sometimes |
| | | binary) data. |
| | | define an attribute syntax for storing arbitrary string (and |
| | | sometimes binary) data. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-directory-string-attribute-syntax</ldap:name> |
| | | <ldap:superior>ds-cfg-attribute-syntax</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="allow-zero-length-values" mandatory="false"> |
| | | <adm:property name="allow-zero-length-values" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicate whether zero-length (i.e., empty string) values will be allowed. |
| | | This is technically not allowed by the revised LDAPv3 specification, but |
| | | some environments may require it for backward compatibility with servers |
| | | that did allow it. |
| | | Indicate whether zero-length (i.e., empty string) values will be |
| | | allowed. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This is technically not allowed by the revised LDAPv3 |
| | | specification, but some environments may require it for backward |
| | | compatibility with servers that did allow it. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="dsee-compat-access-control-handler" |
| | | plural-name="dseecompat-access-control-handlers" |
| | | package="org.opends.server.admin.std" extends="access-control-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is the provider class for the dseecompat ACI. |
| | | provides a Sun Java System Directory Server Enterprise Edition |
| | | compatible access control implementation. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-dsee-compat-access-control-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-access-control-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="global-aci" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Defines a global access control rule, which will always be interpreted for |
| | | any entry anywhere in the server (although it may be overridden by more |
| | | specific access control rules placed in the data). |
| | | </adm:synopsis> |
| | | <adm:property name="global-aci" multi-valued="true"> |
| | | <adm:synopsis>Defines global access control rules.</adm:synopsis> |
| | | <adm:description> |
| | | Global access control rules apply to all entries anywhere in the |
| | | data managed by the Directory Server. The global access control |
| | | rules may be overridden by more specific access control rules |
| | | placed in the data. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | No global ACIs will be defined, which means that no access will be |
| | | allowed for any data in the server unless granted by access control |
| | | rules in the user data. |
| | | No global access control rules will be defined, which means |
| | | that no access will be allowed for any data in the server |
| | | unless specifically granted by access control rules in the |
| | | data. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="dynamic-group-implementation" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="dynamic-group-implementation" |
| | | plural-name="dynamic-group-implementations" |
| | | package="org.opends.server.admin.std" |
| | | extends="group-implementation" |
| | | package="org.opends.server.admin.std" extends="group-implementation" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a grouping mechanism in which the |
| | | group membership is determined based on criteria defined in one or more |
| | | LDAP URLs. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a grouping mechanism in which the group membership is |
| | | determined based on criteria defined in one or more LDAP URLs. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-dynamic-group-implementation</ldap:name> |
| | | <ldap:superior>ds-cfg-group-implementation</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.extensions.DynamicGroup |
| | | </adm:value> |
| | | <adm:value>org.opends.server.extensions.DynamicGroup</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="entry-cache" |
| | | plural-name="entry-caches" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="entry-cache" plural-name="entry-caches" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | > |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | defines a Directory Server entry cache. |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for caching entries which are likely to be accessed |
| | | by client applications in order to improve Directory Server |
| | | performance. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="database"/> |
| | | |
| | | <adm:tag name="database" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-entry-cache</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="entry-cache-monitor-provider" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="entry-cache-monitor-provider" |
| | | plural-name="entry-cache-monitor-providers" |
| | | package="org.opends.server.admin.std" |
| | | extends="monitor-provider" |
| | | package="org.opends.server.admin.std" extends="monitor-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> exposes monitor information about |
| | | Directory Server entry cache state. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | exposes monitor information about Directory Server entry cache |
| | | state. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-entry-cache-monitor-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-monitor-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="entry-dn-virtual-attribute" |
| | | plural-name="entry-dn-virtual-attributes" |
| | | package="org.opends.server.admin.std" extends="virtual-attribute" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to generate the entryDN operational attribute, which contains a |
| | | normalized form of the entry's DN. This provides the ability to use search |
| | | filters containing the entry's DN. |
| | | may be used to generate the entryDN operational attribute, which |
| | | contains a normalized form of the entry's DN. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This provides the ability to use search filters containing the |
| | | entry's DN. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-entry-dn-virtual-attribute</ldap:name> |
| | | <ldap:superior>ds-cfg-virtual-attribute</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:property-override name="conflict-behavior" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | virtual-overrides-real |
| | | </adm:value> |
| | | <adm:value>virtual-overrides-real</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="attribute-type"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>entryDN</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="entry-uuid-plugin" |
| | | plural-name="entry-uuid-plugins" |
| | | package="org.opends.server.admin.std" extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | plural-name="entry-uuid-plugins" package="org.opends.server.admin.std" |
| | | extends="plugin" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to generate values for the entryUUID operational attribute whenever |
| | | an entry is added via protocol or imported from LDIF. |
| | | is used to generate values for the entryUUID operational attribute |
| | | whenever an entry is added via protocol or imported from LDIF. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-entry-uuid-plugin</ldap:name> |
| | | <ldap:superior>ds-cfg-plugin</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.plugins.EntryUUIDPlugin |
| | | </adm:value> |
| | | <adm:value>org.opends.server.plugins.EntryUUIDPlugin</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="plugin-type"> |
| | | <adm:property-override name="plugin-type" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>ldifimport</adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="entry-uuid-virtual-attribute" |
| | | plural-name="entry-uuid-virtual-attributes" |
| | | package="org.opends.server.admin.std" extends="virtual-attribute" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to ensure that all entries contained in private backends |
| | | will have values for the entryUUID operational attribute. The entryUUID |
| | | values will be generated based on a normalized representation of the entry's |
| | | DN, which should not cause a consistency problem because we do not allow |
| | | modify DN operations to be performed in private backends. |
| | | will have values for the entryUUID operational attribute. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | The entryUUID values will be generated based on a normalized |
| | | representation of the entry's DN, which should not cause a |
| | | consistency problem because we do not allow modify DN operations to |
| | | be performed in private backends. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-entry-uuid-virtual-attribute</ldap:name> |
| | | <ldap:superior>ds-cfg-virtual-attribute</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:property-override name="conflict-behavior" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | real-overrides-virtual |
| | | </adm:value> |
| | | <adm:value>real-overrides-virtual</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="attribute-type"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>entryUUID</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="equality-matching-rule" |
| | | plural-name="equality-matching-rules" |
| | | package="org.opends.server.admin.std" extends="matching-rule" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="equality-matching-rules" |
| | | package="org.opends.server.admin.std" extends="matching-rule" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define a set of rules for performing equality matching operations against |
| | | assertion values (i.e., to determine whether an attribute value equals an |
| | | assertion value). |
| | | define a set of rules for performing equality matching operations |
| | | against assertion values (i.e., to determine whether an attribute |
| | | value equals an assertion value). |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-equality-matching-rule</ldap:name> |
| | | <ldap:superior>ds-cfg-matching-rule</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | </ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | <adm:property name="account-status-notification-type" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | is a possible event type that can trigger an account status |
| | | Indicates which types of event can trigger an account status |
| | | notification. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="error-log-publisher" |
| | | plural-name="error-log-publishers" |
| | | package="org.opends.server.admin.std" |
| | | extends="log-publisher" |
| | | abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | plural-name="error-log-publishers" |
| | | package="org.opends.server.admin.std" extends="log-publisher" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for distributing error log messages from the error logger to |
| | | a destination. |
| | | are responsible for distributing error log messages from the error |
| | | logger to a destination. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-error-log-publisher</ldap:name> |
| | | <ldap:superior>ds-cfg-log-publisher</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-severity" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Property to specify the default severity levels for the logger. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | Severities fatal-error, severe-warning, and severe-error will |
| | | be used for the logger. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | <adm:defined> |
| | | <adm:value>fatal-error</adm:value> |
| | | <adm:value>severe-warning</adm:value> |
| | | <adm:value>severe-error</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | |
| | | </adm:value> |
| | | <adm:value name="none"> |
| | | <adm:synopsis> |
| | | No messages of any severity will be logged by default. |
| | | This value is intended to be used in conjunction with |
| | | the override-severity property to define an error |
| | | logger that will publish no error message beside the errors |
| | | of a given category. |
| | | No messages of any severity will be logged by default. This |
| | | value is intended to be used in conjunction with the |
| | | override-severity property to define an error logger that |
| | | will publish no error message beside the errors of a given |
| | | category. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="fatal-error"> |
| | | <adm:synopsis> |
| | | The error log severity that will be used for messages that |
| | | provide information about fatal errors which may force the server |
| | | to shut down or operate in a significantly degraded state. |
| | | provide information about fatal errors which may force the |
| | | server to shut down or operate in a significantly degraded |
| | | state. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="info"> |
| | | <adm:synopsis> |
| | | The error log severity that will be used for messages that |
| | | provide information about significant events within the server |
| | | that are not warnings or errors. |
| | | provide information about significant events within the |
| | | server that are not warnings or errors. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="mild-error"> |
| | | <adm:synopsis> |
| | | The error log severity that will be used for messages that |
| | | provide information about mild (recoverable) errors encountered |
| | | during processing. |
| | | provide information about mild (recoverable) errors |
| | | encountered during processing. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="mild-warning"> |
| | |
| | | </adm:value> |
| | | <adm:value name="notice"> |
| | | <adm:synopsis> |
| | | The error log severity that will be used for the most important |
| | | informational messages (i.e., information that should almost |
| | | always be logged but is not associated with a warning or error |
| | | condition). |
| | | The error log severity that will be used for the most |
| | | important informational messages (i.e., information that |
| | | should almost always be logged but is not associated with a |
| | | warning or error condition). |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="severe-error"> |
| | |
| | | <adm:value name="debug"> |
| | | <adm:synopsis> |
| | | The error log severity that will be used for messages that |
| | | provide debugging information triggered during |
| | | processing. |
| | | provide debugging information triggered during processing. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="override-severity" multi-valued="true"> |
| | | <adm:TODO> |
| | | This should be split into per-category properties whose value |
| | | defaults to the default-severity. See issue 2503. |
| | | </adm:TODO> |
| | | <adm:synopsis> |
| | | Property to specify the override severity levels for the logger |
| | | based on the category of the messages. Each override severity |
| | | level should include the category and the severity levels to log |
| | | for that category. (i.e., core=mild-error,info,mild-warning). Valid |
| | | categories are: core, extensions, protocol, config, log, util, schema, |
| | | plugin, jeb, backend, tools, task, access-control, admin, sync, version, |
| | | quicksetup, admin-tool, dsconfig, user-defined. Valid severities are: |
| | | all, fatal-error, info, mild-error, mild-warning, notice, severe-error, |
| | | severe-warning, debug. |
| | | based on the category of the messages. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Each override severity level should include the category and the |
| | | severity levels to log for that category. (i.e., |
| | | core=mild-error,info,mild-warning). Valid categories are: core, |
| | | extensions, protocol, config, log, util, schema, plugin, jeb, |
| | | backend, tools, task, access-control, admin, sync, version, |
| | | quicksetup, admin-tool, dsconfig, user-defined. Valid severities |
| | | are: all, fatal-error, info, mild-error, mild-warning, notice, |
| | | severe-error, severe-warning, debug. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="exact-match-identity-mapper" |
| | | plural-name="exact-match-identity-mappers" |
| | | package="org.opends.server.admin.std" extends="identity-mapper" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | maps an identifier string to user entries by searching for the entry |
| | | containing a specified attribute whose value is the provided identifier. |
| | | containing a specified attribute whose value is the provided |
| | | identifier. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-exact-match-identity-mapper</ldap:name> |
| | | <ldap:superior>ds-cfg-identity-mapper</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="match-attribute" mandatory="true" multi-valued="true"> |
| | | <adm:property name="match-attribute" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the attribute to use to perform the mapping. |
| | | Specifies the attribute whose value should exactly match the ID |
| | | string provided to this identity mapper. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the name or OID of the attribute whose value should exactly |
| | | match the ID string provided to this identity mapper. At least one |
| | | value must be provided. All values must refer to the name or OID of an |
| | | attribute type defined in the Directory Server schema. If multiple |
| | | attribute type names or OIDs are provided, then at least one of those |
| | | attributes must contain the provided ID string value in exactly one |
| | | entry. |
| | | At least one value must be provided. All values must refer to the |
| | | name or OID of an attribute type defined in the Directory Server |
| | | schema. If multiple attribute type names or OIDs are provided, |
| | | then at least one of those attributes must contain the provided ID |
| | | string value in exactly one entry. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:attribute-type /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="match-base-dn" mandatory="false" multi-valued="true"> |
| | | <adm:property name="match-base-dn" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the set of base DNs below which to search for users. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the base DN(s) that should be used when performing searches to |
| | | map the provided ID string to a user entry. If no values are provided, |
| | | then the server will search below all public naming contexts. |
| | | The base DNs will be used when performing searches to map the |
| | | provided ID string to a user entry. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="extended-operation-handler" |
| | | plural-name="extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="extended-operation-handler" |
| | | plural-name="extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for all processing of different types of extended |
| | | operations in the server. |
| | | </adm:synopsis> |
| | | <adm:tag name="core"/> |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-extended-operation-handler</ldap:name> |
| | |
| | | <adm:synopsis> |
| | | Indicates whether the |
| | | <adm:user-friendly-name /> |
| | | is enabled for use (i.e. whether the types of extended operations that |
| | | it defines will be allowed in the server). Changes to this property |
| | | will take effect immediately. |
| | | is enabled for use (i.e. whether the types of extended operations |
| | | that it defines will be allowed in the server). |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="external-sasl-mechanism-handler" |
| | | plural-name="external-sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" extends="sasl-mechanism-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to perform all processing related to SASL EXTERNAL authentication. |
| | | is used to perform all processing related to SASL EXTERNAL |
| | | authentication. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-external-sasl-mechanism-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-sasl-mechanism-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="certificate-validation-policy" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether to attempt to validate the peer certificate against a |
| | | value held in the user's entry. |
| | | Indicates whether to attempt to validate the peer certificate |
| | | against a certificate held in the user's entry. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether the SASL EXTERNAL mechanism handler should attempt to |
| | | validate the peer certificate against a certificate in the corresponding |
| | | user's entry. The value must be one of "true" (which will always |
| | | attempt to validate the certificate and will fail if no certificates are |
| | | present), "false" (which will never attempt to validate the peer |
| | | certificate), and "ifpresent" (which will validate the peer certificate |
| | | if there are one or more certificates in the user's entry, but will not |
| | | fail if there are no certificates in the entry. Changes to this |
| | | configuration attribute will take effect immediately. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="always"> |
| | | <adm:synopsis> |
| | | Always require the peer certificate to be present in the user's |
| | | entry. |
| | | Always require the peer certificate to be present in the |
| | | user's entry. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="ifpresent"> |
| | | <adm:synopsis> |
| | | If the user's entry contains one or more certificates, require that |
| | | one of them match the peer certificate. |
| | | If the user's entry contains one or more certificates, |
| | | require that one of them match the peer certificate. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="never"> |
| | | <adm:synopsis> |
| | | Do not look for the peer certificate to be present in the user's |
| | | entry. |
| | | Do not look for the peer certificate to be present in the |
| | | user's entry. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="certificate-attribute" mandatory="false"> |
| | | <adm:property name="certificate-attribute"> |
| | | <adm:synopsis> |
| | | Specifies the attribute that should hold user certificates. |
| | | Specifies the name of the attribute that should hold user |
| | | certificates. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the name of the attribute that will be used to hold the |
| | | certificate information in user entries for the purpose of validation. |
| | | This must specify the name of a valid attribute type defined in the |
| | | server schema. Changes to this configuration attribute will take effect |
| | | immediately. |
| | | This must specify the name of a valid attribute type defined in |
| | | the server schema. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="certificate-mapper" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the name of the certificate mapper that should be used |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="fifo-entry-cache" |
| | | plural-name="fifo-entry-caches" |
| | | package="org.opends.server.admin.std" |
| | | extends="entry-cache" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | > |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="fifo-entry-cache" |
| | | plural-name="fifo-entry-caches" package="org.opends.server.admin.std" |
| | | extends="entry-cache" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | defines a Directory Server entry cache that uses a FIFO to keep |
| | | track of the entries. Entries that have been in the cache the longest are |
| | | the most likely candidates for purging if space is needed. In contrast to |
| | | other cache structures, the selection of entries to purge is not based on |
| | | how frequently or recently the entries have been accessed. This requires |
| | | significantly less locking (it will only be required when an entry is added |
| | | or removed from the cache, rather than each time an entry is accessed). |
| | | |
| | | Cache sizing is based on the percentage of free memory within the JVM, such |
| | | that if enough memory is free, then adding an entry to the cache will not |
| | | require purging, but if more than a specified percentage of the available |
| | | memory within the JVM is already consumed, then one or more entries will need |
| | | to be removed in order to make room for a new entry. It is also possible to |
| | | configure a maximum number of entries for the cache. If this is specified, |
| | | then the number of entries will not be allowed to exceed this value, but it |
| | | may not be possible to hold this many entries if the available memory fills |
| | | up first. |
| | | |
| | | Other configurable parameters for this cache include the maximum length of |
| | | time to block while waiting to acquire a lock, and a set of filters that may |
| | | be used to define criteria for determining which entries are stored in the |
| | | cache. If a filter list is provided, then only entries matching at least |
| | | one of the given filters will be stored in the cache. |
| | | <adm:user-friendly-plural-name /> |
| | | use a FIFO queue to keep track of the cached entries. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | Entries that have been in the cache the longest are the most likely |
| | | candidates for purging if space is needed. In contrast to other |
| | | cache structures, the selection of entries to purge is not based on |
| | | how frequently or recently the entries have been accessed. This |
| | | requires significantly less locking (it will only be required when |
| | | an entry is added or removed from the cache, rather than each time |
| | | an entry is accessed). Cache sizing is based on the percentage of |
| | | free memory within the JVM, such that if enough memory is free, then |
| | | adding an entry to the cache will not require purging, but if more |
| | | than a specified percentage of the available memory within the JVM |
| | | is already consumed, then one or more entries will need to be |
| | | removed in order to make room for a new entry. It is also possible |
| | | to configure a maximum number of entries for the cache. If this is |
| | | specified, then the number of entries will not be allowed to exceed |
| | | this value, but it may not be possible to hold this many entries if |
| | | the available memory fills up first. Other configurable parameters |
| | | for this cache include the maximum length of time to block while |
| | | waiting to acquire a lock, and a set of filters that may be used to |
| | | define criteria for determining which entries are stored in the |
| | | cache. If a filter list is provided, then only entries matching at |
| | | least one of the given filters will be stored in the cache. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-fifo-entry-cache</ldap:name> |
| | | <ldap:superior>ds-cfg-entry-cache</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="lock-timeout" mandatory="false"> |
| | | <adm:property name="lock-timeout" advanced="true"> |
| | | <adm:synopsis> |
| | | The length of time in milliseconds to wait while |
| | | attempting to acquire a read or write lock. |
| | | The length of time to wait while attempting to acquire a read or |
| | | write lock. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" lower-limit="0" allow-unlimited="true"/> |
| | | <adm:duration base-unit="ms" lower-limit="0" |
| | | allow-unlimited="true" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="max-memory-percent" mandatory="false"> |
| | | <adm:property name="max-memory-percent"> |
| | | <adm:synopsis> |
| | | The maximum memory usage for the entry cache as a percentage |
| | | of the total JVM memory. |
| | | The maximum memory usage for the entry cache as a percentage of |
| | | the total JVM memory. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" upper-limit="100"/> |
| | | <adm:integer lower-limit="1" upper-limit="100" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="max-entries" mandatory="false"> |
| | | <adm:property name="max-entries"> |
| | | <adm:synopsis> |
| | | The maximum number of entries that we will allow in the cache. |
| | | </adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property-reference name="include-filter" /> |
| | | <adm:property-reference name="exclude-filter" /> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-based-access-log-publisher" |
| | | plural-name="file-based-access-log-publishers" |
| | | package="org.opends.server.admin.std" extends="access-log-publisher" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | publish access messages to the file system. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-based-access-log-publisher</ldap:name> |
| | | <ldap:superior>ds-cfg-access-log-publisher</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="asynchronous" mandatory="true"> |
| | | <adm:property name="asynchronous" mandatory="true" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | | <adm:user-friendly-name /> |
| | | will publish records asynchronously. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="queue-size"> |
| | | <adm:property name="queue-size" advanced="true"> |
| | | <adm:synopsis> |
| | | The maximum number of log records that can be stored in the |
| | | asynchronous queue. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5000 |
| | | </adm:value> |
| | | <adm:value>5000</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="log-file" mandatory="true"> |
| | | <adm:synopsis> |
| | | The file name to use for the log files generated by the |
| | | <adm:user-friendly-name />. The path to the file is relative to the server |
| | | root. |
| | | <adm:user-friendly-name /> |
| | | . The path to the file is relative to the server root. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="log-file-permissions" mandatory="true"> |
| | | <adm:synopsis> |
| | | The UNIX permissions of the log files created by this |
| | | <adm:user-friendly-name />. |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>640</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex> |
| | | ^([0-7][0-7][0-7])$ |
| | | </adm:regex> |
| | | <adm:regex>^([0-7][0-7][0-7])$</adm:regex> |
| | | <adm:usage>MODE</adm:usage> |
| | | <adm:synopsis> |
| | | An valid UNIX mode string. The mode string must contain three |
| | | digits between zero and seven. |
| | | An valid UNIX mode string. The mode string must contain |
| | | three digits between zero and seven. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="time-interval"> |
| | | <adm:property name="time-interval" advanced="true"> |
| | | <adm:synopsis> |
| | | This property specifies the interval to check whether |
| | | the log files need to be rotated. |
| | | Specifies the interval to check whether the log files need to be |
| | | rotated. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5s |
| | | </adm:value> |
| | | <adm:value>5s</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" lower-limit="1"/> |
| | | <adm:duration base-unit="ms" lower-limit="1" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="buffer-size"> |
| | | <adm:synopsis> |
| | | This property specifies the log file buffer size. |
| | | </adm:synopsis> |
| | | <adm:property name="buffer-size" advanced="true"> |
| | | <adm:synopsis>Specifies the log file buffer size.</adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 64kb |
| | | </adm:value> |
| | | <adm:value>64kb</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="auto-flush"> |
| | | <adm:property name="auto-flush" advanced="true"> |
| | | <adm:synopsis> |
| | | This property specifies whether to flush the writer after every log |
| | | record. If the asynchronous writes option is used, the writer will |
| | | be flushed after all the log records in the queue are written. |
| | | Specifies whether to flush the writer after every log record. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If the asynchronous writes option is used, the writer will be |
| | | flushed after all the log records in the queue are written. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="append"> |
| | | <adm:synopsis> |
| | | This property specifies whether to append to existing log files. |
| | | Specifies whether to append to existing log files. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="rotation-policy" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The rotation policy to use for the <adm:user-friendly-name />. When |
| | | multiple policies are used, rotation will occur if any policy's conditions |
| | | are met. |
| | | The rotation policy to use for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When multiple policies are used, rotation will occur if any |
| | | policy's conditions are met. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="retention-policy" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The retention policy to use for the <adm:user-friendly-name />. When |
| | | multiple policies are used, log files will be cleaned when any of the |
| | | policy's conditions are met |
| | | The retention policy to use for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When multiple policies are used, log files will be cleaned when |
| | | any of the policy's conditions are met. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | No retention policy is used and log files will never be cleaned. |
| | | No retention policy is used and log files will never be |
| | | cleaned. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-based-debug-log-publisher" |
| | | plural-name="file-based-debug-log-publishers" |
| | | package="org.opends.server.admin.std" extends="debug-log-publisher" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | publish debug messages to the file system. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-based-debug-log-publisher</ldap:name> |
| | | <ldap:superior>ds-cfg-debug-log-publisher</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="asynchronous" mandatory="true"> |
| | | <adm:property name="asynchronous" mandatory="true" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | | <adm:user-friendly-name /> |
| | | will publish records asynchronously. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="queue-size"> |
| | | <adm:property name="queue-size" advanced="true"> |
| | | <adm:synopsis> |
| | | The maximum number of log records that can be stored in the |
| | | asynchronous queue. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5000 |
| | | </adm:value> |
| | | <adm:value>5000</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="log-file" mandatory="true"> |
| | | <adm:synopsis> |
| | | The file name to use for the log files generated by the |
| | | <adm:user-friendly-name />. The path to the file is relative to the server |
| | | root. |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The path to the file is relative to the server root. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="log-file-permissions" mandatory="true"> |
| | | <adm:synopsis> |
| | | The UNIX permissions of the log files created by this |
| | | <adm:user-friendly-name />. |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>640</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex> |
| | | ^([0-7][0-7][0-7])$ |
| | | </adm:regex> |
| | | <adm:regex>^([0-7][0-7][0-7])$</adm:regex> |
| | | <adm:usage>MODE</adm:usage> |
| | | <adm:synopsis> |
| | | An valid UNIX mode string. The mode string must contain three |
| | | digits between zero and seven. |
| | | An valid UNIX mode string. The mode string must contain |
| | | three digits between zero and seven. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="time-interval"> |
| | | <adm:property name="time-interval" advanced="true"> |
| | | <adm:synopsis> |
| | | This property specifies the interval to check whether |
| | | the log files need to be rotated. |
| | | Specifies the interval to check whether the log files need to be |
| | | rotated. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5s |
| | | </adm:value> |
| | | <adm:value>5s</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" lower-limit="1"/> |
| | | <adm:duration base-unit="ms" lower-limit="1" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="buffer-size"> |
| | | <adm:synopsis> |
| | | This property specifies the log file buffer size. |
| | | </adm:synopsis> |
| | | <adm:property name="buffer-size" advanced="true"> |
| | | <adm:synopsis>Specifies the log file buffer size.</adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 64kb |
| | | </adm:value> |
| | | <adm:value>64kb</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="auto-flush"> |
| | | <adm:property name="auto-flush" advanced="true"> |
| | | <adm:synopsis> |
| | | This property specifies whether to flush the writer after every log |
| | | record. If the asynchronous writes option is used, the writer will |
| | | be flushed after all the log records in the queue are written. |
| | | Specifies whether to flush the writer after every log record. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If the asynchronous writes option is used, the writer will be |
| | | flushed after all the log records in the queue are written. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="append"> |
| | | <adm:synopsis> |
| | | This property specifies whether to append to existing log files. |
| | | Specifies whether to append to existing log files. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="rotation-policy" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The rotation policy to use for the <adm:user-friendly-name />. When |
| | | multiple policies are used, rotation will occur if any policy's conditions |
| | | are met. |
| | | The rotation policy to use for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When multiple policies are used, rotation will occur if any |
| | | policy's conditions are met. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="retention-policy" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The retention policy to use for the <adm:user-friendly-name />. When |
| | | multiple policies are used, log files will be cleaned when any of the |
| | | policy's conditions are met |
| | | The retention policy to use for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When multiple policies are used, log files will be cleaned when |
| | | any of the policy's conditions are met. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | No retention policy is used and log files will never be cleaned. |
| | | No retention policy is used and log files will never be |
| | | cleaned. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-based-error-log-publisher" |
| | | plural-name="file-based-error-log-publishers" |
| | | package="org.opends.server.admin.std" extends="error-log-publisher" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | publish error messages to the file system. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-based-error-log-publisher</ldap:name> |
| | | <ldap:superior>ds-cfg-error-log-publisher</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="asynchronous" mandatory="true"> |
| | | <adm:property name="asynchronous" mandatory="true" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | | <adm:user-friendly-name /> |
| | | will publish records asynchronously. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="queue-size"> |
| | | <adm:property name="queue-size" advanced="true"> |
| | | <adm:synopsis> |
| | | The maximum number of log records that can be stored in the |
| | | asynchronous queue. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5000 |
| | | </adm:value> |
| | | <adm:value>5000</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="log-file" mandatory="true"> |
| | | <adm:synopsis> |
| | | The file name to use for the log files generated by the |
| | | <adm:user-friendly-name />. The path to the file is relative to the server |
| | | root. |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The path to the file is relative to the server root. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | |
| | | <adm:property name="log-file-permissions" mandatory="true"> |
| | | <adm:synopsis> |
| | | The UNIX permissions of the log files created by this |
| | | <adm:user-friendly-name />. |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>640</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex> |
| | | ^([0-7][0-7][0-7])$ |
| | | </adm:regex> |
| | | <adm:regex>^([0-7][0-7][0-7])$</adm:regex> |
| | | <adm:usage>MODE</adm:usage> |
| | | <adm:synopsis> |
| | | An valid UNIX mode string. The mode string must contain three |
| | | digits between zero and seven. |
| | | An valid UNIX mode string. The mode string must contain |
| | | three digits between zero and seven. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="time-interval"> |
| | | <adm:property name="time-interval" advanced="true"> |
| | | <adm:synopsis> |
| | | This property specifies the interval to check whether |
| | | the log files need to be rotated. |
| | | Specifies the interval to check whether the log files need to be |
| | | rotated. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5s |
| | | </adm:value> |
| | | <adm:value>5s</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" lower-limit="1"/> |
| | | <adm:duration base-unit="ms" lower-limit="1" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="buffer-size"> |
| | | <adm:synopsis> |
| | | This property specifies the log file buffer size. |
| | | </adm:synopsis> |
| | | <adm:property name="buffer-size" advanced="true"> |
| | | <adm:synopsis>Specifies the log file buffer size.</adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 64kb |
| | | </adm:value> |
| | | <adm:value>64kb</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="auto-flush"> |
| | | <adm:property name="auto-flush" advanced="true"> |
| | | <adm:synopsis> |
| | | This property specifies whether to flush the writer after every log |
| | | record. If the asynchronous writes option is used, the writer will |
| | | be flushed after all the log records in the queue are written. |
| | | Specifies whether to flush the writer after every log record. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If the asynchronous writes option is used, the writer will be |
| | | flushed after all the log records in the queue are written. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="append"> |
| | | <adm:synopsis> |
| | | This property specifies whether to append to existing log files. |
| | | Specifies whether to append to existing log files. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="rotation-policy" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The rotation policy to use for the <adm:user-friendly-name />. When |
| | | multiple policies are used, rotation will occur if any policy's conditions |
| | | are met. |
| | | The rotation policy to use for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When multiple policies are used, rotation will occur if any |
| | | policy's conditions are met. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="retention-policy" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The retention policy to use for the <adm:user-friendly-name />. When |
| | | multiple policies are used, log files will be cleaned when any of the |
| | | policy's conditions are met |
| | | The retention policy to use for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When multiple policies are used, log files will be cleaned when |
| | | any of the policy's conditions are met. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | No retention policy is used and log files will never be cleaned. |
| | | No retention policy is used and log files will never be |
| | | cleaned. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-based-key-manager-provider" |
| | | plural-name="file-based-key-manager-providers" |
| | | package="org.opends.server.admin.std" extends="key-manager-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:TODO> |
| | | The key manager must be able to get a pin from somewhere. It looks |
| | | in property, then an environment variable, then a file, and finally |
| | | in a configuration attribute. At least one must be present. Can we |
| | | express this ordering and this "at least one" constraint? Perhaps |
| | | support a "one-of" element which can be used to group a set of |
| | | properties. |
| | | </adm:TODO> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provider accesses key information in a file on the local filesystem. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Multiple file formats may be supported, depending on the providers |
| | | supported by the underlying Java runtime. |
| | | </adm:synopsis> |
| | | </adm:description> |
| | | <adm:constraint> |
| | | <adm:synopsis> |
| | | The key store pin must be specified using one of the key-store-pin |
| | | properties when the |
| | | <adm:user-friendly-name /> |
| | | is enabled. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="enabled" value="true" /> |
| | | <adm:or> |
| | | <adm:is-present property="key-store-pin-property" /> |
| | | <adm:is-present property="key-store-pin-environment-variable" /> |
| | | <adm:is-present property="key-store-pin-file" /> |
| | | <adm:is-present property="key-store-pin" /> |
| | | </adm:or> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-based-key-manager-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-key-manager-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-based-trust-manager-provider" |
| | | plural-name="file-based-trust-manager-providers" |
| | | package="org.opends.server.admin.std" extends="trust-manager-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:TODO> |
| | | Some trust managers may require access to a PIN. In such cases, it will |
| | | look in property, then an environment variable, then a file, and finally |
| | | in a configuration attribute. At least one must be present. Can we |
| | | express this ordering and this "at least one" constraint? Perhaps |
| | | support a "one-of" element which can be used to group a set of |
| | | properties. |
| | | </adm:TODO> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provider accesses key information in a file on the local filesystem. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Multiple file formats may be supported, depending on the providers |
| | | supported by the underlying Java runtime. |
| | | </adm:synopsis> |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-based-trust-manager-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-trust-manager-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | <adm:property name="trust-store-file" mandatory="true"> |
| | | <adm:TODO>Should use a file-based property definition?</adm:TODO> |
| | | <adm:synopsis> |
| | | Specifies the path to the file containing the trust |
| | | information. It may be an absolute path, or a path that is |
| | | relative to the |
| | | Specifies the path to the file containing the trust information. |
| | | It may be an absolute path, or a path that is relative to the |
| | | <adm:product-name /> |
| | | instance root. |
| | | </adm:synopsis> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="file-count-log-retention-policy" |
| | | plural-name="file-count-log-retention-policies" |
| | | package="org.opends.server.admin.std" |
| | | extends="log-retention-policy" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-count-log-retention-policy" |
| | | plural-name="file-count-log-retention-policies" |
| | | package="org.opends.server.admin.std" extends="log-retention-policy" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | Retention policy based on the number of rotated log files on disk. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-count-log-retention-policy</ldap:name> |
| | | <ldap:superior>ds-cfg-log-retention-policy</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="number-of-files" mandatory="true"> |
| | | <adm:synopsis> |
| | | Number of log files to retain before the oldest ones will be cleaned. |
| | | Number of log files to retain before the oldest ones will be |
| | | cleaned. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" /> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="file-system-entry-cache" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="file-system-entry-cache" |
| | | plural-name="file-system-entry-caches" |
| | | package="org.opends.server.admin.std" |
| | | extends="entry-cache" |
| | | package="org.opends.server.admin.std" extends="entry-cache" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | > |
| | | |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name/> is an entry cache implementation which uses |
| | | a JE database to keep track of the entries. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is an entry cache implementation which uses a JE database to keep |
| | | track of the entries. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | For the best performance the JE database should reside in a memory based |
| | | file system, although any file system will do for this cache to function. |
| | | Entries are maintained either by FIFO (default) or LRU (configurable) |
| | | based list implementation. |
| | | |
| | | Cache sizing is based on the size or percentage of free space available in |
| | | the file system, such that if enough memory is free, then adding an entry |
| | | to the cache will not require purging, but if more than a specified |
| | | percentage of the file system available space is already consumed, then |
| | | one or more entries will need to be removed in order to make room for a |
| | | new entry. It is also possible to configure a maximum number of entries |
| | | for the cache. If this is specified, then the number of entries will not |
| | | be allowed to exceed this value, but it may not be possible to hold this |
| | | many entries if the available memory fills up first. |
| | | |
| | | Other configurable parameters for this cache include the maximum length of |
| | | time to block while waiting to acquire a lock, and a set of filters that |
| | | may be used to define criteria for determining which entries are stored in |
| | | the cache. If a set of filters are provided then an entry must match at |
| | | least one of them in order to be stored in the cache. |
| | | |
| | | JE environment cache size can also be configured either as percentage of |
| | | the free memory available in the JVM, or as an absolute size in bytes. |
| | | |
| | | This cache has a persistence property which, if enabled, allows for the |
| | | contents of the cache to persist across server or cache restarts. |
| | | For the best performance the JE database should reside in a memory |
| | | based file system, although any file system will do for this cache |
| | | to function. Entries are maintained either by FIFO (default) or LRU |
| | | (configurable) based list implementation. Cache sizing is based on |
| | | the size or percentage of free space available in the file system, |
| | | such that if enough memory is free, then adding an entry to the |
| | | cache will not require purging, but if more than a specified |
| | | percentage of the file system available space is already consumed, |
| | | then one or more entries will need to be removed in order to make |
| | | room for a new entry. It is also possible to configure a maximum |
| | | number of entries for the cache. If this is specified, then the |
| | | number of entries will not be allowed to exceed this value, but it |
| | | may not be possible to hold this many entries if the available |
| | | memory fills up first. Other configurable parameters for this cache |
| | | include the maximum length of time to block while waiting to acquire |
| | | a lock, and a set of filters that may be used to define criteria for |
| | | determining which entries are stored in the cache. If a set of |
| | | filters are provided then an entry must match at least one of them |
| | | in order to be stored in the cache. JE environment cache size can |
| | | also be configured either as percentage of the free memory available |
| | | in the JVM, or as an absolute size in bytes. This cache has a |
| | | persistence property which, if enabled, allows for the contents of |
| | | the cache to persist across server or cache restarts. |
| | | </adm:description> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-file-system-entry-cache</ldap:name> |
| | | <ldap:superior>ds-cfg-entry-cache</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="lock-timeout"> |
| | | <adm:property name="lock-timeout" advanced="true"> |
| | | <adm:synopsis> |
| | | The length of time in milliseconds to wait while |
| | | attempting to acquire a read or write lock. |
| | | The length of time to wait while attempting to acquire a read or |
| | | write lock. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" allow-unlimited="true"/> |
| | | <adm:duration base-unit="ms" allow-unlimited="true" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="max-memory-size"> |
| | | <adm:synopsis> |
| | | The maximum size of the entry cache in bytes. |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:size/> |
| | | <adm:size /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="max-entries"> |
| | | <adm:synopsis> |
| | | The maximum number of entries allowed in the cache. |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0"/> |
| | | <adm:integer lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="cache-type"> |
| | | <adm:synopsis> |
| | | Specifies the policy which should be used for purging entries from the |
| | | cache. FIFO by default and LRU as configurable. |
| | | Specifies the policy which should be used for purging entries from |
| | | the cache. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="fifo"> |
| | | <adm:synopsis> |
| | | FIFO based entry cache. |
| | | </adm:synopsis> |
| | | <adm:synopsis>FIFO based entry cache.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="lru"> |
| | | <adm:synopsis> |
| | | LRU based entry cache. |
| | | </adm:synopsis> |
| | | <adm:synopsis>LRU based entry cache.</adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="cache-directory"> |
| | | <adm:property name="cache-directory" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the directory in which the JE environment should store the |
| | | cache. |
| | | Specifies the directory in which the JE environment should store |
| | | the cache. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string/> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="persistent-cache"> |
| | | <adm:synopsis> |
| | | Specifies whether the cache should persist across restarts. |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean/> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="compact-encoding"> |
| | | <adm:synopsis> |
| | | Indicates whether the cache should use a compact form when encoding |
| | | cache entries by compressing the attribute descriptions and object |
| | | class sets. Note that compression does not preserve user-supplied |
| | | capitalization in the object class and attribute type names. |
| | | Indicates whether the cache should use a compact form when |
| | | encoding cache entries by compressing the attribute descriptions |
| | | and object class sets. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that compression does not preserve user-supplied |
| | | capitalization in the object class and attribute type names. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | Changing this property will only affect the encoding of the cache |
| | | entries put in the cache after the change is made. It will not be |
| | | retroactively applied to existing cache entries. |
| | | Changing this property will only affect the encoding of the |
| | | cache entries put in the cache after the change is made. It |
| | | will not be retroactively applied to existing cache entries. |
| | | </adm:synopsis> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean/> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="db-cache-percent"> |
| | | <adm:synopsis> |
| | | The maximum memory usage for the internal JE cache as a percentage |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" upper-limit="100"/> |
| | | <adm:integer lower-limit="0" upper-limit="100" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="db-cache-size"> |
| | | <adm:synopsis> |
| | | The maximum JVM memory usage in bytes for the internal JE cache. |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:size/> |
| | | <adm:size /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="je-property" |
| | | multi-valued="true"> |
| | | <adm:property name="je-property" multi-valued="true" |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the environment properties for the Berkeley DB Java |
| | | Edition database providing the backend for this entry cache. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Any Berkeley DB Java Edition property can be specified using the |
| | | following form: property-name=property-value |
| | | Refer to OpenDS documentation for further information on related |
| | | properties, their implications and range values. The definitive |
| | | identification of all the property parameters available in the |
| | | example.properties file of Berkeley DB Java Edition distribution. |
| | | following form: property-name=property-value Refer to OpenDS |
| | | documentation for further information on related properties, their |
| | | implications and range values. The definitive identification of |
| | | all the property parameters available in the example.properties |
| | | file of Berkeley DB Java Edition distribution. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property-reference name="include-filter"/> |
| | | <adm:property-reference name="exclude-filter"/> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-reference name="include-filter" /> |
| | | <adm:property-reference name="exclude-filter" /> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="fingerprint-certificate-mapper" |
| | | plural-name="fingerprint-certificate-mappers" |
| | | package="org.opends.server.admin.std" extends="certificate-mapper" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | maps client certificates to user entries by looking for the MD5 or SHA1 |
| | | fingerprint in a specified attribute of user entries. |
| | | maps client certificates to user entries by looking for the MD5 or |
| | | SHA1 fingerprint in a specified attribute of user entries. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-fingerprint-certificate-mapper</ldap:name> |
| | | <ldap:superior>ds-cfg-certificate-mapper</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="fingerprint-attribute" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the attribute in which to look for the fingerprint. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the name or OID of the attribute whose value should exactly |
| | | match the MD5 or SHA1 representation of the certificate fingerprint. |
| | | Values of the fingerprint attribute should exactly match the MD5 |
| | | or SHA1 representation of the certificate fingerprint. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:attribute-type /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="fingerprint-algorithm" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the certificate fingerprint algorithm. |
| | | Specifies the name of the digest algorithm which should be used to |
| | | compute the fingerprint of client certificates. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the name of the digest algorithm that should be used to |
| | | compute the fingerprint of client certificates. The value must be either |
| | | "MD5" or "SHA1". |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="md5"> |
| | | <adm:synopsis> |
| | | Use the MD5 digest algorithm to compute certificate fingerprints. |
| | | Use the MD5 digest algorithm to compute certificate |
| | | fingerprints. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="sha1"> |
| | | <adm:synopsis> |
| | | Use the SHA-1 digest algorithm to compute certificate fingerprints. |
| | | Use the SHA-1 digest algorithm to compute certificate |
| | | fingerprints. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="user-base-dn" mandatory="false" multi-valued="true"> |
| | | <adm:property name="user-base-dn" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the set of base DNs below which to search for users. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the base DN(s) that should be used when performing searches to |
| | | map the client certificate to a user entry. If no values are provided, |
| | | then the server will search below all public naming contexts. |
| | | The base DNs will be used when performing searches to map the |
| | | client certificates to a user entry. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The server will perform the search in all public naming contexts. |
| | | The server will perform the search in all public naming |
| | | contexts. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="fixed-time-log-rotation-policy" |
| | | plural-name="fixed-time-log-rotation-policies" |
| | | package="org.opends.server.admin.std" |
| | | extends="log-rotation-policy" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="fixed-time-log-rotation-policy" |
| | | plural-name="fixed-time-log-rotation-policies" |
| | | package="org.opends.server.admin.std" extends="log-rotation-policy" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | Rotation policy based on fixed time of day. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-fixed-time-log-rotation-policy</ldap:name> |
| | | <ldap:superior>ds-cfg-log-rotation-policy</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="time-of-day" multi-valued="true" mandatory="true"> |
| | | <adm:property name="time-of-day" multi-valued="true" |
| | | mandatory="true"> |
| | | <adm:synopsis> |
| | | The time of day which log rotation should occur. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex> |
| | | ^(([0-1][0-9])|([2][0-3]))([0-5][0-9])$ |
| | | </adm:regex> |
| | | <adm:regex>^(([0-1][0-9])|([2][0-3]))([0-5][0-9])$</adm:regex> |
| | | <adm:usage>HHmm</adm:usage> |
| | | <adm:synopsis> |
| | | 24 hour time of day in HHmm format. |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="free-disk-space-log-retention-policy" |
| | | plural-name="free-disk-space-log-retention-policies" |
| | | package="org.opends.server.admin.std" |
| | | extends="log-retention-policy" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="free-disk-space-log-retention-policy" |
| | | plural-name="free-disk-space-log-retention-policies" |
| | | package="org.opends.server.admin.std" extends="log-retention-policy" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | Retention policy based on the free disk space available. |
| | | This policy is only available on Java 6. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This policy is only available on Java 6. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-free-disk-space-log-retention-policy</ldap:name> |
| | | <ldap:superior>ds-cfg-log-retention-policy</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="free-disk-space" mandatory="true"> |
| | | <adm:synopsis> |
| | | The size of free disk space needed. |
| | | </adm:synopsis> |
| | | <adm:synopsis>The size of free disk space needed.</adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:size lower-limit="1" /> |
| | | </adm:syntax> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="gssapi-sasl-mechanism-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="gssapi-sasl-mechanism-handler" |
| | | plural-name="gssapi-sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" extends="sasl-mechanism-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to perform all processing related to SASL GSSAPI authentication |
| | | using Kerberos V5. |
| | | is used to perform all processing related to SASL GSSAPI |
| | | authentication using Kerberos V5. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-sasl-mechanism-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="realm" mandatory="false"> |
| | | <adm:property name="realm"> |
| | | <adm:synopsis> |
| | | Specifies the realm that should be used for GSSAPI authentication. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the realm that should be used by the server for GSSAPI |
| | | authentication. If this is not provided, then the server will attempt to |
| | | determine the realm from the Kerberos configuration of the underlying |
| | | system. Changes to this configuration attribute will take effect |
| | | immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The server will attempt to determine the realm from the underlying |
| | | system configuration. |
| | | The server will attempt to determine the realm from the |
| | | underlying system configuration. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="kdc-address" mandatory="false"> |
| | | <adm:property name="kdc-address"> |
| | | <adm:synopsis> |
| | | Specifies the address of the KDC that should be used for Kerberos |
| | | processing. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the address of the KDC that should be used for Kerberos |
| | | processing. If provided, this should be a fully-qualified DNS-resolvable |
| | | name. If this is not provided, then the server will attempt to determine |
| | | the KDC address from the Kerberos configuration of the underlying system. |
| | | Changes to this configuration attribute will take effect immediately. |
| | | If provided, this should be a fully-qualified DNS-resolvable name. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="keytab" mandatory="false"> |
| | | <adm:property name="keytab"> |
| | | <adm:synopsis> |
| | | Specifies the path to the keytab file that should be used for Kerberos |
| | | processing. |
| | | Specifies the path to the keytab file that should be used for |
| | | Kerberos processing. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the path to the keytab file that should be used for Kerberos |
| | | processing. If provided, this should be either an absolute path or one |
| | | that is relative to the server instance root. If this is not provided, |
| | | then the server will attempt to use the default keytab from the |
| | | underlying system configuration. Changes to this configuration attribute |
| | | will take effect immediately. |
| | | If provided, this should be either an absolute path or one that is |
| | | relative to the server instance root. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="server-fqdn" mandatory="false"> |
| | | <adm:property name="server-fqdn"> |
| | | <adm:synopsis> |
| | | Specifies the fully-qualified domain name for the system. |
| | | Specifies the DNS-resolvable fully-qualified domain name for the |
| | | system. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the DNS-resolvable fully-qualified domain name for the system. |
| | | If this is not provided, then the server will attempt to determine this |
| | | dynamically. Changes to this configuration attribute will take effect |
| | | immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The server will attempt to dynamically determine the fully-qualified |
| | | domain name. |
| | | The server will attempt to dynamically determine the |
| | | fully-qualified domain name. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="get-connection-id-extended-operation-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="get-connection-id-extended-operation-handler" |
| | | plural-name="get-connection-id-extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | extends="extended-operation-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for clients to obtain |
| | | the internal connection ID that the server uses to reference their client |
| | | connection. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for clients to obtain the internal connection |
| | | ID that the server uses to reference their client connection. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-get-connection-id-extended-operation-handler</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-get-connection-id-extended-operation-handler |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-extended-operation-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="get-symmetric-key-extended-operation-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="get-symmetric-key-extended-operation-handler" |
| | | plural-name="get-symmetric-key-extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | extends="extended-operation-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides support for the get symmetric key |
| | | extended operation, which is used by the OpenDS cryptographic framework for |
| | | creating and obtaining symmetric encryption keys. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides support for the get symmetric key extended operation, which |
| | | is used by the OpenDS cryptographic framework for creating and |
| | | obtaining symmetric encryption keys. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-get-symmetric-key-extended-operation-handler</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-get-symmetric-key-extended-operation-handler |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-extended-operation-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="global" plural-name="globals" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:user-friendly-name>Global Configuration</adm:user-friendly-name> |
| | | |
| | | <adm:user-friendly-plural-name> |
| | | Global Configurations |
| | | </adm:user-friendly-plural-name> |
| | | |
| | | <adm:synopsis> |
| | | The global configuration contains properties that affect the overall |
| | | operation of the |
| | | <adm:product-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-root-config</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="check-schema" mandatory="true"> |
| | | <adm:property name="check-schema" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether schema enforcement is active. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This property indicates whether the |
| | | <adm:product-name /> |
| | | should ensure that all operations result in entries that are valid |
| | | When schema enforcement is activate the Directory Server will |
| | | ensure that all operations result in entries that are valid |
| | | according to the defined server schema. It is strongly recommended |
| | | that this option be left enabled to prevent the inadvertent |
| | | addition of invalid data into the server. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-password-policy" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the name of the password policy that will be in effect |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="add-missing-rdn-attributes" mandatory="false"> |
| | | <adm:property name="add-missing-rdn-attributes" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should automatically add any |
| | | attribute values contained in the entry's RDN into that entry when |
| | | processing an add request. |
| | | Indicates whether the Directory Server should automatically add |
| | | any attribute values contained in the entry's RDN into that entry |
| | | when processing an add request. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allow-attribute-name-exceptions" mandatory="false"> |
| | | <adm:property name="allow-attribute-name-exceptions" |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should allow the use of underscores |
| | | in attribute names, and should allow attribute names to begin with |
| | | numeric digits (both of which are violations of the LDAP standards). |
| | | Indicates whether the Directory Server should allow the use of |
| | | underscores in attribute names, and should allow attribute names |
| | | to begin with numeric digits (both of which are violations of the |
| | | LDAP standards). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="invalid-attribute-syntax-behavior" mandatory="false"> |
| | | <adm:property name="invalid-attribute-syntax-behavior" |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies how the Directory Server should handle operations which would |
| | | result in an attribute value that violates the associated attribute |
| | | syntax. |
| | | Specifies how the Directory Server should handle operations which |
| | | would result in an attribute value that violates the associated |
| | | attribute syntax. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | reject |
| | | </adm:value> |
| | | <adm:value>reject</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="accept"> |
| | | <adm:synopsis> |
| | | The Directory Server will silently accept attribute values that are |
| | | invalid according to their associated syntax. Matching operations |
| | | targeting those values may not behave as expected. |
| | | The Directory Server will silently accept attribute values |
| | | that are invalid according to their associated syntax. |
| | | Matching operations targeting those values may not behave as |
| | | expected. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="reject"> |
| | | <adm:synopsis> |
| | | The Directory Server will reject attribute values that are invalid |
| | | according to their associated syntax. |
| | | The Directory Server will reject attribute values that are |
| | | invalid according to their associated syntax. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="warn"> |
| | | <adm:synopsis> |
| | | The Directory Server will accept attribute values that are invalid |
| | | according to their associated syntax, but will also log a warning |
| | | message to the error log. Matching operations targeting those |
| | | values may not behave as expected. |
| | | The Directory Server will accept attribute values that are |
| | | invalid according to their associated syntax, but will also |
| | | log a warning message to the error log. Matching operations |
| | | targeting those values may not behave as expected. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="server-error-result-code" mandatory="false"> |
| | | <adm:property name="server-error-result-code" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the numeric value of the result code that should be used for |
| | | cases in which request processing fails due to an internal server error. |
| | | Specifies the numeric value of the result code that should be used |
| | | for cases in which request processing fails due to an internal |
| | | server error. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 80 |
| | | </adm:value> |
| | | <adm:value>80</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="single-structural-objectclass-behavior" mandatory="false"> |
| | | <adm:property name="single-structural-objectclass-behavior" |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies how the Directory Server should handle operations which would |
| | | result in an entry without any structural object class, or that would |
| | | result in an entry containing multiple structural classes. |
| | | Specifies how the Directory Server should handle operations which |
| | | would result in an entry without any structural object class, or |
| | | that would result in an entry containing multiple structural |
| | | classes. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | reject |
| | | </adm:value> |
| | | <adm:value>reject</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="accept"> |
| | | <adm:synopsis> |
| | | The Directory Server will silently accept entries that do not |
| | | contain exactly one structural object class. Certain schema |
| | | features that depend on the entry's structural class may not behave |
| | | as expected. |
| | | The Directory Server will silently accept entries that do |
| | | not contain exactly one structural object class. Certain |
| | | schema features that depend on the entry's structural class |
| | | may not behave as expected. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="reject"> |
| | | <adm:synopsis> |
| | | The Directory Server will reject entries that do not contain exactly |
| | | one structural object class. |
| | | The Directory Server will reject entries that do not contain |
| | | exactly one structural object class. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="warn"> |
| | | <adm:synopsis> |
| | | The Directory Server will accept entries that do not contain exactly |
| | | one structural object class, but will also log a warning message to |
| | | the error log. Certain schema features that depend on the entry's |
| | | structural class may not behave |
| | | The Directory Server will accept entries that do not contain |
| | | exactly one structural object class, but will also log a |
| | | warning message to the error log. Certain schema features |
| | | that depend on the entry's structural class may not behave |
| | | as expected. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-single-structural-objectclass-behavior</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-single-structural-objectclass-behavior |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="notify-abandoned-operations" mandatory="false"> |
| | | <adm:property name="notify-abandoned-operations" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should send a response to any |
| | | operation that is interrupted via an abandon request. The LDAP |
| | | specification states that abandoned operations should not receive any |
| | | response, but this may cause problems with client applications that |
| | | always expect to receive a response to each request. |
| | | Indicates whether the Directory Server should send a response to |
| | | any operation that is interrupted via an abandon request. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The LDAP specification states that abandoned operations should not |
| | | receive any response, but this may cause problems with client |
| | | applications that always expect to receive a response to each |
| | | request. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="size-limit" mandatory="false"> |
| | | <adm:property name="size-limit"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of entries that the Directory Server should |
| | | return to the client in the course of processing a search operation. A |
| | | value of 0 indicates that no size limit will be enforced. Note that this |
| | | is the default server-wide limit, but it may be overridden on a per-user |
| | | basis using the ds-rlim-size-limit operational attribute. |
| | | Specifies the maximum number of entries that the Directory Server |
| | | should return to the client in the course of processing a search |
| | | operation. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A value of 0 indicates that no size limit will be enforced. Note |
| | | that this is the default server-wide limit, but it may be |
| | | overridden on a per-user basis using the ds-rlim-size-limit |
| | | operational attribute. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 1000 |
| | | </adm:value> |
| | | <adm:value>1000</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="time-limit" mandatory="false"> |
| | | <adm:property name="time-limit"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that the Directory Server should |
| | | spend processing a search operation. A value of 0 seconds indicates that |
| | | no time limit will be enforced. Note that this is the default server-wide |
| | | time limit, but it may be overridden on a per-user basis using the |
| | | ds-rlim-time-limit operational attribute. |
| | | Specifies the maximum length of time that the Directory Server |
| | | should spend processing a search operation. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A value of 0 seconds indicates that no time limit will be |
| | | enforced. Note that this is the default server-wide time limit, |
| | | but it may be overridden on a per-user basis using the |
| | | ds-rlim-time-limit operational attribute. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 60 seconds |
| | | </adm:value> |
| | | <adm:value>60 seconds</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="proxied-authorization-identity-mapper" |
| | | mandatory="true"> |
| | | <adm:synopsis> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-proxied-authorization-identity-mapper</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-proxied-authorization-identity-mapper |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="writability-mode" mandatory="false"> |
| | | <adm:property name="writability-mode"> |
| | | <adm:synopsis> |
| | | Specifies which kinds of write operations the Directory Server should |
| | | attempt to process. |
| | | Specifies which kinds of write operations the Directory Server |
| | | should attempt to process. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | enabled |
| | | </adm:value> |
| | | <adm:value>enabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="enabled"> |
| | | <adm:synopsis> |
| | | The Directory Server will attempt to process all write operations |
| | | that are requested of it, regardless of their origin. |
| | | The Directory Server will attempt to process all write |
| | | operations that are requested of it, regardless of their |
| | | origin. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="disabled"> |
| | | <adm:synopsis> |
| | | The Directory Server will reject all write operations that are |
| | | requested of it, regardless of their origin. |
| | | The Directory Server will reject all write operations that |
| | | are requested of it, regardless of their origin. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="internal-only"> |
| | | <adm:synopsis> |
| | | The Directory Server will attempt to process write operations |
| | | requested as internal operations or through synchronization, but |
| | | will reject any such operations requested from external clients. |
| | | The Directory Server will attempt to process write |
| | | operations requested as internal operations or through |
| | | synchronization, but will reject any such operations |
| | | requested from external clients. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="reject-unauthenticated-requests" mandatory="false"> |
| | | <adm:property name="reject-unauthenticated-requests"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should reject any request (other |
| | | than bind or StartTLS requests) received from a client that has not yet |
| | | authenticated, whose last authentication attempt was unsuccessful, or |
| | | whose last authentication attempt used anonymous authentication. |
| | | Indicates whether the Directory Server should reject any request |
| | | (other than bind or StartTLS requests) received from a client that |
| | | has not yet authenticated, whose last authentication attempt was |
| | | unsuccessful, or whose last authentication attempt used anonymous |
| | | authentication. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="bind-with-dn-requires-password" mandatory="false"> |
| | | <adm:property name="bind-with-dn-requires-password"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should reject any simple bind |
| | | request that contains a DN but no password. Although such bind requests |
| | | are technically allowed by the LDAPv3 specification (and should be treated |
| | | as anonymous simple authentication), they may introduce security problems |
| | | in applications that do not verify that the client actually provided a |
| | | password. |
| | | Indicates whether the Directory Server should reject any simple |
| | | bind request that contains a DN but no password. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Although such bind requests are technically allowed by the LDAPv3 |
| | | specification (and should be treated as anonymous simple |
| | | authentication), they may introduce security problems in |
| | | applications that do not verify that the client actually provided |
| | | a password. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="lookthrough-limit" mandatory="false"> |
| | | <adm:property name="lookthrough-limit"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of entries that the Directory Server should |
| | | "look through" in the course of processing a search request. This |
| | | includes any entry that the server must examine in the course of |
| | | processing the request, regardless of whether it actually matches the |
| | | search criteria. A value of 0 indicates that no lookthrough limit will |
| | | be enforced. Note that this is the default server-wide limit, but it may |
| | | be overridden on a per-user basis using the ds-rlim-lookthrough-limit |
| | | operational attribute. |
| | | Specifies the maximum number of entries that the Directory Server |
| | | should "look through" in the course of processing a search |
| | | request. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This includes any entry that the server must examine in the course |
| | | of processing the request, regardless of whether it actually |
| | | matches the search criteria. A value of 0 indicates that no |
| | | lookthrough limit will be enforced. Note that this is the default |
| | | server-wide limit, but it may be overridden on a per-user basis |
| | | using the ds-rlim-lookthrough-limit operational attribute. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 5000 |
| | | </adm:value> |
| | | <adm:value>5000</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="smtp-server" mandatory="false" multi-valued="true"> |
| | | <adm:property name="smtp-server" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the address (and optional port number) for a mail server that |
| | | can be used to send e-mail messages via SMTP. It may be an IP address or |
| | | resolvable hostname, optionally followed by a colon and a port number. |
| | | Specifies the address (and optional port number) for a mail server |
| | | that can be used to send e-mail messages via SMTP. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | It may be an IP address or resolvable hostname, optionally |
| | | followed by a colon and a port number. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If no values are defined, then it will not be possible to take |
| | | advantage of server features that may provide the ability to send |
| | | e-mail via SMTP. |
| | | advantage of server features that may provide the ability to |
| | | send e-mail via SMTP. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex>^.+(:[0-9]+)?$</adm:regex> |
| | | <adm:usage>HOST[:PORT]</adm:usage> |
| | | <adm:synopsis> |
| | | A hostname, optionally followed by a ":" followed by a port |
| | | number. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allowed-task" mandatory="false" multi-valued="true"> |
| | | <adm:property name="allowed-task" advanced="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the fully-qualified name of a Java class that may be invoked in |
| | | the server. Any attempt to invoke a task not included in the list of |
| | | allowed tasks will be rejected. |
| | | Specifies the fully-qualified name of a Java class that may be |
| | | invoked in the server. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Any attempt to invoke a task not included in the list of allowed |
| | | tasks will be rejected. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If no values are defined, then the server will not allow any tasks to |
| | | be invoked. |
| | | If no values are defined, then the server will not allow any |
| | | tasks to be invoked. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="disabled-privilege" mandatory="false" multi-valued="true"> |
| | | <adm:property name="disabled-privilege" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the name of a privilege that should not be evaluated by the |
| | | server. If a privilege is disabled, then it will be assumed that all |
| | | clients (including unauthenticated clients) will have that privilege. |
| | | Specifies the name of a privilege that should not be evaluated by |
| | | the server. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If a privilege is disabled, then it will be assumed that all |
| | | clients (including unauthenticated clients) will have that |
| | | privilege. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If no values are defined, then the server will enforce all privileges. |
| | | If no values are defined, then the server will enforce all |
| | | privileges. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | <adm:enumeration> |
| | | <adm:value name="bypass-acl"> |
| | | <adm:synopsis> |
| | | Allows the associated user to bypass access control checks performed |
| | | by the server. |
| | | Allows the associated user to bypass access control checks |
| | | performed by the server. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="modify-acl"> |
| | | <adm:synopsis> |
| | | Allows the associated user to modify the server's access control |
| | | configuration. |
| | | Allows the associated user to modify the server's access |
| | | control configuration. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="config-read"> |
| | |
| | | </adm:value> |
| | | <adm:value name="config-write"> |
| | | <adm:synopsis> |
| | | Allows the associated user to update the server configuration. The |
| | | config-read privilege is also required. |
| | | Allows the associated user to update the server |
| | | configuration. The config-read privilege is also required. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="jmx-read"> |
| | |
| | | </adm:value> |
| | | <adm:value name="ldif-import"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process LDIF import |
| | | tasks. |
| | | Allows the user to request that the server process LDIF |
| | | import tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="ldif-export"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process LDIF export |
| | | tasks. |
| | | Allows the user to request that the server process LDIF |
| | | export tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="backend-backup"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process backup tasks. |
| | | Allows the user to request that the server process backup |
| | | tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="backend-restore"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process restore tasks. |
| | | Allows the user to request that the server process restore |
| | | tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="server-shutdown"> |
| | |
| | | </adm:value> |
| | | <adm:value name="server-restart"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server perform an in-core |
| | | restart. |
| | | Allows the user to request that the server perform an |
| | | in-core restart. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="proxied-auth"> |
| | | <adm:synopsis> |
| | | Allows the user to use the proxied authorization control, or to |
| | | perform a bind that specifies an alternate authorization identity. |
| | | Allows the user to use the proxied authorization control, or |
| | | to perform a bind that specifies an alternate authorization |
| | | identity. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="disconnect-client"> |
| | |
| | | </adm:value> |
| | | <adm:value name="cancel-request"> |
| | | <adm:synopsis> |
| | | Allows the user to cancel operations in progress on other client |
| | | connections. |
| | | Allows the user to cancel operations in progress on other |
| | | client connections. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="password-reset"> |
| | |
| | | <adm:value name="privilege-change"> |
| | | <adm:synopsis> |
| | | Allows the user to make changes to the set of defined root |
| | | privileges, as well as to grant and revoke privileges for users. |
| | | privileges, as well as to grant and revoke privileges for |
| | | users. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="unindexed-search"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process a search that |
| | | cannot be optimized using server indexes. |
| | | Allows the user to request that the server process a search |
| | | that cannot be optimized using server indexes. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="return-bind-error-messages" mandatory="false"> |
| | | <adm:property name="return-bind-error-messages"> |
| | | <adm:synopsis> |
| | | Indicates whether responses for failed bind operations should include a |
| | | message string providing the reason for the authentication failure. Note |
| | | that these messages may include information that could potentially be used |
| | | by an attacker. If this option is disabled, then these messages will |
| | | appear only in the server's access log. |
| | | Indicates whether responses for failed bind operations should |
| | | include a message string providing the reason for the |
| | | authentication failure. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that these messages may include information that could |
| | | potentially be used by an attacker. If this option is disabled, |
| | | then these messages will appear only in the server's access log. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | false |
| | | </adm:value> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="idle-time-limit" mandatory="false" multi-valued="false"> |
| | | <adm:property name="idle-time-limit"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that a client connection may remain |
| | | established since its last completed operation. A value of "0 seconds" |
| | | indicates that no idle time limit will be enforced. |
| | | Specifies the maximum length of time that a client connection may |
| | | remain established since its last completed operation. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A value of "0 seconds" indicates that no idle time limit will be |
| | | enforced. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>0 seconds</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" lower-limit="0"/> |
| | | <adm:duration base-unit="ms" lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="save-config-on-successful-startup" mandatory="false"> |
| | | <adm:property name="save-config-on-successful-startup"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should save a copy of its |
| | | configuration whenever the startup process completes successfully. This |
| | | can ensure that the server provides a "last known good" configuration, |
| | | which can be used as a reference (or copied into the active config) if the |
| | | server fails to start with the current "active" configuration. |
| | | configuration whenever the startup process completes successfully. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This can ensure that the server provides a "last known good" |
| | | configuration, which can be used as a reference (or copied into |
| | | the active config) if the server fails to start with the current |
| | | "active" configuration. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>true</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="workflow-configuration-mode"> |
| | | <adm:synopsis> |
| | | Specifies the workflow configuration mode (auto vs. manual). |
| | |
| | | <adm:enumeration> |
| | | <adm:value name="auto"> |
| | | <adm:synopsis> |
| | | In the "auto" configuration mode there is no workflow |
| | | configuration. The workflows are created automatically |
| | | based on the backend configuration. There will be one |
| | | workflow per backend base DN. |
| | | In the "auto" configuration mode there is no workflow |
| | | configuration. The workflows are created automatically based |
| | | on the backend configuration. There will be one workflow per |
| | | backend base DN. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="manual"> |
| | | <adm:synopsis> |
| | | In the "manual" configuration mode each workflow is created |
| | | according to its description in the configuration. |
| | | In the "manual" configuration mode each workflow is created |
| | | according to its description in the configuration. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="group-implementation" |
| | | plural-name="group-implementations" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="group-implementations" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define named collections of users. Different group implementations may have |
| | | different ways of determining membership (e.g., it may explicitly list the |
| | | members, and/or it may dynamically determine membership). |
| | | define named collections of users. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:description> |
| | | Different group implementations may have different ways of |
| | | determining membership (e.g., it may explicitly list the members, |
| | | and/or it may dynamically determine membership). |
| | | </adm:description> |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-group-implementation</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:java-class> |
| | | <adm:instance-of> |
| | | org.opends.server.api.Group |
| | | </adm:instance-of> |
| | | <adm:instance-of>org.opends.server.api.Group</adm:instance-of> |
| | | </adm:java-class> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="has-subordinates-virtual-attribute" |
| | | plural-name="has-subordinates-virtual-attributes" |
| | | package="org.opends.server.admin.std" extends="virtual-attribute" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to generate a virtual attribute that indicates whether the |
| | | entry has any subordinate entries. |
| | | may be used to generate a virtual attribute that indicates whether |
| | | the entry has any subordinate entries. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-has-subordinates-virtual-attribute</ldap:name> |
| | | <ldap:superior>ds-cfg-virtual-attribute</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:property-override name="conflict-behavior" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | virtual-overrides-real |
| | | </adm:value> |
| | | <adm:value>virtual-overrides-real</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="attribute-type"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>hasSubordinates</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="identity-mapper" |
| | | plural-name="identity-mappers" |
| | | package="org.opends.server.admin.std" abstract="true" |
| | | plural-name="identity-mappers" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for establishing a mapping between an identifier string and |
| | | the entry for the user that corresponds to that identifier. |
| | | are responsible for establishing a mapping between an identifier |
| | | string and the entry for the user that corresponds to that |
| | | identifier. |
| | | </adm:synopsis> |
| | | <adm:tag name="security"/> |
| | | <adm:tag name="user-management"/> |
| | | <adm:tag name="security" /> |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-identity-mapper</ldap:name> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="is-member-of-virtual-attribute" |
| | | plural-name="is-member-of-virtual-attributes" |
| | | package="org.opends.server.admin.std" extends="virtual-attribute" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to generate a virtual attribute that contains the DNs of the |
| | | groups in which the user is a member. |
| | | may be used to generate a virtual attribute that contains the DNs of |
| | | the groups in which the user is a member. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-is-member-of-virtual-attribute</ldap:name> |
| | | <ldap:superior>ds-cfg-virtual-attribute</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:property-override name="conflict-behavior" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | virtual-overrides-real |
| | | </adm:value> |
| | | <adm:value>virtual-overrides-real</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="attribute-type"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>isMemberOf</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="jmx-alert-handler" plural-name="jmx-alert-handlers" |
| | | package="org.opends.server.admin.std" extends="alert-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="jmx-alert-handler" |
| | | plural-name="jmx-alert-handlers" package="org.opends.server.admin.std" |
| | | extends="alert-handler" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to generate JMX notifications to alert administrators of |
| | | significant events that occur within the server. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-jmx-alert-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-alert-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <adm:synopsis> |
| | | A Key Manager Provider must be specified when this |
| | | <adm:user-friendly-name /> |
| | | is configured to use SSL. |
| | | is enabled and it is configured to use SSL. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:is-present property="key-manager-provider" /> |
| | | <adm:contains property="enabled" value="true" /> |
| | | <adm:implies> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:is-present property="key-manager-provider" /> |
| | | </adm:implies> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | |
| | | <ldap:superior>ds-cfg-connection-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | <adm:property-reference name="ssl-cert-nickname" /> |
| | | <adm:property name="key-manager-provider"> |
| | | <adm:synopsis> |
| | | Specifies the name of the key manager that should be used |
| | | with this <adm:user-friendly-name />. |
| | | Specifies the name of the key manager that should be used with |
| | | this |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | |
| | | <adm:undefined /> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:aggregation relation-name="key-manager-provider" parent-path="/"> |
| | | <adm:aggregation relation-name="key-manager-provider" |
| | | parent-path="/"> |
| | | <adm:target-needs-enabling-condition> |
| | | <adm:and> |
| | | <adm:contains property="enabled" value="true" /> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="key-manager-provider" plural-name="key-manager-providers" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="key-manager-provider" |
| | | plural-name="key-manager-providers" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | |
| | | are responsible for managing the key material which is used to |
| | | authenticate an SSL connection to its peer. |
| | | </adm:synopsis> |
| | | <adm:tag name="security"/> |
| | | <adm:tag name="security" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-key-manager-provider</ldap:name> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="ldap-attribute-description-list-plugin" |
| | | plural-name="ldap-attribute-description-list-plugins" |
| | | package="org.opends.server.admin.std" extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to provide the ability to request that search result entries |
| | | include all attributes that are included by a specified object class. For |
| | | example, including a requested attribute of "@person" has the effect of |
| | | requesting all attributes in the person object class. |
| | | include all attributes that are included by a specified object |
| | | class. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | For example, including a requested attribute of "@person" has the |
| | | effect of requesting all attributes in the person object class. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-ldap-attribute-description-list-plugin</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-ldap-attribute-description-list-plugin |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-plugin</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="plugin-type"> |
| | | <adm:property-override name="plugin-type" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>preparsesearch</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to interact with clients using LDAP. In particular, it |
| | | provides full support for LDAPv3 and limited support for LDAPv2. |
| | | is used to interact with clients using LDAP. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | In particular, it provides full support for LDAPv3 and limited |
| | | support for LDAPv2. |
| | | </adm:description> |
| | | <adm:constraint> |
| | | <adm:synopsis> |
| | | A Key Manager Provider must be specified when this |
| | | <adm:user-friendly-name /> |
| | | is configured to use SSL. |
| | | is enabled and it is configured to use SSL or StartTLS. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:is-present property="key-manager-provider" /> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | | <adm:constraint> |
| | | <adm:synopsis> |
| | | A Key Manager Provider must be specified when this |
| | | <adm:user-friendly-name /> |
| | | is configured to allow StartTLS. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="allow-start-tls" value="true" /> |
| | | <adm:is-present property="key-manager-provider" /> |
| | | <adm:contains property="enabled" value="true" /> |
| | | <adm:implies> |
| | | <adm:or> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:contains property="allow-start-tls" value="true" /> |
| | | </adm:or> |
| | | <adm:is-present property="key-manager-provider" /> |
| | | </adm:implies> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | |
| | | <adm:synopsis> |
| | | A Trust Manager Provider must be specified when this |
| | | <adm:user-friendly-name /> |
| | | is configured to use SSL. |
| | | is enabled and it is configured to use SSL or StartTLS. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:is-present property="trust-manager-provider" /> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | | <adm:constraint> |
| | | <adm:synopsis> |
| | | A Trust Manager Provider must be specified when this |
| | | <adm:user-friendly-name /> |
| | | is configured to allow StartTLS. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="allow-start-tls" value="true" /> |
| | | <adm:is-present property="trust-manager-provider" /> |
| | | <adm:contains property="enabled" value="true" /> |
| | | <adm:implies> |
| | | <adm:or> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:contains property="allow-start-tls" value="true" /> |
| | | </adm:or> |
| | | <adm:is-present property="trust-manager-provider" /> |
| | | </adm:implies> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | |
| | | to be used. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:not> |
| | | <adm:and> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:contains property="allow-start-tls" value="true" /> |
| | | </adm:and> |
| | | </adm:not> |
| | | <adm:implies> |
| | | <adm:contains property="enabled" value="true" /> |
| | | <adm:not> |
| | | <adm:and> |
| | | <adm:contains property="use-ssl" value="true" /> |
| | | <adm:contains property="allow-start-tls" value="true" /> |
| | | </adm:and> |
| | | </adm:not> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | | <adm:profile name="ldap"> |
| | |
| | | <ldap:superior>ds-cfg-connection-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="use-tcp-keep-alive"> |
| | | <adm:property name="use-tcp-keep-alive" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the |
| | | <adm:user-friendly-name /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="use-tcp-no-delay"> |
| | | <adm:property name="use-tcp-no-delay" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the |
| | | <adm:user-friendly-name /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="allow-tcp-reuse-address"> |
| | | <adm:property name="allow-tcp-reuse-address" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the |
| | | <adm:user-friendly-name /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="send-rejection-notice"> |
| | | <adm:property name="send-rejection-notice" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the |
| | | <adm:user-friendly-name /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="max-request-size"> |
| | | <adm:property name="max-request-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the size of the largest LDAP request message that will |
| | | be allowed by this |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="num-request-handlers"> |
| | | <adm:property name="num-request-handlers" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the number of request handlers that will be used to read |
| | | requests from clients. |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="accept-backlog"> |
| | | <adm:property name="accept-backlog" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of pending connection attempts that |
| | | will be allowed to queue up in the accept backlog before the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="max-blocked-write-time-limit" mandatory="false"> |
| | | <adm:property name="max-blocked-write-time-limit" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that attempts to write data |
| | | to LDAP clients should be allowed to block. If an attempt to write |
| | | data to a client takes longer than this length of time, then the |
| | | client connection will be terminated. |
| | | to LDAP clients should be allowed to block. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If an attempt to write data to a client takes longer than this |
| | | length of time, then the client connection will be terminated. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>2 minutes</adm:value> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="ldif-backend" plural-name="ldif-backends" |
| | | package="org.opends.server.admin.std" |
| | | extends="backend" |
| | | package="org.opends.server.admin.std" extends="backend" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The LDIF backend provides a mechanism for interacting with data stored in |
| | | an LDIF file. All basic LDAP operations are supported in the LDIF backend, |
| | | although it has minimal support for custom controls. |
| | | The LDIF backend provides a mechanism for interacting with data |
| | | stored in an LDIF file. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | All basic LDAP operations are supported in the LDIF backend, |
| | | although it has minimal support for custom controls. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-ldif-backend</ldap:name> |
| | | <ldap:superior>ds-cfg-backend</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.backends.LDIFBackend |
| | | </adm:value> |
| | | <adm:value>org.opends.server.backends.LDIFBackend</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="ldif-file" mandatory="true" multi-valued="false"> |
| | | <adm:property-override name="writability-mode"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>enabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="ldif-file" mandatory="true"> |
| | | <adm:synopsis> |
| | | This specifies the path to the LDIF file containing the data for this |
| | | backend. |
| | | This specifies the path to the LDIF file containing the data for |
| | | this backend. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="is-private-backend" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="is-private-backend"> |
| | | <adm:synopsis> |
| | | This indicates whether the backend should be considered a private backend, |
| | | which indicates that it is used for storing operational data rather than |
| | | user-defined information. |
| | | This indicates whether the backend should be considered a private |
| | | backend, which indicates that it is used for storing operational |
| | | data rather than user-defined information. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="ldif-connection-handler" |
| | | plural-name="ldif-connection-handlers" |
| | | package="org.opends.server.admin.std" extends="connection-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to process changes in the server using internal operations, |
| | | where the changes to process are read from an LDIF file. The connection |
| | | handler will periodically look for the existence of a new file, will process |
| | | the changes contained in that file as internal operations, and will write |
| | | the result to an output file with comments indicating the result of the |
| | | processing. |
| | | may be used to process changes in the server using internal |
| | | operations, where the changes to process are read from an LDIF file. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | The connection handler will periodically look for the existence of a |
| | | new file, will process the changes contained in that file as |
| | | internal operations, and will write the result to an output file |
| | | with comments indicating the result of the processing. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-ldif-connection-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-connection-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="ldif-directory" mandatory="true" multi-valued="false"> |
| | | <adm:property name="ldif-directory" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the path to the directory in which the LDIF files should be |
| | | placed. |
| | | Specifies the path to the directory in which the LDIF files should |
| | | be placed. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="poll-interval" mandatory="true" multi-valued="false"> |
| | | <adm:property name="poll-interval" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies how frequently the LDIF connection handler should check the |
| | | LDIF directory to determine whether a new LDIF file has been added. |
| | | Specifies how frequently the LDIF connection handler should check |
| | | the LDIF directory to determine whether a new LDIF file has been |
| | | added. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="last-mod-plugin" |
| | | plural-name="last-mod-plugins" |
| | | package="org.opends.server.admin.std" extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | plural-name="last-mod-plugins" package="org.opends.server.admin.std" |
| | | extends="plugin" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to ensure that the creatorsName and createTimestamp attributes are |
| | | included in an entry whenever it is added to the server, and to ensure that |
| | | the modifiersName and modifyTimestamp attributes are updated whenever an |
| | | entry is modified or renamed. |
| | | is used to ensure that the creatorsName and createTimestamp |
| | | attributes are included in an entry whenever it is added to the |
| | | server, and to ensure that the modifiersName and modifyTimestamp |
| | | attributes are updated whenever an entry is modified or renamed. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-last-mod-plugin</ldap:name> |
| | | <ldap:superior>ds-cfg-plugin</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.plugins.LastModPlugin |
| | | </adm:value> |
| | | <adm:value>org.opends.server.plugins.LastModPlugin</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="plugin-type"> |
| | | <adm:property-override name="plugin-type" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>preoperationadd</adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="length-based-password-validator" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="length-based-password-validator" |
| | | plural-name="length-based-password-validators" |
| | | package="org.opends.server.admin.std" extends="password-validator" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:TODO> |
| | | Use constraints to enforce max-password-length >= |
| | | min-password-length |
| | | </adm:TODO> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to determine whether a proposed password is acceptable based on |
| | | whether the number of characters it contains falls within an acceptable |
| | | range of values. |
| | | is used to determine whether a proposed password is acceptable based |
| | | on whether the number of characters it contains falls within an |
| | | acceptable range of values. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-password-validator</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="max-password-length" mandatory="false"> |
| | | <adm:property name="max-password-length"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of characters that may be included in a |
| | | proposed password. |
| | | Specifies the maximum number of characters that may be included in |
| | | a proposed password. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum number of characters that may be included in a |
| | | proposed password. A value of zero indicates that there will be no |
| | | upper bound enforced. Changes to this configuration attribute will take |
| | | effect immediately. |
| | | A value of zero indicates that there will be no upper bound |
| | | enforced. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="min-password-length" mandatory="false"> |
| | | <adm:property name="min-password-length"> |
| | | <adm:synopsis> |
| | | Specifies the minimum number of characters that must be included in a |
| | | proposed password. |
| | | Specifies the minimum number of characters that must be included |
| | | in a proposed password. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the minimum number of characters that must be included in a |
| | | proposed password. A value of zero indicates that there will be no |
| | | lower bound enforced. Changes to this configuration attribute will take |
| | | effect immediately. |
| | | A value of zero indicates that there will be no lower bound |
| | | enforced. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="local-backend-workflow-element" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="local-backend-workflow-element" |
| | | plural-name="local-backend-workflow-elements" |
| | | package="org.opends.server.admin.std" |
| | | extends="workflow-element" |
| | | package="org.opends.server.admin.std" extends="workflow-element" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides access to a local backend. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides access to a backend. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="user-management"/> |
| | | |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-local-backend-workflow-element</ldap:name> |
| | | <ldap:superior>ds-cfg-workflow-element</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="backend" |
| | | mandatory="true" |
| | | read-only="true" |
| | | multi-valued="false"> |
| | | <adm:property name="backend" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | Identifies the backend accessed by the workflow element. |
| | | </adm:synopsis> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="local-db-backend" plural-name="local-db-backends" |
| | | package="org.opends.server.admin.std" |
| | | extends="backend" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="local-db-backend" |
| | | plural-name="local-db-backends" package="org.opends.server.admin.std" |
| | | extends="backend" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | xmlns:cli="http://www.opends.org/admin-cli"> |
| | | <adm:synopsis> |
| | | The primary backend provided by the OpenDS Directory Server uses the |
| | | Berkeley DB Java Edition to store user-provided data in a local repository. |
| | | It is the traditional "directory server" backend and is similar to the |
| | | backends provided by the Sun Java System Directory Server. |
| | | Berkeley DB Java Edition to store user-provided data in a local |
| | | repository. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The <adm:user-friendly-name/> stores the entries in an encoded form and |
| | | also provides indexes that can be used to quickly locate target entries |
| | | based on different kinds of criteria. |
| | | The org.opends.server.backends.jeb.BackendImpl class provides the |
| | | implementation for this backend, and therefore should be used as the |
| | | value of the java-class property. |
| | | It is the traditional "directory server" backend and is similar to |
| | | the backends provided by the Sun Java System Directory Server. The |
| | | <adm:user-friendly-name /> |
| | | stores the entries in an encoded form and also provides indexes that |
| | | can be used to quickly locate target entries based on different |
| | | kinds of criteria. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:relation name="local-db-index"> |
| | | <adm:one-to-many naming-property="attribute"/> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Index |
| | | </ldap:rdn-sequence> |
| | | <adm:one-to-many naming-property="attribute" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence>cn=Index</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </adm:profile> |
| | | </adm:relation> |
| | | <adm:relation name="local-db-vlv-index"> |
| | | <adm:one-to-many naming-property="name"/> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=VLV Index |
| | | </ldap:rdn-sequence> |
| | | <adm:one-to-many naming-property="name" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence>cn=VLV Index</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </cli:relation> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="deadlock-retry-limit" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property-override name="writability-mode"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>enabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="deadlock-retry-limit" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the number of times that the server should retry an attempted |
| | | operation in the backend if a deadlock results from two concurrent |
| | | requests that interfere with each other in a conflicting manner. |
| | | Specifies the number of times that the server should retry an |
| | | attempted operation in the backend if a deadlock results from two |
| | | concurrent requests that interfere with each other in a |
| | | conflicting manner. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A value of "0" indicates no limit. |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" /> |
| | | <adm:integer lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-directory" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="db-directory" mandatory="true"> |
| | | <adm:TODO>Default this to the db/backend-id</adm:TODO> |
| | | <adm:synopsis> |
| | | Specifies the path to the filesystem directory that will be used to hold |
| | | the Berkeley DB Java Edition database files containing the data for this |
| | | backend. |
| | | Specifies the path to the filesystem directory that will be used |
| | | to hold the Berkeley DB Java Edition database files containing the |
| | | data for this backend. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The path may be either an absolute path or a path relative to the |
| | | directory containing the base of the OpenDS Directory Server installation. |
| | | The path may be any valid directory path in which the server has |
| | | appropriate permissions to read and write files and has sufficient space |
| | | to hold the database contents. |
| | | directory containing the base of the OpenDS Directory Server |
| | | installation. The path may be any valid directory path in which |
| | | the server has appropriate permissions to read and write files and |
| | | has sufficient space to hold the database contents. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="compact-encoding" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="compact-encoding"> |
| | | <adm:synopsis> |
| | | Indicates whether the backend should use a compact form when encoding |
| | | entries by compressing the attribute descriptions and object class sets. |
| | | Indicates whether the backend should use a compact form when |
| | | encoding entries by compressing the attribute descriptions and |
| | | object class sets. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that this property applies only to the entries themselves |
| | | and does not impact the index data. |
| | | Note that this property applies only to the entries themselves and |
| | | does not impact the index data. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | Changes to this setting will only take effect for writes that occur |
| | | after the change is made. It will not be retroactively applied to |
| | | existing data. |
| | | Changes to this setting will only take effect for writes that |
| | | occur after the change is made. It will not be retroactively |
| | | applied to existing data. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="entries-compressed" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="entries-compressed" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the backend should attempt to compress entries before |
| | | storing them in the database. |
| | | Indicates whether the backend should attempt to compress entries |
| | | before storing them in the database. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that this property applies only to the entries themselves |
| | | and does not impact the index data. Further, the effectiveness of the |
| | | compression will be based on the type of data contained in the entry. |
| | | Note that this property applies only to the entries themselves and |
| | | does not impact the index data. Further, the effectiveness of the |
| | | compression will be based on the type of data contained in the |
| | | entry. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | Changes to this setting will only take effect for writes that occur |
| | | after the change is made. It will not be retroactively applied to |
| | | existing data. |
| | | Changes to this setting will only take effect for writes that |
| | | occur after the change is made. It will not be retroactively |
| | | applied to existing data. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="import-buffer-size" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="import-buffer-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the amount of memory that should be used as an internal |
| | | buffer for index information when processing an LDIF import. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No admin action required, although changes will not take effect for |
| | | any import that may already be in progress. |
| | | Changes will not take effect for any import that may already |
| | | be in progress. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:size lower-limit="10mb"/> |
| | | <adm:size lower-limit="10mb" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="import-pass-size" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="import-pass-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of entries that should be imported in each |
| | | import pass. |
| | | Specifies the maximum number of entries that should be imported in |
| | | each import pass. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | An import pass consists of the processing required to import a set of |
| | | entries as well as the index post-processing required to index those |
| | | entries. A value of zero for this property indicates that all entries |
| | | should be processed in a single pass, which is the recommended |
| | | configuration for most deployments, although a non-zero value may be |
| | | required when importing a very large number of entries if the amount |
| | | of memory required for index post-processing exceeds the total amount |
| | | available to the server. |
| | | An import pass consists of the processing required to import a set |
| | | of entries as well as the index post-processing required to index |
| | | those entries. A value of zero for this property indicates that |
| | | all entries should be processed in a single pass, which is the |
| | | recommended configuration for most deployments, although a |
| | | non-zero value may be required when importing a very large number |
| | | of entries if the amount of memory required for index |
| | | post-processing exceeds the total amount available to the server. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No admin action required, although changes will not take effect for |
| | | any import that may already be in progress. |
| | | Changes will not take effect for any import that may already |
| | | be in progress. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" upper-limit="2147483647" /> |
| | | <adm:integer lower-limit="0" upper-limit="2147483647" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="import-queue-size" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="import-queue-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the size (in number of entries) of the queue that will be used |
| | | to hold the entries read during an LDIF import. |
| | | Specifies the size (in number of entries) of the queue that will |
| | | be used to hold the entries read during an LDIF import. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No admin action required, although changes will not take effect for |
| | | any import that may already be in progress. |
| | | Changes will not take effect for any import that may already |
| | | be in progress. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" /> |
| | | <adm:integer lower-limit="1" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="import-temp-directory" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="import-temp-directory" mandatory="true"> |
| | | <adm:TODO> |
| | | Default to something derived from the backend-id |
| | | </adm:TODO> |
| | | <adm:synopsis> |
| | | Specifies the location of the directory that will be used for the |
| | | files used to hold temporary information that will be used during the |
| | | index post-processing phase of an LDIF import. |
| | | files used to hold temporary information that will be used during |
| | | the index post-processing phase of an LDIF import. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The specified directory will only be used while an import is in progress |
| | | and the files created in this directory will be deleted as they are |
| | | processed. It may be an absolute path or one that is relative to the |
| | | instance root directory. |
| | | The specified directory will only be used while an import is in |
| | | progress and the files created in this directory will be deleted |
| | | as they are processed. It may be an absolute path or one that is |
| | | relative to the instance root directory. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No admin action required, although changes will not take effect for |
| | | any import that may already be in progress. |
| | | Changes will not take effect for any import that may already |
| | | be in progress. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:undefined/> |
| | | <adm:undefined /> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="import-thread-count" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="import-thread-count" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the number of threads that will be used for concurrent |
| | | processing during an LDIF import. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This should generally be a small multiple (e.g., 2x) of the number of CPUs |
| | | in the system for a traditional system, or equal to the number of CPU |
| | | strands for a CMT system. |
| | | This should generally be a small multiple (e.g., 2x) of the number |
| | | of CPUs in the system for a traditional system, or equal to the |
| | | number of CPU strands for a CMT system. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No admin action required, although changes will not take effect for |
| | | any import that may already be in progress. |
| | | Changes will not take effect for any import that may already |
| | | be in progress. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" /> |
| | | <adm:integer lower-limit="1" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="index-entry-limit" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="index-entry-limit"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of entries that will be allowed to |
| | | match a given index key before that particular index key is no longer |
| | | maintained (i.e., it is analogous to the ALL IDs threshold in the Sun |
| | | Java System Directory Server). Note that this is the default limit for |
| | | the backend, and it may be overridden on a per-attribute basis. |
| | | match a given index key before that particular index key is no |
| | | longer maintained. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that this is the default limit for the backend, and it may be |
| | | overridden on a per-attribute basis. A value of 0 means there is no limit. |
| | | This property is analogous to the ALL IDs threshold in the Sun |
| | | Java System Directory Server. Note that this is the default limit |
| | | for the backend, and it may be overridden on a per-attribute |
| | | basis.A value of 0 means there is no limit. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | No admin action is required, although if any index keys have already |
| | | reached this limit, indexes will need to be rebuilt before they will |
| | | be allowed to use the new limit. |
| | | If any index keys have already reached this limit, indexes |
| | | will need to be rebuilt before they will be allowed to use the |
| | | new limit. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" /> |
| | | <adm:integer lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-directory-permissions" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-directory-permissions" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the permissions that should be applied to the directory |
| | | containing the server database files. They should be expressed as |
| | | three-digit octal values, which is the traditional representation for |
| | | UNIX file permissions. |
| | | containing the server database files. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The three digits represent the permissions that will be available for the |
| | | directory's owner, group members, and other users (in that order), and |
| | | each digit is the octal representation of the read, write, and execute |
| | | bits. |
| | | Note that this only impacts permissions on the database directory and |
| | | not on the files written into that directory. On UNIX systems, the |
| | | user's umask will control permissions given to the database files. |
| | | They should be expressed as three-digit octal values, which is the |
| | | traditional representation for UNIX file permissions. The three |
| | | digits represent the permissions that will be available for the |
| | | directory's owner, group members, and other users (in that order), |
| | | and each digit is the octal representation of the read, write, and |
| | | execute bits. Note that this only impacts permissions on the |
| | | database directory and not on the files written into that |
| | | directory. On UNIX systems, the user's umask will control |
| | | permissions given to the database files. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:server-restart/> |
| | | <adm:server-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex>7[0-7][0-7]</adm:regex> |
| | | <adm:regex>^7[0-7][0-7]$</adm:regex> |
| | | <adm:usage>MODE</adm:usage> |
| | | <adm:synopsis> |
| | | Any octal value between 700 and 777 (the owner must always have |
| | | read, write, and execute permissions on the directory). |
| | | Any octal value between 700 and 777 (the owner must always |
| | | have read, write, and execute permissions on the directory). |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="preload-time-limit" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="preload-time-limit" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the length of time that the backend will be allowed to |
| | | spend "pre-loading" data when it is initialized. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The pre-load process may be used to pre-populate the database cache so |
| | | that it can be more quickly available when the server is processing |
| | | requests. A duration of zero means there will be no pre-load. |
| | | The pre-load process may be used to pre-populate the database |
| | | cache so that it can be more quickly available when the server is |
| | | processing requests. A duration of zero means there will be no |
| | | pre-load. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" lower-limit="0"/> |
| | | <adm:duration base-unit="ms" lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="subtree-delete-size-limit" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="subtree-delete-size-limit" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of entries that may be deleted from the |
| | | backend when using the subtree delete control. |
| | | Specifies the maximum number of entries that may be deleted from |
| | | the backend when using the subtree delete control. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If a subtree delete operation targets a subtree with more than this |
| | | number of entries, then multiple passes may be required to remove all |
| | | entries in that subtree. |
| | | If a subtree delete operation targets a subtree with more than |
| | | this number of entries, then multiple passes may be required to |
| | | remove all entries in that subtree. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" /> |
| | | <adm:integer lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="subtree-delete-batch-size" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="subtree-delete-batch-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of entries that may be deleted from the |
| | | backend when using the subtree delete control within a single transaction. |
| | | Specifies the maximum number of entries that may be deleted from |
| | | the backend when using the subtree delete control within a single |
| | | transaction. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If a subtree delete operation targets a subtree with more than this |
| | | number of entries, then additional transactions are used to remove the |
| | | remaining entries in that subtree. |
| | | If a subtree delete operation targets a subtree with more than |
| | | this number of entries, then additional transactions are used to |
| | | remove the remaining entries in that subtree. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" /> |
| | | <adm:integer lower-limit="0" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-cache-percent" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-cache-percent"> |
| | | <adm:synopsis> |
| | | The percentage of JVM memory to allocate to the database cache. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the percentage of memory available to the JVM that should |
| | | be used for caching database contents. Note that this will only be used |
| | | if the value of the db-cache-size property is set to "0 MB". |
| | | Otherwise, the value of that property will be used instead to control |
| | | the cache size configuration. |
| | | Specifies the percentage of memory available to the JVM that |
| | | should be used for caching database contents. Note that this will |
| | | only be used if the value of the db-cache-size property is set to |
| | | "0 MB". Otherwise, the value of that property will be used instead |
| | | to control the cache size configuration. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" upper-limit="90" /> |
| | | <adm:integer lower-limit="1" upper-limit="90" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-cache-size" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-cache-size"> |
| | | <adm:synopsis> |
| | | The amount of JVM memory to allocate to the database cache. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the amount of memory that should be used for caching database |
| | | contents. A value of "0 MB" indicates that the db-cache-percent |
| | | property should be used instead to specify the cache size. |
| | | Specifies the amount of memory that should be used for caching |
| | | database contents. A value of "0 MB" indicates that the |
| | | db-cache-percent property should be used instead to specify the |
| | | cache size. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-cleaner-min-utilization" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-cleaner-min-utilization" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the minimum percentage of "live" data that the database cleaner |
| | | will attempt to keep in database log files. |
| | | Specifies the minimum percentage of "live" data that the database |
| | | cleaner will attempt to keep in database log files. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If the amount of live data in any database log file drops below this |
| | | percentage, then the cleaner will move the remaining live data in that |
| | | file to the end of the database and will delete the original file in |
| | | order to keep the database relatively compact. |
| | | If the amount of live data in any database log file drops below |
| | | this percentage, then the cleaner will move the remaining live |
| | | data in that file to the end of the database and will delete the |
| | | original file in order to keep the database relatively compact. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" upper-limit="90" /> |
| | | <adm:integer lower-limit="0" upper-limit="90" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-run-cleaner" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-run-cleaner" advanced="true"> |
| | | <adm:synopsis> |
| | | This indicates whether the database cleaner threads should be enabled. |
| | | This indicates whether the database cleaner threads should be |
| | | enabled. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The cleaner threads will be used to periodically compact the database by |
| | | identifying database files with a low (i.e., less than the amount |
| | | specified by the db-cleaner-min-utilization property) |
| | | percentage of live data, moving the remaining live data to the end of the |
| | | log and deleting that file. |
| | | The cleaner threads will be used to periodically compact the |
| | | database by identifying database files with a low (i.e., less than |
| | | the amount specified by the db-cleaner-min-utilization property) |
| | | percentage of live data, moving the remaining live data to the end |
| | | of the log and deleting that file. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-evictor-lru-only" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-evictor-lru-only" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the database should evict existing data from the cache |
| | | based on an LRU policy (where the least recently used information will be |
| | | evicted first). |
| | | Indicates whether the database should evict existing data from the |
| | | cache based on an LRU policy (where the least recently used |
| | | information will be evicted first). |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If the value of this configuration property is set to "false", then |
| | | eviction will prefer to keep internal nodes of the underlying Btree in |
| | | the cache over leaf notes, even if the leaf nodes have been accessed |
| | | more recently, which may be a better configuration for databases in |
| | | which only a very small portion of the data is cached. |
| | | If the value of this configuration property is set to "false", |
| | | then eviction will prefer to keep internal nodes of the underlying |
| | | Btree in the cache over leaf notes, even if the leaf nodes have |
| | | been accessed more recently, which may be a better configuration |
| | | for databases in which only a very small portion of the data is |
| | | cached. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-evictor-nodes-per-scan" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-evictor-nodes-per-scan" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the number of Btree nodes that should be evicted from the |
| | | cache in a single pass if it is determined that it is necessary to |
| | | free existing data in order to make room for new information. |
| | | Specifies the number of Btree nodes that should be evicted from |
| | | the cache in a single pass if it is determined that it is |
| | | necessary to free existing data in order to make room for new |
| | | information. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Changes to this property do not take effect until the backend is |
| | | restarted. It is recommended that you also change this property when you |
| | | set db-evictor-lru-only to false. This setting controls the number |
| | | of Btree nodes that are considered, or sampled, each time a node is |
| | | evicted. A setting of 100 often produces good results, but this may vary |
| | | from application to application. The larger the nodesPerScan, the more |
| | | accurate the algorithm. However, setting it too high is detrimental; |
| | | the need to consider larger numbers of nodes for each eviction may |
| | | delay the completion of a given database operation, which will impact |
| | | the response time of the application thread. |
| | | restarted. It is recommended that you also change this property |
| | | when you set db-evictor-lru-only to false. This setting controls |
| | | the number of Btree nodes that are considered, or sampled, each |
| | | time a node is evicted. A setting of 100 often produces good |
| | | results, but this may vary from application to application. The |
| | | larger the nodes per scan, the more accurate the algorithm. |
| | | However, setting it too high is detrimental; the need to consider |
| | | larger numbers of nodes for each eviction may delay the completion |
| | | of a given database operation, which will impact the response time |
| | | of the application thread. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" upper-limit="1000" /> |
| | | <adm:integer lower-limit="1" upper-limit="1000" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-log-file-max" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-log-file-max" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum size that may be used for a database log file. |
| | | Specifies the maximum size that may be used for a database log |
| | | file. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:size lower-limit="1mb" upper-limit="4gib"/> |
| | | <adm:size lower-limit="1mb" upper-limit="4gib" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-logging-file-handler-on" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-logging-file-handler-on" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the database should maintain a je.info file in the same |
| | | directory as the database log directory. This file will contain |
| | | information about the internal processing performed by the underlying |
| | | database. |
| | | Indicates whether the database should maintain a je.info file in |
| | | the same directory as the database log directory. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This file will contain information about the internal processing |
| | | performed by the underlying database. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-logging-level" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-logging-level" advanced="true"> |
| | | <adm:TODO>Use an enumeration</adm:TODO> |
| | | <adm:synopsis> |
| | | This specifies the log level that should be used by the database when |
| | | it is writing information into the je.info file. |
| | | This specifies the log level that should be used by the database |
| | | when it is writing information into the je.info file. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The database trace logging level is (in increasing order of verbosity) |
| | | chosen from: OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL. |
| | | The database trace logging level is (in increasing order of |
| | | verbosity) chosen from: OFF, SEVERE, WARNING, INFO, CONFIG, FINE, |
| | | FINER, FINEST, ALL. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-checkpointer-bytes-interval" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-checkpointer-bytes-interval" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of bytes that may be written to the database |
| | | before it will be forced to perform a checkpoint. |
| | | Specifies the maximum number of bytes that may be written to the |
| | | database before it will be forced to perform a checkpoint. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This can be used to bound the recovery time that may be required if the |
| | | database environment is opened without having been properly closed. |
| | | If this property is set to a non-zero value, the checkpointer wakeup |
| | | interval is not used. To use time based checkpointing, set this |
| | | property to zero. |
| | | This can be used to bound the recovery time that may be required |
| | | if the database environment is opened without having been properly |
| | | closed. If this property is set to a non-zero value, the |
| | | checkpointer wakeup interval is not used. To use time based |
| | | checkpointing, set this property to zero. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:server-restart/> |
| | | <adm:server-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:size lower-limit="0b" upper-limit="9223372036854775807b"/> |
| | | <adm:size lower-limit="0b" upper-limit="9223372036854775807b" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-checkpointer-wakeup-interval" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that may pass between checkpoints. |
| | | Specifies the maximum length of time that may pass between |
| | | checkpoints. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that this will only be used if the value of the checkpointer bytes |
| | | interval is zero. |
| | | Note that this will only be used if the value of the checkpointer |
| | | bytes interval is zero. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="s" lower-limit="1" upper-limit="4294"/> |
| | | <adm:duration base-unit="s" lower-limit="1" upper-limit="4294" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-num-lock-tables" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-num-lock-tables" advanced="true"> |
| | | <adm:synopsis> |
| | | This specifies the number of lock tables that should be used by the |
| | | underlying database. |
| | | This specifies the number of lock tables that should be used by |
| | | the underlying database. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This can be particularly important to help improve scalability by |
| | | avoiding contention on systems with large numbers of CPUs. The value of |
| | | this configuration property should be set to a prime number that is less |
| | | than or equal to the number of worker threads configured for use in the |
| | | server. |
| | | avoiding contention on systems with large numbers of CPUs. The |
| | | value of this configuration property should be set to a prime |
| | | number that is less than or equal to the number of worker threads |
| | | configured for use in the server. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart/> |
| | | <adm:component-restart /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" upper-limit="32767" /> |
| | | <adm:integer lower-limit="1" upper-limit="32767" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-num-cleaner-threads" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-num-cleaner-threads" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the number of threads that the backend should maintain to |
| | | keep the database log files at or near the desired utilization. |
| | | Specifies the number of threads that the backend should maintain |
| | | to keep the database log files at or near the desired utilization. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | In environments with high write throughput, multiple cleaner threads may |
| | | be required to maintain the desired utilization. |
| | | In environments with high write throughput, multiple cleaner |
| | | threads may be required to maintain the desired utilization. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" /> |
| | | <adm:integer lower-limit="1" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-txn-no-sync" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-txn-no-sync" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether database writes should be primarily written to an |
| | | internal buffer but not immediately written to disk. |
| | | Indicates whether database writes should be primarily written to |
| | | an internal buffer but not immediately written to disk. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Setting the value of this configuration attribute to "true" may improve |
| | | write performance but could cause some number of the most recent changes |
| | | to be lost if the OpenDS Directory Server or the underlying JVM exits |
| | | abnormally, or if an OS or hardware failure occurs (a behavior similar |
| | | to running with transaction durability disabled in the Sun Java System |
| | | Directory Server). |
| | | Setting the value of this configuration attribute to "true" may |
| | | improve write performance but could cause some number of the most |
| | | recent changes to be lost if the OpenDS Directory Server or the |
| | | underlying JVM exits abnormally, or if an OS or hardware failure |
| | | occurs (a behavior similar to running with transaction durability |
| | | disabled in the Sun Java System Directory Server). |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="db-txn-write-no-sync" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="db-txn-write-no-sync" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the database should synchronously flush data as it is |
| | | written to disk. |
| | | Indicates whether the database should synchronously flush data as |
| | | it is written to disk. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If this value is set to "false", then all data written to disk will be |
| | | synchronously flushed to persistent storage and thereby providing full |
| | | durability. If it is set to "true", then data may be cached for a period |
| | | of time by the underlying operating system before actually being written |
| | | to disk. This may improve performance, but could cause some number of |
| | | the most recent changes to be lost in the event of an underlying OS or |
| | | hardware failure (but not in the case that the OpenDS Directory Server |
| | | or the JVM exits abnormally). |
| | | If this value is set to "false", then all data written to disk |
| | | will be synchronously flushed to persistent storage and thereby |
| | | providing full durability. If it is set to "true", then data may |
| | | be cached for a period of time by the underlying operating system |
| | | before actually being written to disk. This may improve |
| | | performance, but could cause some number of the most recent |
| | | changes to be lost in the event of an underlying OS or hardware |
| | | failure (but not in the case that the OpenDS Directory Server or |
| | | the JVM exits abnormally). |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="je-property" |
| | | mandatory="false" |
| | | <adm:property name="je-property" advanced="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the database and environment properties for the Berkeley DB |
| | | Java Edition database serving the data for this backend. |
| | | Specifies the database and environment properties for the Berkeley |
| | | DB Java Edition database serving the data for this backend. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Any Berkeley DB Java Edition property can be specified using the |
| | | following form: property-name=property-value |
| | | Refer to OpenDS documentation for further information on related |
| | | properties, their implications and range values. The definitive |
| | | identification of all the property parameters available in the |
| | | example.properties file of Berkeley DB Java Edition distribution. |
| | | following form: property-name=property-value Refer to OpenDS |
| | | documentation for further information on related properties, their |
| | | implications and range values. The definitive identification of |
| | | all the property parameters available in the example.properties |
| | | file of Berkeley DB Java Edition distribution. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="local-db-index" plural-name="local-db-indexes" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-plural-name/> are used to store information |
| | | that makes it possible to locate entries very quickly when processing |
| | | search operations. |
| | | The |
| | | <adm:user-friendly-plural-name /> |
| | | are used to store information that makes it possible to locate |
| | | entries very quickly when processing search operations. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indexing is performed on a per-attribute level and different types |
| | |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property name="attribute" |
| | | mandatory="true" |
| | | multi-valued="false" |
| | | read-only="true"> |
| | | <adm:property name="attribute" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | This specifies the name of the attribute for which the index is |
| | | to be maintained. |
| | | This specifies the name of the attribute for which the index is to |
| | | be maintained. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:attribute-type/> |
| | | <adm:attribute-type /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="index-entry-limit" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="index-entry-limit"> |
| | | <adm:synopsis> |
| | | This specifies the maximum number of entries that will be allowed |
| | | to match a given index key before that particular index key is no |
| | |
| | | <adm:description> |
| | | This is analogous to the ALL IDs threshold in the Sun Java System |
| | | Directory Server. If this is specified, it will override the JE |
| | | backend-wide configuration. If any index keys have already |
| | | reached this limit, indexes will need to be rebuilt before they |
| | | will be allowed to use the new limit. For no limit, use 0 for the |
| | | value. |
| | | backend-wide configuration. For no limit, use 0 for the value. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | If any index keys have already reached this limit, indexes |
| | | will need to be rebuilt before they will be allowed to use |
| | | the new limit. |
| | | will need to be rebuilt before they will be allowed to use the |
| | | new limit. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:inherited> |
| | | <adm:relative property-name="index-entry-limit" |
| | | offset="1" managed-object-name="local-db-backend" /> |
| | | <adm:relative property-name="index-entry-limit" offset="1" |
| | | managed-object-name="local-db-backend" /> |
| | | </adm:inherited> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" upper-limit="2147483647"> |
| | | <adm:unit-synopsis> |
| | | Number of entries |
| | | </adm:unit-synopsis> |
| | | <adm:unit-synopsis>Number of entries</adm:unit-synopsis> |
| | | </adm:integer> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="index-type" |
| | | mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:property name="index-type" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | This specifies the type(s) of indexing that should be performed for |
| | | the associated attribute. |
| | | This specifies the type(s) of indexing that should be performed |
| | | for the associated attribute. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | For equality, presence, and substring index types, the associated |
| | |
| | | <adm:enumeration> |
| | | <adm:value name="equality"> |
| | | <adm:synopsis> |
| | | This index type will be used to help improve the efficiency of |
| | | searches using equality search filters. |
| | | This index type will be used to help improve the efficiency |
| | | of searches using equality search filters. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="ordering"> |
| | | <adm:synopsis> |
| | | This index type will be used to help improve the efficiency of |
| | | searches using "greater than or equal to" or "less then or equal |
| | | to" search filters. |
| | | This index type will be used to help improve the efficiency |
| | | of searches using "greater than or equal to" or "less then |
| | | or equal to" search filters. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="presence"> |
| | | <adm:synopsis> |
| | | This index type will be used to help improve the efficiency of |
| | | searches using the presence search filters. |
| | | This index type will be used to help improve the efficiency |
| | | of searches using the presence search filters. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="substring"> |
| | | <adm:synopsis> |
| | | This index type will be used to help improve the efficiency of |
| | | searches using substring search filters. |
| | | This index type will be used to help improve the efficiency |
| | | of searches using substring search filters. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="approximate"> |
| | | <adm:synopsis> |
| | | This index type will be used to help improve the efficiency of |
| | | searches using approximate matching search filters. |
| | | This index type will be used to help improve the efficiency |
| | | of searches using approximate matching search filters. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="substring-length" |
| | | mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="substring-length" advanced="true"> |
| | | <adm:synopsis> |
| | | The length of substrings in a substring index. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:synopsis> |
| | | The index will need to be rebuilt before it will reflect |
| | | the new value. |
| | | The index will need to be rebuilt before it will reflect the |
| | | new value. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | | </adm:requires-admin-action> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="local-db-vlv-index" plural-name="local-db-vlv-indexes" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="local-db-vlv-index" |
| | | plural-name="local-db-vlv-indexes" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-plural-name/> are used to store information about |
| | | a specific search request that makes it possible to efficiently process |
| | | them using the VLV control. |
| | | The |
| | | <adm:user-friendly-plural-name /> |
| | | are used to store information about a specific search request that |
| | | makes it possible to efficiently process them using the VLV control. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | A VLV index effectively notifies the server that a virtual list view, with |
| | | specific query and sort parameters, will be performed. This index also |
| | | allows the server to collect and maintain the information required to make |
| | | using the virtual list view faster. |
| | | A VLV index effectively notifies the server that a virtual list |
| | | view, with specific query and sort parameters, will be performed. |
| | | This index also allows the server to collect and maintain the |
| | | information required to make using the virtual list view faster. |
| | | </adm:description> |
| | | <adm:tag name="database" /> |
| | | <adm:profile name="ldap"> |
| | |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property name="base-dn" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="base-dn" mandatory="true"> |
| | | <adm:synopsis> |
| | | This specifies the base DN used in the search query being indexed. |
| | | </adm:synopsis> |
| | |
| | | </adm:other> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:dn/> |
| | | <adm:dn /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="scope" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="scope" mandatory="true"> |
| | | <adm:synopsis> |
| | | This specifies the LDAP scope of the query being indexed. |
| | | </adm:synopsis> |
| | |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="base-object"> |
| | | <adm:synopsis> |
| | | Search the base object only. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Search the base object only.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="single-level"> |
| | | <adm:synopsis> |
| | |
| | | </adm:value> |
| | | <adm:value name="subordinate-subtree"> |
| | | <adm:synopsis> |
| | | Search the entire subtree below the base object but not include |
| | | the base object itself. |
| | | Search the entire subtree below the base object but not |
| | | include the base object itself. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="whole-subtree"> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-scope </ldap:name> |
| | | <ldap:name>ds-cfg-scope</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="filter" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="filter" mandatory="true"> |
| | | <adm:synopsis> |
| | | This specifies the LDAP filter used in the query being indexed. |
| | | </adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="sort-order" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="sort-order" mandatory="true"> |
| | | <adm:synopsis> |
| | | This specifies the names of attributes to sort the entries for the query |
| | | being indexed. |
| | | This specifies the names of attributes to sort the entries for the |
| | | query being indexed. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:other> |
| | | <adm:synopsis> |
| | | The index will need to be rebuilt after this modifying this |
| | | The index will need to be rebuilt after this modifying this |
| | | property. |
| | | </adm:synopsis> |
| | | </adm:other> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="name" |
| | | mandatory="true" |
| | | multi-valued="false" |
| | | read-only="true"> |
| | | <adm:property name="name" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | This specifies a unique name for this VLV index. |
| | | </adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="max-block-size" |
| | | mandatory="false" |
| | | multi-valued="false" |
| | | read-only="true"> |
| | | <adm:property name="max-block-size" read-only="true" |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | This specifies the number of entry IDs to store in a single |
| | | sorted set before it must be split. |
| | | This specifies the number of entry IDs to store in a single sorted |
| | | set before it must be split. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 4000 |
| | | </adm:value> |
| | | <adm:value>4000</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer> |
| | | <adm:unit-synopsis> |
| | | Number of entry IDs |
| | | </adm:unit-synopsis> |
| | | <adm:unit-synopsis>Number of entry IDs</adm:unit-synopsis> |
| | | </adm:integer> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="log-publisher" |
| | | plural-name="log-publishers" |
| | | package="org.opends.server.admin.std" abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="log-publisher" plural-name="log-publishers" |
| | | package="org.opends.server.admin.std" abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for distributing log messages from different loggers to |
| | | a destination. |
| | | are responsible for distributing log messages from different loggers |
| | | to a destination. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="logging"/> |
| | | |
| | | <adm:tag name="logging" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-log-publisher</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="log-retention-policy" |
| | | plural-name="log-retention-policies" |
| | | package="org.opends.server.admin.std" |
| | | abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="log-retention-policy" |
| | | plural-name="log-retention-policies" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> are used to specify when log files should |
| | | be cleaned. |
| | | <adm:user-friendly-plural-name /> |
| | | are used to specify when log files should be cleaned. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="logging"/> |
| | | |
| | | <adm:tag name="logging" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-log-retention-policy</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="log-rotation-policy" |
| | | plural-name="log-rotation-policies" |
| | | package="org.opends.server.admin.std" |
| | | abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="log-rotation-policy" |
| | | plural-name="log-rotation-policies" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> are used to specify when log files should |
| | | be rotated. |
| | | <adm:user-friendly-plural-name /> |
| | | are used to specify when log files should be rotated. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="logging"/> |
| | | |
| | | <adm:tag name="logging" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-log-rotation-policy</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="md5-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="md5-password-storage-scheme" |
| | | plural-name="md5-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using an unsalted form of the MD5 message digest algorithm. This |
| | | implementation contains only an implementation for the user password syntax, |
| | | with a storage scheme name of "MD5". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using an unsalted |
| | | form of the MD5 message digest algorithm. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "MD5". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-md5-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="matching-rule" |
| | | plural-name="matching-rules" |
| | | package="org.opends.server.admin.std" abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="matching-rule" plural-name="matching-rules" |
| | | package="org.opends.server.admin.std" abstract="true" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define a set of rules for performing matching operations against assertion |
| | | values. The primary types of matching rules are equality, ordering, |
| | | substring, and approximate. |
| | | define a set of rules for performing matching operations against |
| | | assertion values. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:description> |
| | | The primary types of matching rules are equality, ordering, |
| | | substring, and approximate. |
| | | </adm:description> |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-matching-rule</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="member-virtual-attribute" |
| | | plural-name="user-defined-virtual-attributes" |
| | | package="org.opends.server.admin.std" extends="virtual-attribute" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to generate a member or uniqueMember attribute whose values are the |
| | | DNs of the members of a specified group. This is used to implement virtual |
| | | static group functionality, in which it is possible to create an entry which |
| | | looks like a static group but obtains all of its membership from a dynamic |
| | | group (or some other type of group, including another static group). |
| | | is used to generate a member or uniqueMember attribute whose values |
| | | are the DNs of the members of a specified group. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This is used to implement virtual static group functionality, in |
| | | which it is possible to create an entry which looks like a static |
| | | group but obtains all of its membership from a dynamic group (or |
| | | some other type of group, including another static group). |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-member-virtual-attribute</ldap:name> |
| | | <ldap:superior>ds-cfg-virtual-attribute</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>virtual-overrides-real</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="allow-retrieving-membership" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether to handle requests that request all values for the |
| | | virtual attribute. This can be a very expensive operation in some cases, |
| | | and is not in-line with the primary function of virtual static groups, |
| | | which is to make it possible to use static group idioms to determine |
| | | whether a given user is a member. |
| | | Indicates whether to handle requests that request all values for |
| | | the virtual attribute. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This can be a very expensive operation in some cases, and is not |
| | | in-line with the primary function of virtual static groups, which |
| | | is to make it possible to use static group idioms to determine |
| | | whether a given user is a member. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | virtual-overrides-real |
| | | </adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="memory-backend" plural-name="memory-backends" |
| | | package="org.opends.server.admin.std" |
| | | extends="backend" |
| | | package="org.opends.server.admin.std" extends="backend" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The memory backend provides a Directory Server backend implementation that |
| | | stores entries in memory. There is no persistence of any kind, and the |
| | | backend contents are cleared whenever the backend is brought online or |
| | | offline and when the server is restarted. |
| | | The memory backend provides a Directory Server backend |
| | | implementation that stores entries in memory. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | There is no persistence of any kind, and the backend contents are |
| | | cleared whenever the backend is brought online or offline and when |
| | | the server is restarted. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-memory-backend</ldap:name> |
| | | <ldap:superior>ds-cfg-backend</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.backends.MemoryBackend |
| | | </adm:value> |
| | | <adm:value>org.opends.server.backends.MemoryBackend</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="writability-mode"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>enabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="memory-usage-monitor-provider" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="memory-usage-monitor-provider" |
| | | plural-name="memory-usage-monitor-providers" |
| | | package="org.opends.server.admin.std" |
| | | extends="monitor-provider" |
| | | package="org.opends.server.admin.std" extends="monitor-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> may be used to publish information about |
| | | memory consumption and garbage collection activity in the JVM. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to publish information about memory consumption and |
| | | garbage collection activity in the JVM. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-memory-usage-monitor-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-monitor-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="monitor-backend" plural-name="monitor-backends" |
| | | package="org.opends.server.admin.std" |
| | | extends="backend" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="monitor-backend" |
| | | plural-name="monitor-backends" package="org.opends.server.admin.std" |
| | | extends="backend" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The monitor backend allows clients to access the information made available |
| | | by Directory Server monitor providers. |
| | | The monitor backend allows clients to access the information made |
| | | available by Directory Server monitor providers. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-monitor-backend</ldap:name> |
| | | <ldap:superior>ds-cfg-backend</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | org.opends.server.backends.MonitorBackend |
| | | </adm:value> |
| | | <adm:value>org.opends.server.backends.MonitorBackend</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="writability-mode"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>disabled</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="monitor-provider" |
| | | plural-name="monitor-providers" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | plural-name="monitor-providers" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | may be used to provide information about the state of the server or one of |
| | | its components. This information may be useful for monitoring and/or |
| | | troubleshooting purposes. |
| | | may be used to provide information about the state of the server or |
| | | one of its components. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:description> |
| | | This information may be useful for monitoring and/or troubleshooting |
| | | purposes. |
| | | </adm:description> |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-monitor-provider</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="network-group" |
| | | plural-name="network-groups" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="network-group" plural-name="network-groups" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> is used to classify incoming connections. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to classify incoming connections and route requests to |
| | | workflows. |
| | | </adm:synopsis> |
| | | <adm:tag name="user-management"/> |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-network-group</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the <adm:user-friendly-name /> |
| | | Indicates whether the |
| | | <adm:user-friendly-name /> |
| | | is enabled for use in the server. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If a network group is not enabled, then its contents will not be |
| | | If a network group is not enabled, then its workflows will not be |
| | | accessible when processing operations. |
| | | </adm:description> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="network-group-id" mandatory="true" read-only="true" |
| | | multi-valued="false"> |
| | | <adm:property name="network-group-id" mandatory="true" |
| | | read-only="true"> |
| | | <adm:synopsis> |
| | | Provides a name that will be used to identify the associated |
| | | <adm:user-friendly-name />. |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The name must be unique among all <adm:user-friendly-name /> |
| | | The name must be unique among all |
| | | <adm:user-friendly-name /> |
| | | in the server. |
| | | </adm:description> |
| | | <adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="workflow" mandatory="true" read-only="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Identifies a workflow in the network group. |
| | | Identifies the workflows in the network group. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:aggregation relation-name="workflow" parent-path="/"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="num-subordinates-virtual-attribute" |
| | | plural-name="num-subordinates-virtual-attributes" |
| | | package="org.opends.server.admin.std" extends="virtual-attribute" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to generate a virtual attribute that specifies the number of |
| | | immediate child entries that exist below the entry. |
| | | may be used to generate a virtual attribute that specifies the |
| | | number of immediate child entries that exist below the entry. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-num-subordinates-virtual-attribute</ldap:name> |
| | | <ldap:superior>ds-cfg-virtual-attribute</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="conflict-behavior"> |
| | | <adm:property-override name="conflict-behavior" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | virtual-overrides-real |
| | | </adm:value> |
| | | <adm:value>virtual-overrides-real</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="attribute-type"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>numSubordinates</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="ordering-matching-rule" |
| | | plural-name="ordering-matching-rules" |
| | | package="org.opends.server.admin.std" extends="matching-rule" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="ordering-matching-rules" |
| | | package="org.opends.server.admin.std" extends="matching-rule" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | define a set of rules for performing ordering matching operations against |
| | | assertion values. These matching rules are used for greater-than-or-equal |
| | | and less-than-or-equal comparisons, as well as for sorting. |
| | | define a set of rules for performing ordering matching operations |
| | | against assertion values. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | These matching rules are used for greater-than-or-equal and |
| | | less-than-or-equal comparisons, as well as for sorting. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-ordering-matching-rule</ldap:name> |
| | | <ldap:superior>ds-cfg-matching-rule</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="pkcs11-key-manager-provider" |
| | | plural-name="pkcs11-key-manager-providers" |
| | | package="org.opends.server.admin.std" extends="key-manager-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:TODO> |
| | | The key manager must be able to get a pin from somewhere. It looks |
| | | in property, then an environment variable, then a file, and finally |
| | | in a configuration attribute. At least one must be present. Can we |
| | | express this ordering and this "at least one" constraint? Perhaps |
| | | support a "one-of" element which can be used to group a set of |
| | | properties. |
| | | </adm:TODO> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provider provides the ability for the server to access the private |
| | | key information through the PKCS11 interface. This standard |
| | | interface is used by cryptographic accelerators and hardware |
| | | security modules. |
| | | key information through the PKCS11 interface. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This standard interface is used by cryptographic accelerators and |
| | | hardware security modules. |
| | | </adm:description> |
| | | <adm:constraint> |
| | | <adm:synopsis> |
| | | The key store pin must be specified using one of the key-store-pin |
| | | properties when the |
| | | <adm:user-friendly-name /> |
| | | is enabled. |
| | | </adm:synopsis> |
| | | <adm:condition> |
| | | <adm:implies> |
| | | <adm:contains property="enabled" value="true" /> |
| | | <adm:or> |
| | | <adm:is-present property="key-store-pin-property" /> |
| | | <adm:is-present property="key-store-pin-environment-variable" /> |
| | | <adm:is-present property="key-store-pin-file" /> |
| | | <adm:is-present property="key-store-pin" /> |
| | | </adm:or> |
| | | </adm:implies> |
| | | </adm:condition> |
| | | </adm:constraint> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-pkcs11-key-manager-provider</ldap:name> |
| | | <ldap:superior>ds-cfg-key-manager-provider</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-trust-store-pin-environment-variable</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-trust-store-pin-environment-variable |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="include-filter" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="include-filter" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The set of filters that define the entries that should be included |
| | | in the cache. |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="exclude-filter" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="exclude-filter" multi-valued="true"> |
| | | <adm:synopsis> |
| | | The set of filters that define the entries that should be excluded |
| | | from the cache. |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="password-generator" plural-name="password-generators" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="password-generator" |
| | | plural-name="password-generators" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are used by the password modify extended operation to construct |
| | | a new password for the user. |
| | | are used by the password modify extended operation to construct a |
| | | new password for the user. |
| | | </adm:synopsis> |
| | | <adm:tag name="user-management"/> |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-password-generator</ldap:name> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="password-modify-extended-operation-handler" |
| | | plural-name="password-modify-extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | extends="extended-operation-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="password-modify-extended-operation-handler" |
| | | plural-name="password-modify-extended-operation-handlers" |
| | | package="org.opends.server.admin.std" |
| | | extends="extended-operation-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides the ability for end users to change |
| | | their own passwords, or for administrators to reset user passwords. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides the ability for end users to change their own passwords, or |
| | | for administrators to reset user passwords. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | The password modify extended operation is defined in RFC 3062. It includes |
| | | the ability for users to provide their current password for further |
| | | confirmation of their identity when changing the password, and it also |
| | | includes the ability to generate a new password if the user doesn't provide |
| | | one. |
| | | The password modify extended operation is defined in RFC 3062. It |
| | | includes the ability for users to provide their current password for |
| | | further confirmation of their identity when changing the password, |
| | | and it also includes the ability to generate a new password if the |
| | | user doesn't provide one. |
| | | </adm:description> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-password-modify-extended-operation-handler</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-password-modify-extended-operation-handler |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-extended-operation-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="identity-mapper" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the name of the identity mapper that should be used in |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="password-policy" |
| | | plural-name="password-policies" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | |
| | | Define a number of password management rules, as well as |
| | | requirements for authentication processing. |
| | | </adm:synopsis> |
| | | <adm:tag name="user-management"/> |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-password-policy</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="password-attribute" mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="password-attribute" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the attribute type used to hold user passwords. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the attribute type used to hold user passwords. This |
| | | attribute type must be defined in the server schema, and it must have |
| | | either the user password or auth password syntax. Changes to this |
| | | configuration attribute will take effect immediately. |
| | | This attribute type must be defined in the server schema, and it |
| | | must have either the user password or auth password syntax. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:attribute-type /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-password-storage-scheme" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="deprecated-password-storage-scheme" |
| | | mandatory="false" multi-valued="true"> |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the password storage schemes that will be |
| | | considered deprecated for this password policy. If a user with |
| | | this password policy authenticates to the server and his/her |
| | | password is encoded with any deprecated schemes, then those values |
| | | will be removed and replaced with values encoded using the default |
| | | password storage scheme(s). |
| | | considered deprecated for this password policy. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | If a user with this password policy authenticates to the server |
| | | and his/her password is encoded with any deprecated schemes, then |
| | | those values will be removed and replaced with values encoded |
| | | using the default password storage scheme(s). |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="password-validator" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="password-validator" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the password validators that should be |
| | | used with the associated password storage scheme. |
| | | Specifies the names of the password validators that should be used |
| | | with the associated password storage scheme. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="account-status-notification-handler" |
| | | mandatory="false" multi-valued="true"> |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the account status notification handlers |
| | | that should be used with the associated password storage scheme. |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allow-user-password-changes" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="allow-user-password-changes"> |
| | | <adm:synopsis> |
| | | Indicates whether users will be allowed to change their own |
| | | passwords. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether users will be allowed to change their own |
| | | passwords. This check is made in addition to access control |
| | | evaluation, and therefore both must allow the password change for |
| | | it to occur. Changes to this configuration attribute will take |
| | | effect immediately. |
| | | This check is made in addition to access control evaluation, and |
| | | therefore both must allow the password change for it to occur. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="password-change-requires-current-password" |
| | | mandatory="false" multi-valued="false"> |
| | | <adm:property name="password-change-requires-current-password"> |
| | | <adm:synopsis> |
| | | Indicates whether user password changes will be required to use |
| | | the password modify extended operation and include the user's |
| | | current password before the change will be allowed. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether user password changes will be required to use |
| | | the password modify extended operation and include the user's |
| | | current password before the change will be allowed. Changes to |
| | | this configuration attribute will take effect immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | |
| | | </adm:property> |
| | | <adm:property name="force-change-on-add" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="force-change-on-add"> |
| | | <adm:synopsis> |
| | | Indicates whether users will be forced to change their passwords |
| | | upon first authenticating to the Directory Server after their |
| | | account has been created. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether users will be forced to change their passwords |
| | | upon first authenticating to the Directory Server after their |
| | | account has been created. Changes to this configuration attribute |
| | | will take effect immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | |
| | | |
| | | <adm:property name="force-change-on-reset" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="force-change-on-reset"> |
| | | <adm:synopsis> |
| | | Indicates whether users will be forced to change their passwords |
| | | if they are reset by an administrator. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether users will be forced to change their passwords |
| | | if they are reset by an administrator. For this purpose, anyone |
| | | with permission to change a given user's password other than that |
| | | user will be considered an administrator. Changes to this |
| | | configuration attribute will take effect immediately. |
| | | For this purpose, anyone with permission to change a given user's |
| | | password other than that user will be considered an administrator. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | <ldap:name>ds-cfg-force-change-on-reset</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | |
| | | |
| | | </adm:property> |
| | | <adm:property name="skip-validation-for-administrators" |
| | | mandatory="false" multi-valued="false"> |
| | | advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether passwords set by administrators will be allowed |
| | | to bypass the password validation process that will be required |
| | | for user password changes. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether passwords set by administrators (in add, modify, |
| | | or password modify operations) will be allowed to bypass the |
| | | password validation process that will be required for user |
| | | password changes. Changes to this configuration attribute will |
| | | take effect immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | |
| | | <adm:property name="password-generator" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="password-generator"> |
| | | <adm:synopsis> |
| | | Specifies the name of the password generator that should be used |
| | | with the associated password policy. |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | |
| | | <adm:property name="require-secure-authentication" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="require-secure-authentication"> |
| | | <adm:synopsis> |
| | | Indicates whether users with the associated password policy will |
| | | be required to authenticate in a secure manner. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether users with the associated password policy will |
| | | be required to authenticate in a secure manner. This could mean |
| | | either using a secure communication channel between the client and |
| | | the server, or using a SASL mechanism that does not expose the |
| | | credentials. Changes to this configuration attribute will take |
| | | effect immediately. |
| | | This could mean either using a secure communication channel |
| | | between the client and the server, or using a SASL mechanism that |
| | | does not expose the credentials. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | |
| | | <adm:property name="require-secure-password-changes" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="require-secure-password-changes"> |
| | | <adm:synopsis> |
| | | Indicates whether users with the associated password policy will |
| | | be required to change their password in a secure manner that does |
| | | not expose the credentials. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether users with the associated password policy will |
| | | be required to change their password in a secure manner that does |
| | | not expose the credentials. Changes to this configuration |
| | | attribute will take effect immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | |
| | | <adm:property name="allow-multiple-password-values" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="allow-multiple-password-values" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether user entries will be allowed to have multiple |
| | | distinct values for the password attribute. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether user entries will be allowed to have multiple |
| | | distinct values for the password attribute. This is potentially |
| | | dangerous because many mechanisms used to change the password do |
| | | not work well with such a configuration. If multiple password |
| | | values are allowed, then any of them may be used to authenticate, |
| | | and they will all be subject to the same policy constraints. |
| | | Changes to this configuration attribute will take effect |
| | | immediately. |
| | | This is potentially dangerous because many mechanisms used to |
| | | change the password do not work well with such a configuration. If |
| | | multiple password values are allowed, then any of them may be used |
| | | to authenticate, and they will all be subject to the same policy |
| | | constraints. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allow-pre-encoded-passwords" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="allow-pre-encoded-passwords" advanced="true"> |
| | | <adm:synopsis> |
| | | _Indicates whether users will be allowed to change their passwords |
| | | Indicates whether users will be allowed to change their passwords |
| | | by providing a pre-encoded value. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether users will be allowed to change their passwords |
| | | by providing a pre-encoded value. This can cause a security risk |
| | | because the clear-text version of the password is not known and |
| | | therefore validation checks cannot be applied to it. Changes to |
| | | this configuration attribute will take effect immediately. |
| | | This can cause a security risk because the clear-text version of |
| | | the password is not known and therefore validation checks cannot |
| | | be applied to it. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="min-password-age" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="min-password-age"> |
| | | <adm:synopsis> |
| | | Specifies the minimum length of time that must pass after a |
| | | password change before the user will be allowed to change the |
| | | password again. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the minimum length of time that must pass after a |
| | | password change before the user will be allowed to change the |
| | | password again. The value of this attribute should be an integer |
| | | followed by a unit of seconds, minutes, hours, days, or weeks. |
| | | This setting can be used to prevent users from changing their |
| | | passwords repeatedly over a short period of time to flush and old |
| | | password from the history so that it may be re-used. Changes to |
| | | this configuration attribute will take effect immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. This setting can |
| | | be used to prevent users from changing their passwords repeatedly |
| | | over a short period of time to flush and old password from the |
| | | history so that it may be re-used. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="max-password-age" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="max-password-age"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that a user may continue |
| | | using the same password before it must be changed. |
| | | using the same password before it must be changed (i.e., the |
| | | password expiration interval). |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum length of time that a user may continue |
| | | using the same password before it must be changed (i.e., the |
| | | password expiration interval). The value of this attribute should |
| | | be an integer followed by a unit of seconds, minutes, hours, days, |
| | | or weeks. A value of 0 seconds will disable password expiration. |
| | | Changes to this configuration attribute will take effect |
| | | immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. A value of 0 |
| | | seconds will disable password expiration. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | |
| | | <adm:property name="max-password-reset-age" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="max-password-reset-age"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that users have to change |
| | | passwords after they have been reset by an administrator before |
| | | they become locked. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum length of time that users have to change |
| | | passwords after they have been reset by an administrator before |
| | | they become locked. The value of this attribute should be an |
| | | integer followed by a unit of seconds, minutes, hours, days, or |
| | | weeks. A value of 0 seconds will disable this feature. Changes to |
| | | this configuration attribute will take effect immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. A value of 0 |
| | | seconds will disable this feature. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="password-expiration-warning-interval" |
| | | mandatory="false" multi-valued="false"> |
| | | <adm:property name="password-expiration-warning-interval"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time before a user's password |
| | | actually expires that the server will begin to include warning |
| | | notifications in bind responses for that user. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum length of time before a user's password |
| | | actually expires that the server will begin to include warning |
| | | notifications in bind responses for that user. The value of this |
| | | attribute should be an integer followed by a unit of seconds, |
| | | minutes, hours, days, or weeks. A value of 0 seconds will disable |
| | | the warning interval. Changes to this configuration attribute will |
| | | take effect immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. A value of 0 |
| | | seconds will disable the warning interval. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="expire-passwords-without-warning" |
| | | mandatory="false" multi-valued="false"> |
| | | <adm:property name="expire-passwords-without-warning"> |
| | | <adm:synopsis> |
| | | Indicates whether the Directory Server should allow a user's |
| | | password to expire even if that user has never seen an expiration |
| | | warning notification. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether the Directory Server should allow a user's |
| | | password to expire even if that user has never seen an expiration |
| | | warning notification. If this setting is enabled, then accounts |
| | | will always be expired when the expiration time arrives. If it is |
| | | disabled, then the user will always receive at least one warning |
| | | notification, and the password expiration will be set to the |
| | | warning time plus the warning interval. Changes to this |
| | | configuration attribute will take effect immediately. |
| | | If this setting is enabled, then accounts will always be expired |
| | | when the expiration time arrives. If it is disabled, then the user |
| | | will always receive at least one warning notification, and the |
| | | password expiration will be set to the warning time plus the |
| | | warning interval. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="allow-expired-password-changes" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="allow-expired-password-changes"> |
| | | <adm:synopsis> |
| | | Indicates whether a user whose password is expired will still be |
| | | allowed to change that password using the password modify extended |
| | | operation. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether a user whose password is expired will still be |
| | | allowed to change that password using the password modify extended |
| | | operation. Changes to this configuration attribute will take |
| | | effect immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="grace-login-count" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="grace-login-count"> |
| | | <adm:synopsis> |
| | | Specifies the number of grace logins that a user will be allowed |
| | | after the account has expired to allow that user to choose a new |
| | | password. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the number of grace logins that a user will be allowed |
| | | after the account has expired to allow that user to choose a new |
| | | password. A value of 0 indicates that no grace logins will be |
| | | allowed. Changes to this configuration attribute will take effect |
| | | immediately. |
| | | A value of 0 indicates that no grace logins will be allowed. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="lockout-failure-count" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="lockout-failure-count"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of authentication failures that a |
| | | user should be allowed before the account is locked out. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum number of authentication failures that a |
| | | user should be allowed before the account is locked out. A value |
| | | of 0 indicates that accounts should never be locked out due to |
| | | failed attempts. changes to this configuration attribute will take |
| | | effect immediately. |
| | | A value of 0 indicates that accounts should never be locked out |
| | | due to failed attempts. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="lockout-duration" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="lockout-duration"> |
| | | <adm:synopsis> |
| | | Specifies the length of time that an account should be locked |
| | | after too many authentication failures. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the length of time that an account should be locked |
| | | after too many authentication failures. The value of this |
| | | attribute should be an integer followed by a unit of seconds, |
| | | minutes, hours, days, or weeks. A value of 0 seconds indicates |
| | | that the account should remain locked until an administrator |
| | | resets the password. Changes to this configuration attribute will |
| | | take effect immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. A value of 0 |
| | | seconds indicates that the account should remain locked until an |
| | | administrator resets the password. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="lockout-failure-expiration-interval" |
| | | mandatory="false" multi-valued="false"> |
| | | <adm:property name="lockout-failure-expiration-interval"> |
| | | <adm:synopsis> |
| | | Specifies the length of time that should pass before an |
| | | authentication failure is no longer counted against a user for the |
| | | purposes of account lockout. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the length of time that should pass before an |
| | | authentication failure is no longer counted against a user for the |
| | | purposes of account lockout. The value of this attribute should be |
| | | an integer followed by a unit of seconds, minutes, hours, days, or |
| | | weeks. A value of 0 seconds indicates that the authentication |
| | | failures should never expire. The failure count will always be |
| | | cleared upon a successful authentication. Changes to this |
| | | configuration attribute will take effect immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. A value of 0 |
| | | seconds indicates that the authentication failures should never |
| | | expire. The failure count will always be cleared upon a successful |
| | | authentication. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="require-change-by-time" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="require-change-by-time"> |
| | | <adm:synopsis> |
| | | Specifies the time by which all users with the associated password |
| | | policy must change their passwords. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the time by which all users with the associated password |
| | | policy must change their passwords. The value should be expressed |
| | | in a generalized time format. If this time is equal to the current |
| | | time or is in the past, then all users will be required to change |
| | | their passwords immediately. The behavior of the server in this |
| | | mode will be identical to the behavior observed when users are |
| | | forced to change their passwords after an administrative reset. |
| | | Changes to this configuration attribute will take effect |
| | | immediately. |
| | | The value should be expressed in a generalized time format. If |
| | | this time is equal to the current time or is in the past, then all |
| | | users will be required to change their passwords immediately. The |
| | | behavior of the server in this mode will be identical to the |
| | | behavior observed when users are forced to change their passwords |
| | | after an administrative reset. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="last-login-time-attribute" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="last-login-time-attribute"> |
| | | <adm:synopsis> |
| | | Specifies the name or OID of the attribute type that should be |
| | | used to hold the last login time for users with the associated |
| | | password policy. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the name or OID of the attribute type that should be |
| | | used to hold the last login time for users with the associated |
| | | password policy. This attribute type must be defined in the |
| | | Directory Server schema and must either be defined as an |
| | | operational attribute or must be allowed by the set of |
| | | objectClasses for all users with the associated password policy. |
| | | Changes to this configuration attribute will take effect |
| | | immediately. |
| | | This attribute type must be defined in the Directory Server schema |
| | | and must either be defined as an operational attribute or must be |
| | | allowed by the set of objectClasses for all users with the |
| | | associated password policy. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="last-login-time-format" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="last-login-time-format"> |
| | | <adm:synopsis> |
| | | Specifies the format string that should be used to generate the |
| | | last login time value for users with the associated password |
| | | policy. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the format string that should be used to generate the |
| | | last login time value for users with the associated password |
| | | policy. This format string should conform to the syntax described |
| | | in the API documentation for the java.text.SimpleDateFormat class. |
| | | Changes to this configuration attribute will take effect |
| | | immediately. |
| | | This format string should conform to the syntax described in the |
| | | API documentation for the java.text.SimpleDateFormat class. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="previous-last-login-time-format" mandatory="false" |
| | | <adm:property name="previous-last-login-time-format" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the format string(s) that may have been used with the |
| | |
| | | the password policy. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the format string(s) that may have been used with the |
| | | last login time at any point in the past for users associated with |
| | | the password policy. These values are used to make it possible to |
| | | parse previous values, but will not be used to set new values. |
| | | These format strings should conform to the syntax described in the |
| | | API documentation for the java.text.SimpleDateFormat class. |
| | | Changes to this configuration attribute will take effect |
| | | immediately. |
| | | These values are used to make it possible to parse previous |
| | | values, but will not be used to set new values. These format |
| | | strings should conform to the syntax described in the API |
| | | documentation for the java.text.SimpleDateFormat class. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="idle-lockout-interval" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="idle-lockout-interval"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that an account may remain |
| | | idle (i.e., the associated user does not authenticate to the |
| | | server) before that user is locked out. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum length of time that an account may remain |
| | | idle (i.e., the associated user does not authenticate to the |
| | | server) before that user is locked out. The value of this |
| | | attribute should be an integer followed by a unit of seconds, |
| | | minutes, hours, days, or weeks. A value of 0 seconds indicates |
| | | that idle accounts should not automatically be locked out. This |
| | | feature will only be available if the last login time is |
| | | maintained. Changes to this configuration attribute will take |
| | | effect immediately. |
| | | The value of this attribute should be an integer followed by a |
| | | unit of seconds, minutes, hours, days, or weeks. A value of 0 |
| | | seconds indicates that idle accounts should not automatically be |
| | | locked out. This feature will only be available if the last login |
| | | time is maintained. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="state-update-failure-policy" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="state-update-failure-policy" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies how the server should deal with the inability to update password |
| | | policy state information during an authentication attempt. In particular, |
| | | it may be used to control whether an otherwise successful bind operation |
| | | should fail if a failure occurs while attempting to update password policy |
| | | state information (e.g., to clear a record of previous authentication |
| | | failures or to update the last login time), or even whether to reject a |
| | | bind request if it is known ahead of time that it will not be possible to |
| | | update the authentication failure times in the event of an unsuccessful |
| | | bind attempt (e.g., if the backend writability mode is disabled). |
| | | Specifies how the server should deal with the inability to update |
| | | password policy state information during an authentication |
| | | attempt. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | In particular, it may be used to control whether an otherwise |
| | | successful bind operation should fail if a failure occurs while |
| | | attempting to update password policy state information (e.g., to |
| | | clear a record of previous authentication failures or to update |
| | | the last login time), or even whether to reject a bind request if |
| | | it is known ahead of time that it will not be possible to update |
| | | the authentication failure times in the event of an unsuccessful |
| | | bind attempt (e.g., if the backend writability mode is disabled). |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>reactive</adm:value> |
| | |
| | | <adm:enumeration> |
| | | <adm:value name="ignore"> |
| | | <adm:synopsis> |
| | | If a bind attempt would otherwise be successful, then do not reject |
| | | it if a problem occurs while attempting to update the password |
| | | policy state information for the user. |
| | | If a bind attempt would otherwise be successful, then do not |
| | | reject it if a problem occurs while attempting to update the |
| | | password policy state information for the user. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="reactive"> |
| | | <adm:synopsis> |
| | | Even if a bind attempt would otherwise be successful, reject it if a |
| | | problem occurs while attempting to update the password policy state |
| | | information for the user. |
| | | Even if a bind attempt would otherwise be successful, reject |
| | | it if a problem occurs while attempting to update the |
| | | password policy state information for the user. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="proactive"> |
| | | <adm:synopsis> |
| | | Proactively reject any bind attempt if it is known ahead of time |
| | | that it would not be possible to update the user's password policy |
| | | state information. |
| | | Proactively reject any bind attempt if it is known ahead of |
| | | time that it would not be possible to update the user's |
| | | password policy state information. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="password-history-count" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="password-history-count"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of former passwords to maintain in the |
| | | password history. When choosing a new password, the proposed password |
| | | will be checked to ensure that it does not match the current password, nor |
| | | any other password in the history list. A value of zero indicates that |
| | | either no password history is to be maintained (if the password history |
| | | duration has a value of zero seconds), or that there is no maximum number |
| | | of passwords to maintain in the history (if the password history duration |
| | | has a value greater than zero seconds). |
| | | Specifies the maximum number of former passwords to maintain in |
| | | the password history. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When choosing a new password, the proposed password will be |
| | | checked to ensure that it does not match the current password, nor |
| | | any other password in the history list. A value of zero indicates |
| | | that either no password history is to be maintained (if the |
| | | password history duration has a value of zero seconds), or that |
| | | there is no maximum number of passwords to maintain in the history |
| | | (if the password history duration has a value greater than zero |
| | | seconds). |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>0</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="password-history-duration" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="password-history-duration"> |
| | | <adm:synopsis> |
| | | Specifies the maximum length of time that passwords should remain in the |
| | | password history. When choosing a new password, the proposed password |
| | | will be checked to ensure that it does not match the current password, nor |
| | | any other password in the history list. A value of zero seconds indicates |
| | | that either no password history is to be maintained (if the password |
| | | history count has a value of zero), or that there is no maximum duration |
| | | for passwords in the history (if the password history count has a value |
| | | greater than zero). |
| | | Specifies the maximum length of time that passwords should remain |
| | | in the password history. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | When choosing a new password, the proposed password will be |
| | | checked to ensure that it does not match the current password, nor |
| | | any other password in the history list. A value of zero seconds |
| | | indicates that either no password history is to be maintained (if |
| | | the password history count has a value of zero), or that there is |
| | | no maximum duration for passwords in the history (if the password |
| | | history count has a value greater than zero). |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>0 seconds</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="s" lower-limit="0" upper-limit="2147483647" |
| | | allow-unlimited="false" /> |
| | | <adm:duration base-unit="s" lower-limit="0" |
| | | upper-limit="2147483647" allow-unlimited="false" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="password-policy-import-plugin" |
| | | plural-name="password-policy-import-plugins" |
| | | package="org.opends.server.admin.std" extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to ensure that clear-text passwords contained in LDIF entries are |
| | | properly encoded before they are stored in the appropriate Directory Server |
| | | backend. |
| | | is used to ensure that clear-text passwords contained in LDIF |
| | | entries are properly encoded before they are stored in the |
| | | appropriate Directory Server backend. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-password-policy-import-plugin</ldap:name> |
| | | <ldap:superior>ds-cfg-plugin</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="plugin-type"> |
| | | <adm:property-override name="plugin-type" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>ldifimport</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="default-user-password-storage-scheme" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property-override name="invoke-for-internal-operations"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="default-user-password-storage-scheme" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the password storage schemes that will be |
| | | used for encoding passwords contained in attributes with the user |
| | |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If the default password policy uses the attribute with the user |
| | | password syntax, then the server will use the default password storage |
| | | schemes for that password policy. Otherwise, it will encode user |
| | | password values using the "SSHA" scheme. |
| | | If the default password policy uses the attribute with the |
| | | user password syntax, then the server will use the default |
| | | password storage schemes for that password policy. Otherwise, |
| | | it will encode user password values using the "SSHA" scheme. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:aggregation relation-name="password-storage-scheme" parent-path="/"> |
| | | <adm:aggregation relation-name="password-storage-scheme" |
| | | parent-path="/"> |
| | | <adm:target-needs-enabling-condition> |
| | | <adm:contains property="enabled" value="true" /> |
| | | </adm:target-needs-enabling-condition> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-default-user-password-storage-scheme</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-default-user-password-storage-scheme |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="default-auth-password-storage-scheme" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="default-auth-password-storage-scheme" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of password storage schemes that will be used |
| | | for encoding passwords contained in attributes with the auth |
| | |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If the default password policy uses an attribute with the auth |
| | | password syntax, then the server will use the default password storage |
| | | schemes for that password policy. Otherwise, it will encode auth |
| | | password values using the "SHA1" scheme. |
| | | password syntax, then the server will use the default password |
| | | storage schemes for that password policy. Otherwise, it will |
| | | encode auth password values using the "SHA1" scheme. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:aggregation relation-name="password-storage-scheme" parent-path="/"> |
| | | <adm:aggregation relation-name="password-storage-scheme" |
| | | parent-path="/"> |
| | | <adm:target-needs-enabling-condition> |
| | | <adm:contains property="enabled" value="true" /> |
| | | </adm:target-needs-enabling-condition> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-default-auth-password-storage-scheme</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-default-auth-password-storage-scheme |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object |
| | | name="password-policy-state-extended-operation-handler" |
| | | plural-name="password-policy-state-extended-operation-handlers" |
| | |
| | | extends="extended-operation-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides the ability for administrators to |
| | | request and optionally alter password policy state information for a |
| | | specified user. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides the ability for administrators to request and optionally |
| | | alter password policy state information for a specified user. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name> |
| | |
| | | <ldap:superior>ds-cfg-extended-operation-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="password-storage-scheme" |
| | | plural-name="password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | > |
| | | |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | defines a module that implements a password storage scheme. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="user-management"/> |
| | | |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-password-storage-scheme</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="java-class" mandatory="true"> |
| | | <adm:synopsis> |
| | | The fully-qualified name of the Java class that provides the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="password-validator" plural-name="password-validators" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="password-validator" |
| | | plural-name="password-validators" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for determining whether proposed passwords are acceptable |
| | | for use. |
| | | are responsible for determining whether proposed passwords are |
| | | acceptable for use. |
| | | </adm:synopsis> |
| | | <adm:tag name="user-management"/> |
| | | <adm:tag name="user-management" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-password-validator</ldap:name> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="plain-sasl-mechanism-handler" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="plain-sasl-mechanism-handler" |
| | | plural-name="plain-sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" extends="sasl-mechanism-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to perform all processing related to SASL PLAIN authentication. |
| | | is used to perform all processing related to SASL PLAIN |
| | | authentication. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-sasl-mechanism-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="plugin" |
| | | plural-name="plugins" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="plugin" plural-name="plugins" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | provide a mechanism for executing custom code at specified points in |
| | | operation processing and in the course of other events like connection |
| | | establishment and termination, server startup and shutdown, and LDIF import |
| | | and export. |
| | | operation processing and in the course of other events like |
| | | connection establishment and termination, server startup and |
| | | shutdown, and LDIF import and export. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-plugin</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="enabled" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicate whether the |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-type" mandatory="true" multi-valued="true"> |
| | | <adm:property name="plugin-type" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | The plugin types, which define the conditions under which this plugin |
| | | should be invoked. The plugin must be disabled and re-enabled for plugin |
| | | type changes to take effect. |
| | | The plugin types, which define the conditions under which this |
| | | plugin should be invoked. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:component-restart /> |
| | |
| | | </adm:value> |
| | | <adm:value name="postconnect"> |
| | | <adm:synopsis> |
| | | Invoked whenever a new connection is established to the server. |
| | | Invoked whenever a new connection is established to the |
| | | server. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postdisconnect"> |
| | | <adm:synopsis> |
| | | Invoked whenever an existing connection is terminated (by either |
| | | the client or the server). |
| | | Invoked whenever an existing connection is terminated (by |
| | | either the client or the server). |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="ldifimport"> |
| | |
| | | </adm:value> |
| | | <adm:value name="ldifexport"> |
| | | <adm:synopsis> |
| | | Invoked for each operation to be written during an LDIF export. |
| | | Invoked for each operation to be written during an LDIF |
| | | export. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="preparseabandon"> |
| | |
| | | </adm:value> |
| | | <adm:value name="postoperationadd"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core add processing but before sending |
| | | the response to the client. |
| | | Invoked after completing the core add processing but before |
| | | sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationbind"> |
| | |
| | | </adm:value> |
| | | <adm:value name="postoperationcompare"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core compare processing but before |
| | | sending the response to the client. |
| | | Invoked after completing the core compare processing but |
| | | before sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationdelete"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core delete processing but before |
| | | sending the response to the client. |
| | | Invoked after completing the core delete processing but |
| | | before sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationextended"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core extended processing but before |
| | | sending the response to the client. |
| | | Invoked after completing the core extended processing but |
| | | before sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationmodify"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core modify processing but before |
| | | sending the response to the client. |
| | | Invoked after completing the core modify processing but |
| | | before sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationmodifydn"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core modify DN processing but before |
| | | sending the response to the client. |
| | | Invoked after completing the core modify DN processing but |
| | | before sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationsearch"> |
| | | <adm:synopsis> |
| | | Invoked after completing the core search processing but before |
| | | sending the response to the client. |
| | | Invoked after completing the core search processing but |
| | | before sending the response to the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postoperationunbind"> |
| | |
| | | </adm:value> |
| | | <adm:value name="postresponsesearch"> |
| | | <adm:synopsis> |
| | | Invoked after sending the search result done message to the client. |
| | | Invoked after sending the search result done message to the |
| | | client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postsynchronizationadd"> |
| | | <adm:synopsis> |
| | | Invoked after completing post-synchronization processing for an add |
| | | operation. |
| | | Invoked after completing post-synchronization processing for |
| | | an add operation. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postsynchronizationdelete"> |
| | | <adm:synopsis> |
| | | Invoked after completing post-synchronization processing for a |
| | | delete operation. |
| | | Invoked after completing post-synchronization processing for |
| | | a delete operation. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postsynchronizationmodify"> |
| | | <adm:synopsis> |
| | | Invoked after completing post-synchronization processing for a |
| | | modify operation. |
| | | Invoked after completing post-synchronization processing for |
| | | a modify operation. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="postsynchronizationmodifydn"> |
| | | <adm:synopsis> |
| | | Invoked after completing post-synchronization processing for a |
| | | modify DN operation. |
| | | Invoked after completing post-synchronization processing for |
| | | a modify DN operation. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="searchresultentry"> |
| | |
| | | </adm:value> |
| | | <adm:value name="searchresultreference"> |
| | | <adm:synopsis> |
| | | Invoked before sending a search result reference to the client. |
| | | Invoked before sending a search result reference to the |
| | | client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="subordinatemodifydn"> |
| | | <adm:synopsis> |
| | | Invoked in the course of moving or renaming an entry subordinate to |
| | | the target of a modify DN operation. |
| | | Invoked in the course of moving or renaming an entry |
| | | subordinate to the target of a modify DN operation. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="intermediateresponse"> |
| | | <adm:synopsis> |
| | | Invoked before sending an intermediate repsonse message to the |
| | | client. |
| | | Invoked before sending an intermediate repsonse message to |
| | | the client. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="invoke-for-internal-operations" mandatory="false"> |
| | | <adm:property name="invoke-for-internal-operations" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether the plugin should be invoked for internal operations. |
| | | Note that any plugin which may be invoked for internal operations should |
| | | be careful to ensure that they do not create any new internal operatons |
| | | that can cause the same plugin to be re-invoked. |
| | | Indicates whether the plugin should be invoked for internal |
| | | operations. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Note that any plugin which may be invoked for internal operations |
| | | should be careful to ensure that they do not create any new |
| | | internal operatons that can cause the same plugin to be |
| | | re-invoked. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>true</adm:value> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="plugin-root" |
| | | plural-name="plugin-roots" |
| | | package="org.opends.server.admin.std" abstract="false" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | xmlns:cli="http://www.opends.org/admin-cli"> |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="plugin-root" plural-name="plugin-roots" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | xmlns:cli="http://www.opends.org/admin-cli"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | defines the parent entry for all plugins defined in the server. It may also |
| | | include configuration attributes that define the order in which those |
| | | plugins should be loaded and invoked. |
| | | defines the parent entry for all plugins defined in the server. |
| | | </adm:synopsis> |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:description> |
| | | It may also include configuration attributes that define the order |
| | | in which those plugins should be loaded and invoked. |
| | | </adm:description> |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-plugin-root</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:relation name="plugin"> |
| | | <adm:one-to-many /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence /> |
| | | <ldap:naming-attribute> |
| | | cn |
| | | </ldap:naming-attribute> |
| | | <ldap:naming-attribute>cn</ldap:naming-attribute> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </cli:relation> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | |
| | | <adm:property name="plugin-order-startup" mandatory="false"> |
| | | <adm:property name="plugin-order-startup"> |
| | | <adm:synopsis> |
| | | Specifies the order in which startup plugins should be loaded and invoked. |
| | | The value should be a comma-delimited list of plugin names (where the |
| | | plugin name is the RDN value from the plugin configuration entry DN). |
| | | The list may include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified plugins |
| | | will be undefined). |
| | | Specifies the order in which startup plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk |
| | | to indicate the position of any unspecified plugin (and the |
| | | relative order of those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which startup plugins are loaded and invoked will be |
| | | undefined. |
| | | The order in which startup plugins are loaded and invoked will |
| | | be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-shutdown" mandatory="false"> |
| | | <adm:property name="plugin-order-shutdown"> |
| | | <adm:synopsis> |
| | | Specifies the order in which shutdown plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk |
| | | to indicate the position of any unspecified plugin (and the |
| | | relative order of those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which shutdown plugins are loaded and invoked will be |
| | | undefined. |
| | | The order in which shutdown plugins are loaded and invoked |
| | | will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-connect" mandatory="false"> |
| | | <adm:property name="plugin-order-post-connect"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-connect plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which post-connect plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk |
| | | to indicate the position of any unspecified plugin (and the |
| | | relative order of those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-connect plugins are loaded and invoked will be |
| | | undefined. |
| | | The order in which post-connect plugins are loaded and invoked |
| | | will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-disconnect" mandatory="false"> |
| | | <adm:property name="plugin-order-post-disconnect"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-disconnect plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which post-disconnect plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-disconnect plugins are loaded and invoked will |
| | | be undefined. |
| | | The order in which post-disconnect plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-ldif-import" mandatory="false"> |
| | | <adm:property name="plugin-order-ldif-import"> |
| | | <adm:synopsis> |
| | | Specifies the order in which LDIF import plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which LDIF import plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk |
| | | to indicate the position of any unspecified plugin (and the |
| | | relative order of those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which LDIF import plugins are loaded and invoked will be |
| | | undefined. |
| | | The order in which LDIF import plugins are loaded and invoked |
| | | will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-ldif-export" mandatory="false"> |
| | | <adm:property name="plugin-order-ldif-export"> |
| | | <adm:synopsis> |
| | | Specifies the order in which LDIF export plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which LDIF export plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk |
| | | to indicate the position of any unspecified plugin (and the |
| | | relative order of those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which LDIF export plugins are loaded and invoked will be |
| | | undefined. |
| | | The order in which LDIF export plugins are loaded and invoked |
| | | will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-abandon" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-abandon"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse abandon plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse abandon plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse abandon plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse abandon plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-add" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-add"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse add plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse add plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse add plugins are loaded and invoked will |
| | | be undefined. |
| | | The order in which pre-parse add plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-bind" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-bind"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse bind plugins should be loaded and |
| | | invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse bind plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse bind plugins are loaded and invoked will |
| | | be undefined. |
| | | The order in which pre-parse bind plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-compare" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-compare"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse compare plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse compare plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse compare plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse compare plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-delete" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-delete"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse delete plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse delete plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse delete plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse delete plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-extended" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-extended"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse extended operation plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse extended operation plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse extended operation plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which pre-parse extended operation plugins are |
| | | loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-modify" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-modify"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse modify plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse modify plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse modify plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse modify plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-modify-dn" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-modify-dn"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse modify DN plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse modify DN plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse modify DN plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse modify DN plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-search" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-search"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse search plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse search plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse search plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse search plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-parse-unbind" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-parse-unbind"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-parse unbind plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-parse unbind plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-parse unbind plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-parse unbind plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-add" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-add"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation add plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation add plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation add plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-operation add plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-bind" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-bind"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation bind plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation bind plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation bind plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-operation bind plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-compare" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-compare"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation compare plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation compare plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation compare plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which pre-operation compare plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-delete" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-delete"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation delete plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation delete plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-extended" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-extended"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation extended operation plugins |
| | | should be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation extended operation |
| | | plugins should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation extended operation plugins are loaded |
| | | and invoked will be undefined. |
| | | The order in which pre-operation extended operation plugins |
| | | are loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-pre-operation-extended</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-pre-operation-extended |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-modify" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-modify"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation modify plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation modify plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation modify plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-operation modify plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-modify-dn" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-modify-dn"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation modify DN plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation modify DN plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation modify DN plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which pre-operation modify DN plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-pre-operation-modify-dn</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-pre-operation-modify-dn |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-pre-operation-search" mandatory="false"> |
| | | <adm:property name="plugin-order-pre-operation-search"> |
| | | <adm:synopsis> |
| | | Specifies the order in which pre-operation search plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which pre-operation search plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which pre-operation searc plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which pre-operation searc plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-abandon" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-abandon"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation abandon plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation abandon plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation abandon plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation abandon plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-operation-abandon</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-operation-abandon |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-add" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-add"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation add plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation add plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation add plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which post-operation add plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-bind" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-bind"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation bind plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation bind plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation bind plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which post-operation bind plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-compare" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-compare"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation compare plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation compare plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation compare plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation compare plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-operation-compare</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-operation-compare |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-delete" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-delete"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation delete plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation delete plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation delete plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation delete plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-extended" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-extended"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation extended operation plugins |
| | | should be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation extended operation |
| | | plugins should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation extended operation plugins are |
| | | loaded and invoked will be undefined. |
| | | The order in which post-operation extended operation plugins |
| | | are loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-operation-extended</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-operation-extended |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-modify" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-modify"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation modify plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation modify plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation modify plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation modify plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-modify-dn" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-modify-dn"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation modify DN plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation modify DN plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation modify DN plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation modify DN plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-operation-modify-dn</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-operation-modify-dn |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-search" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-search"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation search plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation search plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation search plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation search plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-operation-unbind" mandatory="false"> |
| | | <adm:property name="plugin-order-post-operation-unbind"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-operation unbind plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-operation unbind plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-operation unbind plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-operation unbind plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-add" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-add"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response add plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which post-response add plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response add plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which post-response add plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-bind" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-bind"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response bind plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which post-response bind plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-compare" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-compare"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response compare plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-response compare plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response compare plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which post-response compare plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-delete" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-delete"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response delete plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-response delete plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response delete plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which post-response delete plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-extended" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-extended"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response extended operation plugins |
| | | should be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-response extended operation |
| | | plugins should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response extended operation plugins are loaded |
| | | and invoked will be undefined. |
| | | The order in which post-response extended operation plugins |
| | | are loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-response-extended</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-response-extended |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-modify" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-modify"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response modify plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-response modify plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response modify plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which post-response modify plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-modify-dn" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-modify-dn"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response modify DN plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-response modify DN plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response modify DN plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-response-modify-dn</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-synchronization-add" mandatory="false"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization add plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization add plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-synchronization-add</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-synchronization-delete" |
| | | mandatory="false"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization delete plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization delete plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-synchronization-delete</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-synchronization-modify" |
| | | mandatory="false"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization modify plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization modify plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-post-synchronization-modify</ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-synchronization-modify-dn" |
| | | mandatory="false"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization modify DN plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization modify DN plugins are loaded |
| | | The order in which post-response modify DN plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-response-modify-dn |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="plugin-order-post-synchronization-add"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization add plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization add plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-synchronization-add |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="plugin-order-post-synchronization-delete"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization delete plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization delete plugins are |
| | | loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-synchronization-delete |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="plugin-order-post-synchronization-modify"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization modify plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization modify plugins are |
| | | loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-synchronization-modify |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="plugin-order-post-synchronization-modify-dn"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-synchronization modify DN |
| | | plugins should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-synchronization modify DN plugins are |
| | | loaded and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-post-synchronization-modify-dn |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-post-response-search" mandatory="false"> |
| | | <adm:property name="plugin-order-post-response-search"> |
| | | <adm:synopsis> |
| | | Specifies the order in which post-response search plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which post-response search plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which post-response search plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which post-response search plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-search-result-entry" mandatory="false"> |
| | | <adm:property name="plugin-order-search-result-entry"> |
| | | <adm:synopsis> |
| | | Specifies the order in which search result entry plugins should be loaded |
| | | and invoked. The value should be a comma-delimited list of plugin names |
| | | (where the plugin name is the RDN value from the plugin configuration |
| | | entry DN). The list may include at most one asterisk to indicate the |
| | | position of any unspecified plugin (and the relative order of those |
| | | unspecified plugins will be undefined). |
| | | Specifies the order in which search result entry plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of |
| | | plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which search result entry plugins are loaded and invoked |
| | | will be undefined. |
| | | The order in which search result entry plugins are loaded and |
| | | invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-search-result-reference" mandatory="false"> |
| | | <adm:property name="plugin-order-search-result-reference"> |
| | | <adm:synopsis> |
| | | Specifies the order in which search result reference plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which search result reference plugins |
| | | should be loaded and invoked. The value should be a |
| | | comma-delimited list of plugin names (where the plugin name is the |
| | | RDN value from the plugin configuration entry DN). The list may |
| | | include at most one asterisk to indicate the position of any |
| | | unspecified plugin (and the relative order of those unspecified |
| | | plugins will be undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which search result reference plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which search result reference plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-plugin-order-search-result-reference</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-plugin-order-search-result-reference |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-subordinate-modify-dn" mandatory="false"> |
| | | <adm:property name="plugin-order-subordinate-modify-dn"> |
| | | <adm:synopsis> |
| | | Specifies the order in which subordinate modify DN plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which subordinate modify DN plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which subordinate modify DN plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which subordinate modify DN plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="plugin-order-intermediate-response" mandatory="false"> |
| | | <adm:property name="plugin-order-intermediate-response"> |
| | | <adm:synopsis> |
| | | Specifies the order in which intermediate response plugins should be |
| | | loaded and invoked. The value should be a comma-delimited list of plugin |
| | | names (where the plugin name is the RDN value from the plugin |
| | | configuration entry DN). The list may include at most one asterisk to |
| | | indicate the position of any unspecified plugin (and the relative order of |
| | | those unspecified plugins will be undefined). |
| | | Specifies the order in which intermediate response plugins should |
| | | be loaded and invoked. The value should be a comma-delimited list |
| | | of plugin names (where the plugin name is the RDN value from the |
| | | plugin configuration entry DN). The list may include at most one |
| | | asterisk to indicate the position of any unspecified plugin (and |
| | | the relative order of those unspecified plugins will be |
| | | undefined). |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The order in which intermediate response plugins are loaded and |
| | | invoked will be undefined. |
| | | The order in which intermediate response plugins are loaded |
| | | and invoked will be undefined. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="profiler-plugin" |
| | | plural-name="profiler-plugins" |
| | | package="org.opends.server.admin.std" extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="profiler-plugin" |
| | | plural-name="profiler-plugins" package="org.opends.server.admin.std" |
| | | extends="plugin" xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to capture profiling information about operations performed inside |
| | | the JVM while the Directory Server is running. |
| | | is used to capture profiling information about operations performed |
| | | inside the JVM while the Directory Server is running. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | <ldap:superior>ds-cfg-plugin</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property-override name="plugin-type"> |
| | | <adm:property-override name="plugin-type" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>startup</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property-override name="invoke-for-internal-operations"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>false</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | <adm:property name="profile-sample-interval" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the profiler sample interval. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the sample interval that should be used when capturing |
| | | profiling information in the server. Changes to this configuration |
| | | attribute will take effect the next time the profiler is started. |
| | | </adm:description> |
| | | profiling information in the server. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:none> |
| | | <adm:synopsis> |
| | | Changes to this configuration attribute will take effect the |
| | | next time the profiler is started. |
| | | </adm:synopsis> |
| | | </adm:none> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:duration lower-limit="1" base-unit="ms" /> |
| | | </adm:syntax> |
| | |
| | | </adm:property> |
| | | <adm:property name="profile-directory" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the directory for writing profile information. |
| | | Specifies the path to the directory into which profile information |
| | | will be written. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the path to the directory into which profile information will |
| | | be written. The directory must exist and the Directory Server must have |
| | | permission to create new files in it. Changes to this configuration |
| | | attribute will take effect immediately. |
| | | The directory must exist and the Directory Server must have |
| | | permission to create new files in it. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </adm:property> |
| | | <adm:property name="enable-profiling-on-startup" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether to automatically begin capturing profile data when the |
| | | server is started. |
| | | Indicates whether the profiler plugin should start collecting data |
| | | automatically when the Directory Server is started. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether the profiler plugin should start collecting data |
| | | automatically when the Directory Server is started. This will only be |
| | | read when the server is started, and any changes will take effect on the |
| | | next restart. |
| | | This will only be read when the server is started, and any changes |
| | | will take effect on the next restart. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="profile-action" mandatory="false"> |
| | | <adm:property name="profile-action"> |
| | | <adm:synopsis> |
| | | Specifies the action that should be taken by the profiler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the action that should be taken by the profiler. A value of |
| | | "start" will cause the profiler thread to start collecting data if it is |
| | | not already active. A value of "stop" will cause the profiler thread to |
| | | stop collecting data and write it do disk, and a value of "cancel" will |
| | | cause the profiler thread to stop collecting data and discard anything |
| | | that has been captured. These operations will occur immediately. |
| | | A value of "start" will cause the profiler thread to start |
| | | collecting data if it is not already active. A value of "stop" |
| | | will cause the profiler thread to stop collecting data and write |
| | | it do disk, and a value of "cancel" will cause the profiler thread |
| | | to stop collecting data and discard anything that has been |
| | | captured. These operations will occur immediately. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="none"> |
| | | <adm:synopsis> |
| | | Do not take any action. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Do not take any action.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="start"> |
| | | <adm:synopsis> |
| | | Start collecting profile data. |
| | | </adm:synopsis> |
| | | <adm:synopsis>Start collecting profile data.</adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="stop"> |
| | | <adm:synopsis> |
| | | Stop collecting profile data and write what has been captured to |
| | | a file in the profile directory. |
| | | Stop collecting profile data and write what has been |
| | | captured to a file in the profile directory. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="cancel"> |
| | | <adm:synopsis> |
| | | Stop collecting profile data and discard what has been captured. |
| | | Stop collecting profile data and discard what has been |
| | | captured. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="rc4-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="rc4-password-storage-scheme" |
| | | plural-name="rc4-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using the RC4 reversible encryption mechanism. This |
| | | implementation contains only an implementation for the user password syntax, |
| | | with a storage scheme name of "RC4". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using the RC4 |
| | | reversible encryption mechanism. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "RC4". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-rc4-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="random-password-generator" |
| | | plural-name="random-password-generators" |
| | | package="org.opends.server.admin.std" extends="password-generator" |
| | |
| | | <ldap:superior>ds-cfg-password-generator</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | Specifies one or more named character sets. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies one or more named character sets. This is a multivalued |
| | | Specifies one or more named character sets. This is a multi-valued |
| | | attribute, with each value defining a different character set. The |
| | | format of the character set is the name of the set followed by a |
| | | colon and the characters that should be in that set. For example, |
| | | the value "alpha:abcdefghijklmnopqrstuvwxyz" would define a |
| | | character set named "alpha" containing all of the lowercase ASCII |
| | | character set named "alpha" containing all of the lower-case ASCII |
| | | alphabetic characters. |
| | | </adm:description> |
| | | <adm:syntax> |
| | |
| | | Specifies the format to use for the generated password. The value |
| | | is a comma-delimited list of elements in which each of those |
| | | elements is comprised of the name of a character set defined in |
| | | the ds-cfg-password-character-set attribute, a colon, and the |
| | | number of characters to include from that set. For example, a |
| | | value of "alpha:3,numeric:2,alpha:3" would generate an 8-character |
| | | password in which the first three characters are from the "alpha" |
| | | set, the next two are from the "numeric" set, and the final three |
| | | are from the "alpha" set. |
| | | the password-character-set property, a colon, and the number of |
| | | characters to include from that set. For example, a value of |
| | | "alpha:3,numeric:2,alpha:3" would generate an 8-character password |
| | | in which the first three characters are from the "alpha" set, the |
| | | next two are from the "numeric" set, and the final three are from |
| | | the "alpha" set. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="referential-integrity-plugin" |
| | | plural-name="referential-integrity-plugins" |
| | | package="org.opends.server.admin.std" |
| | | extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="referential-integrity-plugin" |
| | | plural-name="referential-integrity-plugins" |
| | | package="org.opends.server.admin.std" extends="plugin" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> |
| | | is used to enforce referential integrity on DN attribute types |
| | | specified in the plugin configuration. The values of these attribute types, |
| | | may reference entries that have been deleted by a delete operation or |
| | | renamed by a modify DN operation. The plugin will either remove stale |
| | | references to deleted entries or remove an old references and add a new |
| | | references to a renamed entries. The plugin allows the scope of this |
| | | referential check to be limited to a set of base DNs if desired. |
| | | It also can be configured to perform the referential |
| | | checking in background mode at specified intervals. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to maintain referential integrity for DN valued attributes. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | The values of these attributes may reference entries that have been |
| | | deleted by a delete operation or renamed by a modify DN operation. |
| | | The referential integrity plugin will remove stale references to |
| | | deleted entries or update references to renamed entries. The |
| | | referential integrity plugin allows the scope of this referential |
| | | check to be limited to a set of base DNs if desired. It also can be |
| | | configured to perform the referential checking in the background |
| | | mode specified intervals. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-referential-integrity-plugin</ldap:name> |
| | | <ldap:superior>ds-cfg-plugin</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property-override name="plugin-type"> |
| | | <adm:property-override name="plugin-type" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>postoperationdelete</adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="attribute-type" mandatory="true" |
| | | multi-valued="true"> |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies an attribute type to process referential integrity checking on. |
| | | There must be at least one of these specified in the plugin configuration |
| | | and the syntax of the type must either be distinguished name |
| | | (1.3.6.1.4.1.1466.115.121.1.12) or name and optional uid |
| | | (1.3.6.1.4.1.1466.115.121.1.34). |
| | | Specifies the attribute types for which referential integrity |
| | | should be maintained. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies an attribute type to process referential integrity. |
| | | There must be at least one attribute type specified and the syntax |
| | | of them must either be distinguished name |
| | | (1.3.6.1.4.1.1466.115.121.1.12) or name and optional uid |
| | | (1.3.6.1.4.1.1466.115.121.1.34). |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:attribute-type /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="base-dn" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="base-dn" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies a base DN to restrict the referential integrity |
| | | processing scope. If none of these are specified in the plugin |
| | | configuration, then the server's public naming contexts are used. |
| | | Specifies the scope within which referential integrity will be |
| | | maintained. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the a base DN to restrict the referential integrity |
| | | processing scope. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The scope will be to use all of the public naming contexts. |
| | | Referential integrity will be maintained in all public naming |
| | | contexts. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="log-file" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="log-file"> |
| | | <adm:synopsis> |
| | | Specifies the log file location where the update records will be written |
| | | when the plugin is in background mode processing. The default location is |
| | | in the logs directory of the server instance, using the file name |
| | | "referint". |
| | | Specifies the log file location where the update records will be |
| | | written when the plugin is in background mode processing. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the log file location where the update records will be written. |
| | | The default location is in the logs directory of the server |
| | | instance, using the file name "referint". |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="update-interval" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="update-interval"> |
| | | <adm:synopsis> |
| | | Specifies the interval, in seconds, when the referential integrity |
| | | background thread will wakeup and process new update records. If this |
| | | value is 0, then the updates are processed in foreground. |
| | | Specifies the interval, in seconds, when referential integrity |
| | | updates will be made. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the interval, in seconds, when the referential integrity update |
| | | thread will wakeup and process new update records. |
| | | If this value is 0, then the updates are made synchronously in the |
| | | foreground. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | 0 seconds |
| | | </adm:value> |
| | | <adm:value>0 seconds</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="s" allow-unlimited="false" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="regular-expression-identity-mapper" |
| | | plural-name="regular-expression-identity-mappers" |
| | | package="org.opends.server.admin.std" extends="identity-mapper" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | plural-name="regular-expression-identity-mappers" |
| | | package="org.opends.server.admin.std" extends="identity-mapper" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a means of using a regular expression to translate the provided |
| | | identifier when searching for the appropriate user entry. This may be used, |
| | | for example, if the provided identifier is expected to be an e-mail address |
| | | or Kerberos principal, but only the username portion (the part before the |
| | | "@" symbol) should be used in the mapping process. |
| | | |
| | | Note that a replacement will be made only if all or part of the provided ID |
| | | string matches the given match pattern. If no part of the provided ID |
| | | string matches the provided pattern, then the given ID string will be used |
| | | without any alteration. |
| | | provides a means of using a regular expression to translate the |
| | | provided identifier when searching for the appropriate user entry. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This may be used, for example, if the provided identifier is |
| | | expected to be an e-mail address or Kerberos principal, but only the |
| | | username portion (the part before the "@" symbol) should be used in |
| | | the mapping process. Note that a replacement will be made only if |
| | | all or part of the provided ID string matches the given match |
| | | pattern. If no part of the provided ID string matches the provided |
| | | pattern, then the given ID string will be used without any |
| | | alteration. |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-regular-expression-identity-mapper</ldap:name> |
| | | <ldap:superior>ds-cfg-identity-mapper</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="match-attribute" mandatory="true" multi-valued="true"> |
| | | <adm:property name="match-attribute" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the attribute to use to perform the mapping. |
| | | Specifies the name or OID of the attribute whose value should |
| | | match the provided identifier string after it has been processed |
| | | by the associated regular expression. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the name or OID of the attribute whose value should match the |
| | | provided identifier string after it has been processed by the associated |
| | | regular expression. At least one value must be provided. All values must |
| | | refer to the name or OID of an attribute type defined in the Directory |
| | | Server schema. If multiple attribute type names or OIDs are provided, |
| | | then at least one of those attributes must contain the provided ID string |
| | | value in exactly one entry. |
| | | All values must refer to the name or OID of an attribute type |
| | | defined in the Directory Server schema. If multiple attribute type |
| | | names or OIDs are provided, then at least one of those attributes |
| | | must contain the provided ID string value in exactly one entry. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:attribute-type /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="match-base-dn" mandatory="false" multi-valued="true"> |
| | | <adm:property name="match-base-dn" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the set of base DNs below which to search for users. |
| | | Specifies the base DN(s) that should be used when performing |
| | | searches to map the provided ID string to a user entry. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the base DN(s) that should be used when performing searches to |
| | | map the provided ID string to a user entry. If no values are provided, |
| | | then the server will search below all public naming contexts. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="match-pattern" mandatory="true" multi-valued="false"> |
| | | <adm:property name="match-pattern" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the regular expression pattern that will be used to identify |
| | | portions of the ID string which will be replaced. |
| | | Specifies the regular expression pattern that will be used to |
| | | identify portions of the ID string which will be replaced. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the regular expression pattern that should be used to match |
| | | all or part of the provided ID string. Any portion of the ID string which |
| | | matches this pattern will be replaced in accordance with the provided |
| | | replace pattern (or will be removed if no replace pattern is specified). |
| | | If multiple substrings within the given ID string match this pattern, then |
| | | all occurrences will be replaced. If no part of the given ID string |
| | | Any portion of the ID string which matches this pattern will be |
| | | replaced in accordance with the provided replace pattern (or will |
| | | be removed if no replace pattern is specified). If multiple |
| | | substrings within the given ID string match this pattern, then all |
| | | occurrences will be replaced. If no part of the given ID string |
| | | matches this pattern, then the ID string will not be altered. |
| | | |
| | | Exactly one match pattern value must be provided, and it must be a valid |
| | | regular expression as described in the API documentation for the |
| | | java.util.regex.Pattern class, including support for capturing groups. |
| | | Exactly one match pattern value must be provided, and it must be a |
| | | valid regular expression as described in the API documentation for |
| | | the java.util.regex.Pattern class, including support for capturing |
| | | groups. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="replace-pattern" mandatory="false" multi-valued="false"> |
| | | <adm:property name="replace-pattern"> |
| | | <adm:synopsis> |
| | | Specifies the replacement pattern that should be used for substrings in |
| | | the ID string that match the provided regular expression pattern. If no |
| | | replacement pattern is provided, then any matching portions of the ID |
| | | string will be removed. |
| | | Specifies the replacement pattern that should be used for |
| | | substrings in the ID string that match the provided regular |
| | | expression pattern. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the replacement pattern that should be used for substrings in |
| | | the ID string that match the provided regular expression pattern. If no |
| | | replacement pattern is provided, then any matching portions of the ID |
| | | string will be removed (i.e., replaced with an empty string). The |
| | | replacement pattern may include a string from a capturing group by using a |
| | | dollar sign ($) followed by an integer value that indicates which |
| | | capturing group should be used. |
| | | If no replacement pattern is provided, then any matching portions |
| | | of the ID string will be removed (i.e., replaced with an empty |
| | | string). The replacement pattern may include a string from a |
| | | capturing group by using a dollar sign ($) followed by an integer |
| | | value that indicates which capturing group should be used. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="repeated-characters-password-validator" |
| | | plural-name="repeated-characters-password-validators" |
| | | package="org.opends.server.admin.std" extends="password-validator" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | plural-name="repeated-characters-password-validators" |
| | | package="org.opends.server.admin.std" extends="password-validator" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to determine whether a proposed password is acceptable based on |
| | | the number of times any character may appear consecutively in a password |
| | | value. |
| | | is used to determine whether a proposed password is acceptable based |
| | | on the number of times any character may appear consecutively in a |
| | | password value. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-repeated-characters-password-validator</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-repeated-characters-password-validator |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-password-validator</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:property-override> |
| | | <adm:property name="max-consecutive-length" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the maximum number of times that any character may appear |
| | | consecutively in a password value. |
| | | Specifies the maximum number of times that any character may |
| | | appear consecutively in a password value. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Specifies the maximum number of times that any character may appear |
| | | consecutively in a password value. A value of zero indicates that there |
| | | will be no maximum limit enforced. Changes to this configuration |
| | | attribute will take effect immediately. |
| | | A value of zero indicates that there will be no maximum limit |
| | | enforced. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="0" /> |
| | |
| | | </adm:property> |
| | | <adm:property name="case-sensitive-validation" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether this password validator should treat password characters |
| | | in a case-sensitive manner. |
| | | Indicates whether this password validator should treat password |
| | | characters in a case-sensitive manner. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Indicates whether this password validator should treat password characters |
| | | in a case-sensitive manner. A value of false indicates that any |
| | | differences in capitalization should be ignored when looking for |
| | | consecutive characters in the password. A value of true indicates that |
| | | a character should only be considered repeating if all consecutive |
| | | occurrences use the same capitalization. |
| | | A value of false indicates that any differences in capitalization |
| | | should be ignored when looking for consecutive characters in the |
| | | password. A value of true indicates that a character should only |
| | | be considered repeating if all consecutive occurrences use the |
| | | same capitalization. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="replication-domain" |
| | | plural-name="replication-domains" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | A |
| | | <adm:user-friendly-name /> |
| | | is used to provide Multimaster Replication of several OpenDS copies |
| | | of the same data |
| | | comprises of several Directory Servers sharing the same synchronized |
| | | set of data. |
| | | </adm:synopsis> |
| | | <adm:tag name="replication"/> |
| | | <adm:tag name="replication" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-replication-domain</ldap:name> |
| | |
| | | <adm:property name="replication-server" multi-valued="true" |
| | | mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the addresses of the replication server to which this |
| | | Specifies the addresses of the Replication Servers within the |
| | | <adm:user-friendly-name /> |
| | | should try to connect at startup time. |
| | | to which the Directory Server should try to connect at startup |
| | | time. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Addresses must be specified using the syntax: hostname:port |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none /> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex>.+:[0-9]+</adm:regex> |
| | | <adm:regex>^.+:[0-9]+$</adm:regex> |
| | | <adm:usage>HOST:PORT</adm:usage> |
| | | <adm:synopsis> |
| | | A hostname, followed by a ":" followed by a port number. |
| | | A host name followed by a ":" and a port number. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="server-id" multi-valued="false" mandatory="true" |
| | | read-only="true"> |
| | | <adm:property name="server-id" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | Specifies the server ID of this multimaster provider. |
| | | Specifies a unique identifier for the Directory Server within the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Each multimaster provider must have a different server ID. |
| | | Each Directory Server within the same |
| | | <adm:user-friendly-name /> |
| | | must have a different server ID. A Directory Server which is a |
| | | member of multiple |
| | | <adm:user-friendly-plural-name /> |
| | | may use the same server ID for each of its |
| | | <adm:user-friendly-name /> |
| | | configurations. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none /> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" upper-limit="65535"></adm:integer> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="base-dn" mandatory="true" |
| | | multi-valued="false" read-only="true"> |
| | | <adm:property name="base-dn" mandatory="true" read-only="true"> |
| | | <adm:synopsis> |
| | | Specifies the base dn of the Multimaster Domain |
| | | Specifies the base DN of the replicated data. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:dn></adm:dn> |
| | | <adm:dn /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="window-size" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="window-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the window size that this domain will use when |
| | | communicating with replication servers. |
| | | Specifies the window size that the Directory Server will use when |
| | | communicating with Replication Servers. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer></adm:integer> |
| | | <adm:integer /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="heartbeat-interval" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="heartbeat-interval" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the heartbeat interval that this Domain must use when |
| | | communicating with replication servers. The Domain will expect |
| | | regular heartbeat coming from the replication server with this |
| | | interval if they are not received it will close its connection and |
| | | connect to another replication server. |
| | | Specifies the heart-beat interval that the Directory Server will |
| | | use when communicating with Replication Servers. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The Directory Server will expect a regular heart-beat coming from |
| | | the Replication Server within the specified interval. If a |
| | | heartbeat is not received within the interval, the Directory |
| | | Server will close its connection and connect to another |
| | | Replication Server. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>1000ms</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:duration base-unit="ms" allow-unlimited="false" |
| | | lower-limit="100" /> |
| | | <adm:duration base-unit="ms" lower-limit="100" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="isolation-policy" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="isolation-policy"> |
| | | <adm:synopsis> |
| | | Specifies the behavior of the Directory Server if a write |
| | | operation is attempted on the data within the |
| | | <adm:user-friendly-name /> |
| | | indicates the behavior of the LDAP server if an update is attempted |
| | | when replication has been configured but none of the configured |
| | | Replication Servers are up an running when the update is received. |
| | | when none of the configured Replication Servers are available. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>reject-all-updates</adm:value></adm:defined></adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value>reject-all-updates</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:enumeration> |
| | | <adm:value name="accept-all-updates"> |
| | | <adm:synopsis> |
| | | Indicates that updates should be accepted even though it is |
| | | not possible to send them to any Replication Server. |
| | | Best effort will be made to re-send those updates to a |
| | | not possible to send them to any Replication Server. Best |
| | | effort will be made to re-send those updates to a |
| | | Replication Servers when one of them is available, however |
| | | those changes will be at risk because they will only be |
| | | available from the historical information. This mode may |
| | |
| | | </adm:value> |
| | | <adm:value name="reject-all-updates"> |
| | | <adm:synopsis> |
| | | Indicates that all updates attempted on this replicated |
| | | base-dn on this server when no Replication Server is |
| | | available will be denied. |
| | | Indicates that all updates attempted on this |
| | | <adm:user-friendly-name /> |
| | | will be rejected when no Replication Server is available. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="replication-server" |
| | | plural-name="replication-servers" package="org.opends.server.admin.std" |
| | | plural-name="replication-servers" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is the server to which Multimaster Domain connects to publish and |
| | | receive changes to or from other Multimaster Domains. |
| | | <adm:user-friendly-plural-name /> |
| | | are used to publish updates to Directory Servers within a |
| | | Replication Domain. |
| | | </adm:synopsis> |
| | | <adm:tag name="replication"/> |
| | | <adm:tag name="replication" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name> |
| | | ds-cfg-replication-server |
| | | </ldap:name> |
| | | <ldap:name>ds-cfg-replication-server</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property name="replication-server" multi-valued="true" |
| | | mandatory="false"> |
| | | <adm:property name="replication-server" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the addresses of the replication server to which this |
| | | Specifies the addresses of other |
| | | <adm:user-friendly-plural-name /> |
| | | to which this |
| | | <adm:user-friendly-name /> |
| | | should try to connect at startup time. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Addresses must be specified using the syntax: hostname:port |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none /> |
| | | </adm:requires-admin-action> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string> |
| | | <adm:pattern> |
| | | <adm:regex>.+:[0-9]+</adm:regex> |
| | | <adm:regex>^.+:[0-9]+$</adm:regex> |
| | | <adm:usage>HOST:PORT</adm:usage> |
| | | <adm:synopsis> |
| | | A hostname, followed by a ":" followed by a port number. |
| | | A host name followed by a ":" and a port number. |
| | | </adm:synopsis> |
| | | </adm:pattern> |
| | | </adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="replication-server-id" multi-valued="false" |
| | | mandatory="true" read-only="true"> |
| | | <adm:property name="replication-server-id" mandatory="true" |
| | | read-only="true"> |
| | | <adm:synopsis> |
| | | Specifies the server ID of this Replication Server |
| | | Specifies a unique identifier for the |
| | | <adm:user-friendly-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Each Replication Server must have a different server ID. |
| | | Each |
| | | <adm:user-friendly-name /> |
| | | must have a different server ID. |
| | | </adm:description> |
| | | <adm:requires-admin-action> |
| | | <adm:none /> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:integer lower-limit="1" upper-limit="65535"></adm:integer> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="window-size" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="window-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the window size that will this Domain must use when |
| | | communicating with replication servers. |
| | | Specifies the window size that the |
| | | <adm:user-friendly-name /> |
| | | will use when communicating with other |
| | | <adm:user-friendly-plural-name /> |
| | | . |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="queue-size" mandatory="false" |
| | | multi-valued="false"> |
| | | <adm:property name="queue-size" advanced="true"> |
| | | <adm:synopsis> |
| | | Specifies the number of changes that will be kept in memory for |
| | | each LDAP server in the topology. |
| | | each Directory Server in the Replication Domain. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:integer></adm:integer> |
| | | <adm:integer /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="replication-db-directory" mandatory="false" |
| | | hidden="false" multi-valued="false" read-only="true"> |
| | | <adm:property name="replication-db-directory" mandatory="true" |
| | | read-only="true"> |
| | | <adm:synopsis> |
| | | The path where the |
| | | <adm:user-friendly-name /> |
| | | will store all persistent information. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:undefined /> |
| | | <adm:defined> |
| | | <adm:value>changelogDb</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:string></adm:string> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="replication-purge-delay" multi-valued="false"> |
| | | <adm:property name="replication-purge-delay" advanced="true"> |
| | | <adm:synopsis> |
| | | The time (in seconds) after which the |
| | | <adm:user-friendly-name /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="replication-port" mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="replication-port" mandatory="true"> |
| | | <adm:synopsis> |
| | | The port on which this |
| | | <adm:user-friendly-name></adm:user-friendly-name> |
| | | will wait for connections from other Replication Servers or LDAP |
| | | Servers or from LDAP servers. |
| | | <adm:user-friendly-name /> |
| | | will wait for connections from other |
| | | <adm:user-friendly-plural-name /> |
| | | or Directory Servers. |
| | | </adm:synopsis> |
| | | <adm:requires-admin-action> |
| | | <adm:none /> |
| | | </adm:requires-admin-action> |
| | | <adm:syntax> |
| | | <adm:integer></adm:integer> |
| | | <adm:integer lower-limit="1" upper-limit="65535" /> |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | |
| | | extends="synchronization-provider" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap" |
| | | xmlns:cli="http://www.opends.org/admin-cli" abstract="false"> |
| | | xmlns:cli="http://www.opends.org/admin-cli"> |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | is used to provide Multimaster Replication of several OpenDS copies |
| | | of the same data |
| | | is used to provide multi-master replication of data across multiple |
| | | Directory Server instances. |
| | | </adm:synopsis> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | |
| | | </cli:relation> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | <adm:relation name="crypto-manager"> |
| | | <adm:one-to-one /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Crypto Manager,cn=config |
| | | </ldap:rdn-sequence> |
| | | <ldap:rdn-sequence>cn=Crypto Manager,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | <adm:relation name="alert-handler"> |
| | | <adm:one-to-many /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Alert Handlers,cn=config |
| | | </ldap:rdn-sequence> |
| | | <ldap:rdn-sequence>cn=Alert Handlers,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </adm:profile> |
| | | </adm:relation> |
| | | <adm:relation name="backend"> |
| | | <adm:one-to-many naming-property="backend-id"/> |
| | | <adm:one-to-many naming-property="backend-id" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence>cn=Backends,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | |
| | | <adm:relation name="matching-rule"> |
| | | <adm:one-to-many /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Matching Rules,cn=config |
| | | </ldap:rdn-sequence> |
| | | <ldap:rdn-sequence>cn=Matching Rules,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | <adm:relation name="attribute-syntax"> |
| | | <adm:one-to-many /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Syntaxes,cn=config |
| | | </ldap:rdn-sequence> |
| | | <ldap:rdn-sequence>cn=Syntaxes,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </cli:relation> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | |
| | | <adm:relation name="network-group"> |
| | | <adm:one-to-many naming-property="network-group-id"/> |
| | | <adm:one-to-many naming-property="network-group-id" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Network Groups,cn=config |
| | | </ldap:rdn-sequence> |
| | | <ldap:rdn-sequence>cn=Network Groups,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </adm:profile> |
| | | </adm:relation> |
| | | <adm:relation name="workflow"> |
| | | <adm:one-to-many naming-property="workflow-id"/> |
| | | <adm:one-to-many naming-property="workflow-id" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Workflows,cn=config |
| | | </ldap:rdn-sequence> |
| | | <ldap:rdn-sequence>cn=Workflows,cn=config</ldap:rdn-sequence> |
| | | </adm:profile> |
| | | <adm:profile name="cli"> |
| | | <cli:relation> |
| | |
| | | </adm:profile> |
| | | </adm:relation> |
| | | <adm:relation name="workflow-element"> |
| | | <adm:one-to-many naming-property="workflow-element-id"/> |
| | | <adm:one-to-many naming-property="workflow-element-id" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence> |
| | | cn=Workflow elements,cn=config |
| | |
| | | </cli:relation> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | |
| | | <adm:product-name>OpenDS Directory Server</adm:product-name> |
| | | <adm:tag-definition name="logging"> |
| | | <adm:synopsis>Logging</adm:synopsis> |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="root-dn" plural-name="root-dns" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | This class defines the parent entry for all root DN users in the server. It |
| | | also defines the set of privileges that root users will automatically |
| | | inherit. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | configuration contains all the Root DN Users defined in the |
| | | Directory Server. In addition, it also defines the default set of |
| | | privileges that Root DN Users will automatically inherit. |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-root-dn</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:relation name="root-dn-user" hidden="true"> |
| | | <adm:one-to-many /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:rdn-sequence /> |
| | | <ldap:naming-attribute> |
| | | cn |
| | | </ldap:naming-attribute> |
| | | <ldap:naming-attribute>cn</ldap:naming-attribute> |
| | | </adm:profile> |
| | | </adm:relation> |
| | | |
| | | <adm:property name="default-root-privilege-name" mandatory="false" |
| | | <adm:property name="default-root-privilege-name" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the names of the privileges that root users will be granted by |
| | | default. |
| | | Specifies the names of the privileges that root users will be |
| | | granted by default. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | |
| | | <adm:enumeration> |
| | | <adm:value name="bypass-acl"> |
| | | <adm:synopsis> |
| | | Allows the associated user to bypass access control checks performed |
| | | by the server. |
| | | Allows the associated user to bypass access control checks |
| | | performed by the server. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="modify-acl"> |
| | | <adm:synopsis> |
| | | Allows the associated user to modify the server's access control |
| | | configuration. |
| | | Allows the associated user to modify the server's access |
| | | control configuration. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="config-read"> |
| | |
| | | </adm:value> |
| | | <adm:value name="config-write"> |
| | | <adm:synopsis> |
| | | Allows the associated user to update the server configuration. The |
| | | config-read privilege is also required. |
| | | Allows the associated user to update the server |
| | | configuration. The config-read privilege is also required. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="jmx-read"> |
| | |
| | | </adm:value> |
| | | <adm:value name="ldif-import"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process LDIF import |
| | | tasks. |
| | | Allows the user to request that the server process LDIF |
| | | import tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="ldif-export"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process LDIF export |
| | | tasks. |
| | | Allows the user to request that the server process LDIF |
| | | export tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="backend-backup"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process backup tasks. |
| | | Allows the user to request that the server process backup |
| | | tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="backend-restore"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process restore tasks. |
| | | Allows the user to request that the server process restore |
| | | tasks. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="server-shutdown"> |
| | |
| | | </adm:value> |
| | | <adm:value name="server-restart"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server perform an in-core |
| | | restart. |
| | | Allows the user to request that the server perform an |
| | | in-core restart. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="proxied-auth"> |
| | | <adm:synopsis> |
| | | Allows the user to use the proxied authorization control, or to |
| | | perform a bind that specifies an alternate authorization identity. |
| | | Allows the user to use the proxied authorization control, or |
| | | to perform a bind that specifies an alternate authorization |
| | | identity. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="disconnect-client"> |
| | |
| | | </adm:value> |
| | | <adm:value name="cancel-request"> |
| | | <adm:synopsis> |
| | | Allows the user to cancel operations in progress on other client |
| | | connections. |
| | | Allows the user to cancel operations in progress on other |
| | | client connections. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="password-reset"> |
| | |
| | | <adm:value name="privilege-change"> |
| | | <adm:synopsis> |
| | | Allows the user to make changes to the set of defined root |
| | | privileges, as well as to grant and revoke privileges for users. |
| | | privileges, as well as to grant and revoke privileges for |
| | | users. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | <adm:value name="unindexed-search"> |
| | | <adm:synopsis> |
| | | Allows the user to request that the server process a search that |
| | | cannot be optimized using server indexes. |
| | | Allows the user to request that the server process a search |
| | | that cannot be optimized using server indexes. |
| | | </adm:synopsis> |
| | | </adm:value> |
| | | </adm:enumeration> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="root-dn-user" plural-name="root-dn-users" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | This class defines a root user, which is automatically granted a set of |
| | | privileges in the server and may be given some special abilities not |
| | | available to non-root users (e.g., the ability to bind to the server in |
| | | lockdown mode). |
| | | A |
| | | <adm:user-friendly-name /> |
| | | are administrative users who may be granted special privileges which |
| | | are not available to non-root users (e.g., the ability to bind to |
| | | the server in lockdown mode). |
| | | </adm:synopsis> |
| | | |
| | | <adm:tag name="core"/> |
| | | |
| | | <adm:description> |
| | | By default a |
| | | <adm:user-friendly-name /> |
| | | inherits the default set of privileges defined in the Root DN |
| | | configuration. |
| | | </adm:description> |
| | | <adm:tag name="core" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-root-dn-user</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property name="alternate-bind-dn" mandatory="false" multi-valued="true"> |
| | | <adm:property name="alternate-bind-dn" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies one or more alternate DNs that may be used to bind to the server |
| | | as this root user. |
| | | Specifies one or more alternate DNs that may be used to bind to |
| | | the server as this root user. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | This root user will only be allowed to bind using the DN of the |
| | | associated configuration entry. |
| | | This root user will only be allowed to bind using the DN of |
| | | the associated configuration entry. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="root-dse-backend" plural-name="root-dse-backends" |
| | | package="org.opends.server.admin.std" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="root-dse-backend" |
| | | plural-name="root-dse-backends" package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | This class defines a backend to hold the Directory Server root DSE. |
| | | The |
| | | <adm:user-friendly-name /> |
| | | contains the Directory Server root DSE. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This is a special meta-backend that will dynamically generate the root DSE |
| | | entry for base-level searches, and will simply redirect to other backends |
| | | for operations in other scopes. |
| | | This is a special meta-backend that will dynamically generate the |
| | | root DSE entry for base-level searches, and will simply redirect to |
| | | other backends for operations in other scopes. |
| | | </adm:description> |
| | | <adm:tag name="core"/> |
| | | <adm:tag name="database"/> |
| | | <adm:tag name="core" /> |
| | | <adm:tag name="database" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-root-dse-backend</ldap:name> |
| | | <ldap:superior>top</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | <adm:property name="subordinate-base-dn" |
| | | mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="subordinate-base-dn" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the set of base DNs that will be used for singleLevel, |
| | | wholeSubtree, and subordinateSubtree searches based at the root DSE. If |
| | | this is not provided, then the set of all user-defined suffixes will be |
| | | used. |
| | | wholeSubtree, and subordinateSubtree searches based at the root |
| | | DSE. |
| | | </adm:synopsis> |
| | | <adm:default-behavior> |
| | | <adm:undefined/> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | The set of all user-defined suffixes will be used. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | | <adm:dn /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | <adm:property name="show-all-attributes" |
| | | mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="show-all-attributes" mandatory="true"> |
| | | <adm:synopsis> |
| | | Indicates whether all attributes in the root DSE should be treated like |
| | | user attributes (and therefore returned to clients by default) |
| | | regardless of the Directory Server schema configuration. |
| | | Indicates whether all attributes in the root DSE should be treated |
| | | like user attributes (and therefore returned to clients by |
| | | default) regardless of the Directory Server schema configuration. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:boolean /> |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="sasl-mechanism-handler" |
| | | plural-name="sasl-mechanism-handlers" |
| | | package="org.opends.server.admin.std" |
| | |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-plural-name /> |
| | | are responsible for the processing associated with SASL bind operations. |
| | | are responsible for the processing associated with SASL bind |
| | | operations. |
| | | </adm:synopsis> |
| | | <adm:tag name="security"/> |
| | | <adm:tag name="security" /> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-sasl-mechanism-handler</ldap:name> |
| | |
| | | </adm:profile> |
| | | </adm:property> |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="sha1-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="sha1-password-storage-scheme" |
| | | plural-name="sha1-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using an unsalted form of the SHA-1 message digest algorithm. |
| | | This implementation contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "SHA". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using an unsalted |
| | | form of the SHA-1 message digest algorithm. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains only an implementation for the user password |
| | | syntax, with a storage scheme name of "SHA". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-sha1-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="smtp-account-status-notification-handler" |
| | | plural-name="smtp-account-status-notification-handlers" |
| | | extends="account-status-notification-handler" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | plural-name="smtp-account-status-notification-handlers" |
| | | extends="account-status-notification-handler" |
| | | package="org.opends.server.admin.std" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | <adm:synopsis> |
| | | <adm:user-friendly-name /> |
| | | is an account status notification handler that can be used to send email |
| | | messages to end users and/or administrators whenever an account status |
| | | notification is generated. |
| | | is an account status notification handler that can be used to send |
| | | email messages to end users and/or administrators whenever an |
| | | account status notification is generated. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name> |
| | |
| | | </ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="email-address-attribute-type" mandatory="false" |
| | | multi-valued="true"> |
| | | <adm:property name="email-address-attribute-type" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies which attribute in user entries may be used to obtain the email |
| | | address to use when notifying the end user. Multiple attributes can be |
| | | specified as separate values, and in that case all email addresses |
| | | identified in all such values will receive the notification. |
| | | Specifies which attribute in user entries may be used to obtain |
| | | the email address to use when notifying the end user. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Multiple attributes can be specified as separate values, and in |
| | | that case all email addresses identified in all such values will |
| | | receive the notification. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If no email address attribute types are specified, then no attempt |
| | | will be made to send email notification messages to end users. Only |
| | | those users specified in the set of additional recipient addresses |
| | | will be sent the notification messages. |
| | | If no email address attribute types are specified, then no |
| | | attempt will be made to send email notification messages to |
| | | end users. Only those users specified in the set of additional |
| | | recipient addresses will be sent the notification messages. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="recipient-address" mandatory="false" multi-valued="true"> |
| | | <adm:property name="recipient-address" multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies an email address to which notification messages will be sent, |
| | | either instead of or in addition to the end user for whom the notification |
| | | has been generated. This may be used to ensure that server administrators |
| | | also receive a copy of any notification messages that are generated. |
| | | Specifies an email address to which notification messages will be |
| | | sent, either instead of or in addition to the end user for whom |
| | | the notification has been generated. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This may be used to ensure that server administrators also receive |
| | | a copy of any notification messages that are generated. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:alias> |
| | | <adm:synopsis> |
| | | If no additional recipient addresses are specified, then only the end |
| | | users that are the subjects of the account status notifications will |
| | | receive the notification messages. |
| | | If no additional recipient addresses are specified, then only |
| | | the end users that are the subjects of the account status |
| | | notifications will receive the notification messages. |
| | | </adm:synopsis> |
| | | </adm:alias> |
| | | </adm:default-behavior> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="send-message-without-end-user-address" mandatory="true" |
| | | multi-valued="false"> |
| | | <adm:property name="send-message-without-end-user-address" |
| | | mandatory="true" advanced="true"> |
| | | <adm:synopsis> |
| | | Indicates whether an email notification message should be generated and |
| | | sent to the set of notification recipients even if the user entry does not |
| | | contain any values for any of the email address attributes (and therefore |
| | | it will not be possible to notify the end user). This is only applicable |
| | | if both one or more email address attribute types and one or more |
| | | additional recipient addresses are specified. |
| | | Indicates whether an email notification message should be |
| | | generated and sent to the set of notification recipients even if |
| | | the user entry does not contain any values for any of the email |
| | | address attributes (and therefore it will not be possible to |
| | | notify the end user). |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | This is only applicable if both one or more email address |
| | | attribute types and one or more additional recipient addresses are |
| | | specified. |
| | | </adm:description> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | | true |
| | | </adm:value> |
| | | <adm:value>true</adm:value> |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | <adm:syntax> |
| | |
| | | </adm:syntax> |
| | | <adm:profile name="ldap"> |
| | | <ldap:attribute> |
| | | <ldap:name>ds-cfg-send-message-without-end-user-address</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-send-message-without-end-user-address |
| | | </ldap:name> |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="sender-address" mandatory="true" multi-valued="false"> |
| | | <adm:property name="sender-address" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the e-mail address from which the message will be sent. Note |
| | | that this does not necessarily have to be a legitimate e-mail address. |
| | | Specifies the e-mail address from which the message will be sent. |
| | | Note that this does not necessarily have to be a legitimate e-mail |
| | | address. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="message-subject" mandatory="true" multi-valued="true"> |
| | | <adm:property name="message-subject" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the subject that should be used for email messages generated by |
| | | this account status notification handler. The values for this property |
| | | should begin with the name of an account status notification type followed |
| | | by a colon and the subject that should be used for the associated |
| | | notification message. If an email message is generated for an account |
| | | status notification type for which no subject is defined, then that |
| | | message will be given a generic subject. |
| | | Specifies the subject that should be used for email messages |
| | | generated by this account status notification handler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The values for this property should begin with the name of an |
| | | account status notification type followed by a colon and the |
| | | subject that should be used for the associated notification |
| | | message. If an email message is generated for an account status |
| | | notification type for which no subject is defined, then that |
| | | message will be given a generic subject. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="message-template-file" mandatory="true" |
| | | multi-valued="true"> |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies the path to the file containing the message template that is to |
| | | be used to generate the email notification messages. The values for this |
| | | property should begin with the name of an account status notification type |
| | | followed by a colon and the path to the template file that should be used |
| | | for that notification type. If an account status notification has a |
| | | notification type that is not associated with a message template file, |
| | | then no email message will be generated for that notification. |
| | | Specifies the path to the file containing the message template |
| | | that is to be used to generate the email notification messages. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The values for this property should begin with the name of an |
| | | account status notification type followed by a colon and the path |
| | | to the template file that should be used for that notification |
| | | type. If an account status notification has a notification type |
| | | that is not associated with a message template file, then no email |
| | | message will be generated for that notification. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object name="smtp-alert-handler" plural-name="smtp-alert-handlers" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="smtp-alert-handler" |
| | | plural-name="smtp-alert-handlers" |
| | | package="org.opends.server.admin.std" extends="alert-handler" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The |
| | | <adm:user-friendly-name /> |
| | | may be used to send e-mail messages to notify administrators of significant |
| | | events that occur within the server. |
| | | may be used to send e-mail messages to notify administrators of |
| | | significant events that occur within the server. |
| | | </adm:synopsis> |
| | | |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-smtp-alert-handler</ldap:name> |
| | | <ldap:superior>ds-cfg-alert-handler</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | <adm:property name="sender-address" mandatory="true" multi-valued="false"> |
| | | <adm:property name="sender-address" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the e-mail address to use as the sender for messages generated |
| | | by this alert handler. |
| | | Specifies the e-mail address to use as the sender for messages |
| | | generated by this alert handler. |
| | | </adm:synopsis> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="recipient-address" mandatory="true" multi-valued="true"> |
| | | <adm:property name="recipient-address" mandatory="true" |
| | | multi-valued="true"> |
| | | <adm:synopsis> |
| | | Specifies an e-mail address to which the messages should be sent. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | Multiple values may be provided if there should be more than one |
| | | recipient. |
| | | </adm:synopsis> |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="message-subject" mandatory="true" multi-valued="false"> |
| | | <adm:property name="message-subject" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the subject that should be used for e-mail messages generated |
| | | by this alert handler. The token "%%%%alert-type%%%%" will be dynamically |
| | | replaced with the alert type string. The token "%%%%alert-id%%%%" will be |
| | | dynamically replaced with the alert ID value. The token |
| | | "%%%%alert-message%%%%" will be dynamically replaced with the alert message. |
| | | The token "\\n" will be replaced with an end-of-line marker. |
| | | Specifies the subject that should be used for e-mail messages |
| | | generated by this alert handler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The token "%%%%alert-type%%%%" will be dynamically replaced with |
| | | the alert type string. The token "%%%%alert-id%%%%" will be |
| | | dynamically replaced with the alert ID value. The token |
| | | "%%%%alert-message%%%%" will be dynamically replaced with the |
| | | alert message. The token "\\n" will be replaced with an |
| | | end-of-line marker. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | <adm:property name="message-body" mandatory="true" multi-valued="false"> |
| | | <adm:property name="message-body" mandatory="true"> |
| | | <adm:synopsis> |
| | | Specifies the body that should be used for e-mail messages generated |
| | | by this alert handler. The token "%%%%alert-type%%%%" will be dynamically |
| | | replaced with the alert type string. The token "%%%%alert-id%%%%" will be |
| | | dynamically replaced with the alert ID value. The token |
| | | "%%%%alert-message%%%%" will be dynamically replaced with the alert message. |
| | | The token "\\n" will be replaced with an end-of-line marker. |
| | | Specifies the body that should be used for e-mail messages |
| | | generated by this alert handler. |
| | | </adm:synopsis> |
| | | <adm:description> |
| | | The token "%%%%alert-type%%%%" will be dynamically replaced with |
| | | the alert type string. The token "%%%%alert-id%%%%" will be |
| | | dynamically replaced with the alert ID value. The token |
| | | "%%%%alert-message%%%%" will be dynamically replaced with the |
| | | alert message. The token "\\n" will be replaced with an |
| | | end-of-line marker. |
| | | </adm:description> |
| | | <adm:syntax> |
| | | <adm:string /> |
| | | </adm:syntax> |
| | |
| | | </ldap:attribute> |
| | | </adm:profile> |
| | | </adm:property> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="salted-md5-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="salted-md5-password-storage-scheme" |
| | | plural-name="salted-md5-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using a salted form of the MD5 message digest algorithm. This |
| | | implementation contains an implementation for the user password syntax, |
| | | with a storage scheme name of "SMD5", and an implementation of the auth |
| | | password syntax, with a storage scheme name of "MD5". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using a salted form |
| | | of the MD5 message digest algorithm. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains an implementation for the user password syntax, |
| | | with a storage scheme name of "SMD5", and an implementation of the |
| | | auth password syntax, with a storage scheme name of "MD5". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-salted-md5-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="salted-sha1-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="salted-sha1-password-storage-scheme" |
| | | plural-name="salted-sha1-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using a salted form of the SHA-1 message digest algorithm. This |
| | | implementation contains an implementation for the user password syntax, |
| | | with a storage scheme name of "SSHA", and an implementation of the auth |
| | | password syntax, with a storage scheme name of "SHA1". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using a salted form |
| | | of the SHA-1 message digest algorithm. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains an implementation for the user password syntax, |
| | | with a storage scheme name of "SSHA", and an implementation of the |
| | | auth password syntax, with a storage scheme name of "SHA1". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-salted-sha1-password-storage-scheme</ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!-- |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | |
| | | <adm:managed-object |
| | | name="salted-sha256-password-storage-scheme" |
| | | ! CDDL HEADER START |
| | | ! |
| | | ! The contents of this file are subject to the terms of the |
| | | ! Common Development and Distribution License, Version 1.0 only |
| | | ! (the "License"). You may not use this file except in compliance |
| | | ! with the License. |
| | | ! |
| | | ! You can obtain a copy of the license at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE |
| | | ! or https://OpenDS.dev.java.net/OpenDS.LICENSE. |
| | | ! See the License for the specific language governing permissions |
| | | ! and limitations under the License. |
| | | ! |
| | | ! When distributing Covered Code, include this CDDL HEADER in each |
| | | ! file and include the License file at |
| | | ! trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable, |
| | | ! add the following below this CDDL HEADER, with the fields enclosed |
| | | ! by brackets "[]" replaced with your own identifying information: |
| | | ! Portions Copyright [yyyy] [name of copyright owner] |
| | | ! |
| | | ! CDDL HEADER END |
| | | ! |
| | | ! |
| | | ! Portions Copyright 2007 Sun Microsystems, Inc. |
| | | ! --> |
| | | <adm:managed-object name="salted-sha256-password-storage-scheme" |
| | | plural-name="salted-sha256-password-storage-schemes" |
| | | package="org.opends.server.admin.std" |
| | | extends="password-storage-scheme" |
| | | xmlns:adm="http://www.opends.org/admin" |
| | | xmlns:ldap="http://www.opends.org/admin-ldap"> |
| | | |
| | | <adm:synopsis> |
| | | The <adm:user-friendly-name /> provides a mechanism for encoding user |
| | | passwords using a salted form of the 256-bit SHA-2 message digest algorithm. |
| | | This implementation contains an implementation for the user password syntax, |
| | | with a storage scheme name of "SSHA256", and an implementation of the auth |
| | | password syntax, with a storage scheme name of "SHA256". |
| | | The |
| | | <adm:user-friendly-name /> |
| | | provides a mechanism for encoding user passwords using a salted form |
| | | of the 256-bit SHA-2 message digest algorithm. |
| | | </adm:synopsis> |
| | | |
| | | <adm:description> |
| | | This scheme contains an implementation for the user password syntax, |
| | | with a storage scheme name of "SSHA256", and an implementation of |
| | | the auth password syntax, with a storage scheme name of "SHA256". |
| | | </adm:description> |
| | | <adm:profile name="ldap"> |
| | | <ldap:object-class> |
| | | <ldap:name>ds-cfg-salted-sha256-password-storage-scheme</ldap:name> |
| | | <ldap:name> |
| | | ds-cfg-salted-sha256-password-storage-scheme |
| | | </ldap:name> |
| | | <ldap:superior>ds-cfg-password-storage-scheme</ldap:superior> |
| | | </ldap:object-class> |
| | | </adm:profile> |
| | | |
| | | <adm:property-override name="java-class"> |
| | | <adm:property-override name="java-class" advanced="true"> |
| | | <adm:default-behavior> |
| | | <adm:defined> |
| | | <adm:value> |
| | |
| | | </adm:defined> |
| | | </adm:default-behavior> |
| | | </adm:property-override> |
| | | |
| | | </adm:managed-object> |
| | | |
| opends/src/admin/defn/org/opends/server/admin/std/SaltedSHA384PasswordStorageSchemeConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SaltedSHA512PasswordStorageSchemeConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SchemaBackendConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SevenBitCleanPluginConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SimilarityBasedPasswordValidatorConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SizeLimitLogRetentionPolicyConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SizeLimitLogRotationPolicyConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SoftReferenceEntryCacheConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/StackTraceMonitorProviderConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/StartTLSExtendedOperationHandlerConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/StaticGroupImplementationConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SubjectAttributeToUserAttributeCertificateMapperConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SubjectDNToUserAttributeCertificateMapperConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SubjectEqualsDNCertificateMapperConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SubschemaSubentryVirtualAttributeConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SubstringMatchingRuleConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SynchronizationProviderConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/SystemInfoMonitorProviderConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TaskBackendConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TelephoneNumberAttributeSyntaxConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TimeLimitLogRotationPolicyConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TraditionalWorkQueueConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TripleDESPasswordStorageSchemeConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TrustManagerProviderConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/TrustStoreBackendConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/UniqueAttributePluginConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/UniqueCharactersPasswordValidatorConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/UserDefinedVirtualAttributeConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/VersionMonitorProviderConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/VirtualAttributeConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/VirtualStaticGroupImplementationConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/WhoAmIExtendedOperationHandlerConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/WorkQueueConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/WorkflowConfiguration.xml
opends/src/admin/defn/org/opends/server/admin/std/WorkflowElementConfiguration.xml |