sms.dtd revision 590e03a0114f53c994d970cfb356dadaaa57e39d
43b4c41fbb07705c9df321221ab9cb9832460407Christian Maeder<!--
c63ebf815c8a874525cf18670ad74847f7fc7b26Christian Maeder DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder The contents of this file are subject to the terms
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder of the Common Development and Distribution License
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder (the License). You may not use this file except in
43b4c41fbb07705c9df321221ab9cb9832460407Christian Maeder compliance with the License.
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder
f4a2a20e49f41b2afa657e5e64d9e349c7faa091Christian Maeder You can obtain a copy of the License at
f2f9df2e17e70674f0bf426ed1763c973ee4cde0Christian Maeder https://opensso.dev.java.net/public/CDDLv1.0.html or
c9a7e6af169a2adfb92f42331cd578065ed83a2bChristian Maeder opensso/legal/CDDLv1.0.txt
c9a7e6af169a2adfb92f42331cd578065ed83a2bChristian Maeder See the License for the specific language governing
e7757995211bd395dc79d26fe017d99375f7d2a6Christian Maeder permission and limitations under the License.
e7757995211bd395dc79d26fe017d99375f7d2a6Christian Maeder
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder When distributing Covered Code, include this CDDL
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder Header Notice in each file and include the License file
a1ed34933c266ce85066acb0d7b20c90cb8eb213Christian Maeder at opensso/legal/CDDLv1.0.txt.
c0c2380bced8159ff0297ece14eba948bd236471Christian Maeder If applicable, add the following below the CDDL Header,
404166b9366552e9ec5abb87a37c76ec8a815fb7Klaus Luettich with the fields enclosed by brackets [] replaced by
b1f59a4ea7c96f4c03a4d7cfcb9c5e66871cfbbbChristian Maeder your own identifying information:
ad270004874ce1d0697fb30d7309f180553bb315Christian Maeder "Portions Copyrighted [year] [name of copyright owner]"
4d56f2fa72e4aec20eb827c11ed49c8cbb7014bdChristian Maeder
4cb215739e9ab13447fa21162482ebe485b47455Christian Maeder $Id: sms.dtd,v 1.8 2008/09/04 23:59:39 veiming Exp $
8ef75f1cc0437656bf622cec5ac9e8ea221da8f2Christian Maeder
404166b9366552e9ec5abb87a37c76ec8a815fb7Klaus Luettich Portions Copyrighted 2014-2016 ForgeRock AS.
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder-->
74eed04be26f549d2f7ca35c370e1c03879b28b1Christian Maeder
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!-- This DTD defines the data structure that will be used by services to define their configuration information and their management tasks.
3e8b136f23ed57d40ee617f49bcac37830b58cabChristian MaederUnique Declaration name for DOCTYPE tag:
ef9e8535c168d3f774d9e74368a2317a9eda5826Christian Maeder
3e8b136f23ed57d40ee617f49bcac37830b58cabChristian Maeder
ef9e8535c168d3f774d9e74368a2317a9eda5826Christian Maeder"Service Management Services (SMS) 1.0 DTD"
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder-->
e593b89bfd4952698dc37feced21cefe869d87a2Christian Maeder
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!-- Provides the I18N key required to get the parameter description in a given locale. If this is not provided it uses the name of the configuration parameter as the I18N key. -->
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder<!ENTITY % i18nIndex "i18nKey CDATA #IMPLIED" >
7cc09dd93962a2155c34d209d1d4cd7d7b838264Christian Maeder
1aee4aaddde105264c1faf394d88e302c05094ffChristian Maeder<!-- ServicesConfiguration is the root node for all services' configuration parameters and tasks. Multiple services can be registered using a single XML file. The version attribute specifies the version of the ServiceConfiguration. -->
1aee4aaddde105264c1faf394d88e302c05094ffChristian Maeder<!ELEMENT ServicesConfiguration ( Service )+ >
51d769d55d88dfa88bdf54bee78d8fa85a2deba8Christian Maeder<!ATTLIST ServicesConfiguration
f041c9a6bda23de33a38490e35b831ae18d96b45Christian Maeder version NMTOKEN "1.0"
7cc09dd93962a2155c34d209d1d4cd7d7b838264Christian Maeder>
51d769d55d88dfa88bdf54bee78d8fa85a2deba8Christian Maeder
1aee4aaddde105264c1faf394d88e302c05094ffChristian Maeder<!-- Service defines configuratin parameters' schema (Schema), plugin configuration parameters' schema (PluginSchema), and/or configuration data (Configuration). Examples of services are authentication, session, log, user management (ums), policy, etc. The name attribute provides the name of the service, and version attribute specifies the version of the service. -->
1aee4aaddde105264c1faf394d88e302c05094ffChristian Maeder<!ELEMENT Service ( Schema?, PluginSchema*, Configuration? ) >
c3053d57f642ca507cdf79512e604437c4546cb9Christian Maeder<!ATTLIST Service
dcbd32289a7bdf1e6edd06c6ab0698c6a9dbf37aChristian Maeder name NMTOKEN #REQUIRED
f4a2a20e49f41b2afa657e5e64d9e349c7faa091Christian Maeder version NMTOKEN #REQUIRED
f4a2a20e49f41b2afa657e5e64d9e349c7faa091Christian Maeder>
dcbd32289a7bdf1e6edd06c6ab0698c6a9dbf37aChristian Maeder
05a62e84edac8c64de04f8349dee418598d216b9Christian Maeder<!-- Schema defines the schema for the configuration parameters of the service. The sub-elements define the service's specific Server configuration attributes for the respective parameter grouping (global, organization, dynamic, user, policy and generic). The Generic sub-element can be used for managing general configuration attributes. The attributes provide information for I18N properties file name and the URL of the jar file which contains the properties file. Additionally defines the ServiceHierarchy which defines where the service will be displayed in the OpenSSO admin. console. The propertiesViewBeanURL provides the Admin Console viewbean URL associated with this schema. The i18nIndex attribute provides the I18N key used to get the localized display name-->
1cd4f6541984962658add5cfaa9f28a93879881bChristian Maeder<!ELEMENT Schema ( Global?, Organization?, Dynamic?, Policy?, User?, Group?, Domain?,
1aee4aaddde105264c1faf394d88e302c05094ffChristian Maeder Generic*, PluginInterface* ) >
8b767d09a78927b111f5596fdff9ca7d2c1a439fChristian Maeder<!ATTLIST Schema i18nJarURL CDATA #IMPLIED
8b767d09a78927b111f5596fdff9ca7d2c1a439fChristian Maeder i18nFileName CDATA #IMPLIED
8b767d09a78927b111f5596fdff9ca7d2c1a439fChristian Maeder serviceHierarchy CDATA #IMPLIED
8b767d09a78927b111f5596fdff9ca7d2c1a439fChristian Maeder propertiesViewBeanURL CDATA #IMPLIED
8b767d09a78927b111f5596fdff9ca7d2c1a439fChristian Maeder revisionNumber NMTOKEN "10"
8b767d09a78927b111f5596fdff9ca7d2c1a439fChristian Maeder resourceName CDATA #IMPLIED
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder %i18nIndex; >
d54cd08a4cfa26256c38d8ed12c343adbfe1a0e3Christian Maeder
23b4e542dca35852f58d1fb3f7d9078c1de5ab06Christian Maeder<!-- Global element provides grouping of configuration parameters that are globally applicable to all instances of its service. In the case of services that are grouped, these configuration parameters are global to that group. The schema of the configuration parameters is provided by AttributeSchema, and if there is any necessity to sub-group additional configuration parameters, they can be grouped using the SubSchema element. The attribute validate is by default considered yes, but if it is set to no, then the validation of configuration data against the schema is disabled. This also disables the inheritance of default values from the schema. -->
624e6701e0deb7ac6c03c0cba0190fbc5033cf93Ewaryst Schulz<!ELEMENT Global ( AttributeSchema | SubSchema )* >
8cacad2a09782249243b80985f28e9387019fe40Christian Maeder<!ATTLIST Global validate ( yes | no ) "yes" >
363939beade943a02b31004cea09dec34fa8a6d9Christian Maeder
a7c27282e71cf4505026645f96d4f5cb8a284e32Christian Maeder<!-- Organization element provides a grouping of configuration parameters that can be configured differently for various organizations. Examples are parameters like organization's authentication mechanisms, logging information, etc. The schema of the configuration parameters is provided by AttributeSchema and if there is any necessity to sub-group additional configuration parameters they can be grouped using the SubSchema element. Additionally if some of the configuration parameters need to be obtained during creation of the organization, they can be specifed under OrganizationAttributeSchema element. -->
363939beade943a02b31004cea09dec34fa8a6d9Christian Maeder<!ELEMENT Organization ( AttributeSchema*, SubSchema*, OrganizationAttributeSchema? ) >
014dc30f64ec25e4790cca987d4d1e6635430510Christian Maeder
f04e8f3ff56405901be968fd4c6e9769239f1a9bKlaus Luettich<!-- OrganizationAttributeSchema element provides a grouping of configuration parameters that will be obtained at the time of organization creation and will be managed as part of the organization attributes. -->
6aea82c63ba1d2efc0329bc784a14e521469ec20Christian Maeder<!ELEMENT OrganizationAttributeSchema ( AttributeSchema* ) >
6aea82c63ba1d2efc0329bc784a14e521469ec20Christian Maeder
431d34c7007a787331c4e5ec997badb0f8190fc7Christian Maeder<!-- Dynamic element provides a grouping of configuration parameters that are applicable to all user objects, with respect to this service. These attributes are usually implemented as CoS (Class of Service) privided by iDS 5.2. Examples are parameters like status attributes, mail address, etc. The schema of the configuration parameters is provided by AttributeSchem. The AttributeSchema provides the schema of the configuration parameters. -->
f1541d4a151dbd08002dbd14e7eb1d5dde253689Christian Maeder<!ELEMENT Dynamic ( AttributeSchema* ) >
498aa48bdb931ab50990d3b74318a5db2312186cChristian Maeder
f1541d4a151dbd08002dbd14e7eb1d5dde253689Christian Maeder<!-- Group element provides a grouping of configuration parameters that are applicable to group objects, with respect to this service. Examples are parameters like social security number, email address, etc. The AttributeSchema provides the schema of the configuration parameters. -->
6dc9bc98d0854fe2e3dd3bfc4275096a0c28ee1cChristian Maeder<!ELEMENT Group ( AttributeSchema* ) >
6dc9bc98d0854fe2e3dd3bfc4275096a0c28ee1cChristian Maeder<!ATTLIST Group
6dc9bc98d0854fe2e3dd3bfc4275096a0c28ee1cChristian Maeder statusAttribute CDATA #IMPLIED
23ffcc44ca8612feccbd8fda63fa5be7ab5f9dc3Christian Maeder>
61fa0ac06ede811c7aad54ec4c4202346727368eChristian Maeder
c0c2380bced8159ff0297ece14eba948bd236471Christian Maeder<!-- Domain element provides a grouping of configuration parameters that are applicable to domain objects,
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder with respect to this service. Examples are parameters like social security number, email address, etc
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder. The AttributeSchema provides the schema of the configuration parameters. -->
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ELEMENT Domain ( AttributeSchema* ) >
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ATTLIST Domain
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder statusAttribute CDATA #IMPLIED
9e748851c150e1022fb952bab3315e869aaf0214Christian Maeder>
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder<!-- User element provides a grouping of configuration parameters that are applicable to user objects,
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder with respect to this service. Examples are parameters like social security number, email address, etc
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder. The AttributeSchema provides the schema of the configuration parameters. -->
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder<!ELEMENT User ( AttributeSchema* ) >
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ATTLIST User
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder statusAttribute CDATA #IMPLIED
a5e5b8c3e5c11177e5034ef2423813a5d28979edChristian Maeder>
bc8cbf12aa172bf5673b92a9e7a0151d4aa4c315Christian Maeder
2d130d212db7208777ca896a7ecad619a8944971Christian Maeder<!-- Generic element provides grouping of configuration parameters that donot fit in any of the other specific categories. The The AttributeSchema provides the schema of the configuration parameters. The attribute type provides the name for the generic collection of attributes. -->
2d130d212db7208777ca896a7ecad619a8944971Christian Maeder<!ELEMENT Generic ( AttributeSchema* ) >
51d769d55d88dfa88bdf54bee78d8fa85a2deba8Christian Maeder<!ATTLIST Generic
a5e5b8c3e5c11177e5034ef2423813a5d28979edChristian Maeder type NMTOKEN #REQUIRED
a42fbfe7becf0eae2d624123eb0db73a794593f0Christian Maeder>
a42fbfe7becf0eae2d624123eb0db73a794593f0Christian Maeder
a42fbfe7becf0eae2d624123eb0db73a794593f0Christian Maeder<!-- Policy element provides grouping of actions (or privileges) that are specific to the service. Examples of actions are canForwardEmailAddress, canChangeSalaryInformation, etc. The The schema of the configuration parameters is provided by AttributeSchema. The AttributeSchema provides the schema of the configuration parameters. -->
1cd4f6541984962658add5cfaa9f28a93879881bChristian Maeder<!ELEMENT Policy ( AttributeSchema* ) >
1cd4f6541984962658add5cfaa9f28a93879881bChristian Maeder
2d130d212db7208777ca896a7ecad619a8944971Christian Maeder<!-- SubSchema defines the schema for a service that are grouped for logical purposes. The configuration information is stored as a subordinate node under the service. The name attribute provides the name for the sub-schema. The inheritance attribute specifies whether this schema can be inherited by only one or multiple configuration nodes using SubConfiguration elements. The default inheritance is single. The maintainPriority attribute suggests if priority must be honored among its peer SubConfig elements. The i18nIndex attribute provides the I18N key used to get the localized display name. The attribute validate is by default considered yes, but if it is set to no, then the validation of configuration data against the schema is disabled. This also disables the inheritance of default values from the schema. -->
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder<!ELEMENT SubSchema ( AttributeSchema | SubSchema )* >
6ff7a91875597d6e4dfaa68c79187d01473e8341Christian Maeder<!ATTLIST SubSchema name CDATA #REQUIRED
6ff7a91875597d6e4dfaa68c79187d01473e8341Christian Maeder inheritance ( single | multiple ) "single"
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder maintainPriority ( yes | no ) "no"
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder validate ( yes | no ) "yes"
4017ebc0f692820736d796af3110c3b3018c108aChristian Maeder supportsApplicableOrganization ( yes | no ) "no"
a9b59eb2ce961014974276cdae0e9df4419bd212Christian Maeder hideConfigUI ( yes | no ) "no"
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder realmCloneable ( yes | no ) "yes"
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder i18nFileName CDATA #IMPLIED
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder resourceName CDATA #IMPLIED
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder %i18nIndex;
6a79849bed67264c396dddb3e9c184bdfc1a1bc9Christian Maeder>
a3c6d8e0670bf2aa71bc8e2a3b1f45d56dd65e4cChristian Maeder
dc679edd4ca027663212afdf00926ae2ce19b555Christian Maeder<!-- PluginInterface provides the definition of a pluggable interface to be used by a service, which has a pluggable architecture. The name attribute name provides the name for the plugin interface, and the attribute "interface" provides the fully qualified Java interface class name. The i18nIndex attribute provides the I18N key used to get the localized display name -->
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ELEMENT PluginInterface EMPTY>
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder<!ATTLIST PluginInterface
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder name NMTOKEN #REQUIRED
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder interface NMTOKEN #REQUIRED
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder %i18nIndex;
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder>
4017ebc0f692820736d796af3110c3b3018c108aChristian Maeder
b568982efd0997d877286faa592d81b03c8c67b8Christian Maeder<!-- PluginSchema provides the information needed to dynamically download and instantiate the plugin for a service. The name attribute gives the name for the plugin, interfaceName provides the name of plugin interface defined by the plugin, className gives the name of the java class that implements the plugin interface, jarURL gives the URL of the jar file where the java class can be found. The organizationName if specified determines the organization to which the plugin schema is added. The i18nJarURL specifies the URL to the jar file that contains the i18nFile. The i18nFileName specifies the name of the properties file used to get the localized display name. The propertiesViewBeanURL provides the name of the Admin Console viewbean associated with this pluginSchema. The i18nIndex attribute provides the I18N key used to get the localized display name -->
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder<!ELEMENT PluginSchema (AttributeSchema*) >
0be0db405c49906bd7057255069bf6df53395ac9Klaus Luettich<!ATTLIST PluginSchema
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder name NMTOKEN #REQUIRED
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder interfaceName NMTOKEN #REQUIRED
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder className NMTOKEN #REQUIRED
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder jarURL CDATA #IMPLIED
f2f9df2e17e70674f0bf426ed1763c973ee4cde0Christian Maeder organizationName CDATA #IMPLIED
d946c1bfdd7d58aa7c023efe864d5999eb44a61bChristian Maeder i18nJarURL CDATA #IMPLIED
d946c1bfdd7d58aa7c023efe864d5999eb44a61bChristian Maeder i18nFileName CDATA #IMPLIED
d946c1bfdd7d58aa7c023efe864d5999eb44a61bChristian Maeder propertiesViewBeanURL CDATA #IMPLIED
d946c1bfdd7d58aa7c023efe864d5999eb44a61bChristian Maeder %i18nIndex;
d946c1bfdd7d58aa7c023efe864d5999eb44a61bChristian Maeder>
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!-- AttributeSchema defines a single configuration parameter for a service. The attribute name gives the name for the configurable parameter, The type specifies the kind of value the attribute will take. Possible values are: single, list, single_choice, multi_choice, signature, or validator type. For single_choice, a default value must be defined from the list of choice values. The default value for type is list; The uitype specifies the display type as radio, link, button, or name_value_list; The syntax defines whether the parameter is boolean, string, paragraph, password, encrypted_password, dn, email, url, numeric, percent, number, decimal_number, number_range, decimal_range, xml, or date. The cosQualifier defines how the OpenSSO will resolve conflicting cosQulaifier attributes assigned to the same user object. The default value for syntax is string; The rangeStart and rangeEnd provide the starting and ending values for attribute syntax decimal_range and number range, respectively; The minValue and maxValue provide the minimun and maximun acceptable values respectively. The validator specifies the name of the class that would validate this attribute. The any provides means for service developers to add service-specific information. The propertiesViewBeanURL specifies the name of the Admin Console viewbean associated with this attribute. The i18nIndex attribute provides the I18N key used to get the localized display name. The elements IsOptional, IsServiceIdentifier, IsResourceNameAllowed, IsStatusAttribute represent whether the attribute is optional, a service identifier (CoS specifier), resource name allowed or status attribute, respectievely. The element BooleanValues provide the boolean true and false values. The element DefaultValues provides the default values for the parameter. The element ChoiceValues provides the possible values for the parameter if it is of choice type. The element Condition, if present specifies boolean operations which determine if the attribute is valid based on the current configuration data. If multiple Condition elements are present it is sufficient if at least one of them statisfy the requirement (this provides "OR" implementation). -->
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ELEMENT AttributeSchema (IsOptional?, IsServiceIdentifier?, IsResourceNameAllowed?,
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder IsStatusAttribute?, ChoiceValues?, BooleanValues?, DefaultValues?,
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder Condition* ) >
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder<!ATTLIST AttributeSchema
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder name NMTOKEN #REQUIRED
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder type ( single | list | single_choice | multiple_choice |
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder signature | validator ) "list"
ca074a78b8dcccbb8c419586787882f98d0c6163Christian Maeder uitype ( radio | link | button | name_value_list | unorderedlist |
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder orderedlist | maplist | globalmaplist | addremovelist | scriptSelect | globalScriptSelect) #IMPLIED
3e8b136f23ed57d40ee617f49bcac37830b58cabChristian Maeder syntax ( boolean | string | paragraph | password | encrypted_password |
f1541d4a151dbd08002dbd14e7eb1d5dde253689Christian Maeder dn | email | url | numeric | percent | number |
6dc9bc98d0854fe2e3dd3bfc4275096a0c28ee1cChristian Maeder decimal_number | number_range | decimal_range | xml | date | script ) "string"
d946c1bfdd7d58aa7c023efe864d5999eb44a61bChristian Maeder cosQualifier ( default | override |
e6d5dbbc3308f05197868806e0b860f4f53875f1Christian Maeder operational | merge-schemes ) "default"
363939beade943a02b31004cea09dec34fa8a6d9Christian Maeder listOrder ( natural | insertion ) "natural"
e4f4d096e5e6d60dd91c746d0e833d0ac7a29c50Christian Maeder rangeStart CDATA #IMPLIED
eb74267cf39e4e95f9eeb5c765f4c8dac33971b4Christian Maeder rangeEnd CDATA #IMPLIED
eb74267cf39e4e95f9eeb5c765f4c8dac33971b4Christian Maeder minValue CDATA #IMPLIED
e4f4d096e5e6d60dd91c746d0e833d0ac7a29c50Christian Maeder maxValue CDATA #IMPLIED
61fa0ac06ede811c7aad54ec4c4202346727368eChristian Maeder validator CDATA #IMPLIED
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder any CDATA #IMPLIED
f1541d4a151dbd08002dbd14e7eb1d5dde253689Christian Maeder propertiesViewBeanURL CDATA #IMPLIED
363939beade943a02b31004cea09dec34fa8a6d9Christian Maeder isSearchable ( yes | no ) "no"
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder resourceName CDATA #IMPLIED
6cd33d6101fb1b93baa6d86fac158af18a115108Christian Maeder %i18nIndex;
6cd33d6101fb1b93baa6d86fac158af18a115108Christian Maeder>
6cd33d6101fb1b93baa6d86fac158af18a115108Christian Maeder
6cd33d6101fb1b93baa6d86fac158af18a115108Christian Maeder<!-- DefaultValues provide the default values for the attribute. The values are statically defined via the sub-element Value, or can be dynamically computed by calling the class defined by the sub-element DefaultValuesClassName. -->
6cd33d6101fb1b93baa6d86fac158af18a115108Christian Maeder<!ELEMENT DefaultValues ( Value* | DefaultValuesClassName ) >
6cd33d6101fb1b93baa6d86fac158af18a115108Christian Maeder
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder<!-- DefaultValuesClassName provides the name of a java class that implements the abstract class com.sun.identity.sm.DefaultValues and provides the implementation for the method getDefaultValues that returns the default values for the AttributeSchema. -->
10883d13973c46cac98964b66ace7a52b2d059abChristian Maeder<!ELEMENT DefaultValuesClassName ( AttributeValuePair* ) >
c9a7e6af169a2adfb92f42331cd578065ed83a2bChristian Maeder<!ATTLIST DefaultValuesClassName
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder className NMTOKEN #REQUIRED
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder>
0e5b095a19790411e5352fa7cf57cb0388e70472Christian Maeder
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder<!-- ChoiceValues provide the only possible values for the attribute. The values are statically defined via the sub-element Value or can be dynamically computed by calling the class defined by the sub-element ChoiceValuesClassName. -->
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder<!ELEMENT ChoiceValues ( ChoiceValue* | ChoiceValuesClassName ) >
c9a7e6af169a2adfb92f42331cd578065ed83a2bChristian Maeder
c9a7e6af169a2adfb92f42331cd578065ed83a2bChristian Maeder<!-- ChoiceValuesClassName provides the name of a java class that implements the abstract class com.sun.identity.sm.ChoiceValues and provides the implementation for the method getChoiceValues that returns the choice values for the AttributeSchema. -->
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder<!ELEMENT ChoiceValuesClassName ( AttributeValuePair* ) >
5191fa24c532d1f67e7a642e9aece65efb8a0975Christian Maeder<!ATTLIST ChoiceValuesClassName
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder className NMTOKEN #REQUIRED
93f5b72fdb9ee734caa750b43dd79bbb590dcd73Christian Maeder>
93f5b72fdb9ee734caa750b43dd79bbb590dcd73Christian Maeder
93f5b72fdb9ee734caa750b43dd79bbb590dcd73Christian Maeder<!-- ChoiceValue provides one of the possible choice values for an attribute and whether it is the default value, and its i18n key used to get the localized display name. -->
93f5b72fdb9ee734caa750b43dd79bbb590dcd73Christian Maeder<!ELEMENT ChoiceValue (#PCDATA) >
328a85c807f2a95c3f147d10b05927eaf862ebebChristian Maeder<!ATTLIST ChoiceValue
a6db617ca58eb6a0587b6366e913107dfecb71b5Heng Jiang %i18nIndex;
06dd4e7c29f33f6122a910719e3bd9062256e397Andy Gimblett>
254df6f22d01eacf7c57b85729e0445747b630d9Christian Maeder
7a3fe82695aa32657693e05712f84d7f81672f2eJonathan von Schroeder<!-- BooleanValues provides the values associated with "true" and "false" boolean values -->
5b818f10e11fc79def1fdd5c8a080d64a6438d87Christian Maeder<!ELEMENT BooleanValues ( BooleanTrueValue, BooleanFalseValue ) >
8b0f493ae42bad8b94918cc0957f1af57096cda4Felix Reckers
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder<!-- BooleanTrueValue defines the value for the "true" . The i18nIndex specifies the I18N key used to get the localized display name -->
819e29dba060687cf391e444e0f6ff88c1908cc3Christian Maeder<!ELEMENT BooleanTrueValue (#PCDATA) >
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ATTLIST BooleanTrueValue
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder %i18nIndex;
a14767aeac3e78ed100f5b75e210ba563ee10dbaChristian Maeder>
54ea981a0503c396c2923a1c06421c6235baf27fChristian Maeder
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder<!-- BooleanFalseValue defines the value for the "false" . The i18nIndex specifies the I18N key used to get the localized display name -->
3e8b136f23ed57d40ee617f49bcac37830b58cabChristian Maeder<!ELEMENT BooleanFalseValue (#PCDATA) >
8b0f493ae42bad8b94918cc0957f1af57096cda4Felix Reckers<!ATTLIST BooleanFalseValue
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder %i18nIndex;
9e748851c150e1022fb952bab3315e869aaf0214Christian Maeder>
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder
61fa0ac06ede811c7aad54ec4c4202346727368eChristian Maeder<!-- IsOptional defines that the attribute is optional. -->
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder<!ELEMENT IsOptional EMPTY >
383aa66e5142365fe9b1f88b18c1da5b27cc8c04Christian Maeder
383aa66e5142365fe9b1f88b18c1da5b27cc8c04Christian Maeder<!-- IsServiceIdentifier defines that the attribute identifies the kind of service offered. -->
383aa66e5142365fe9b1f88b18c1da5b27cc8c04Christian Maeder<!ELEMENT IsServiceIdentifier EMPTY >
383aa66e5142365fe9b1f88b18c1da5b27cc8c04Christian Maeder
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder<!-- IsStatusAttribute defines that the attribute will be used to determine the service status. -->
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder<!ELEMENT IsStatusAttribute EMPTY >
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder<!-- IsResourceNameAllowed defines that the attribute(or action in Policy) can have a resource name. -->
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder<!ELEMENT IsResourceNameAllowed EMPTY >
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder
383aa66e5142365fe9b1f88b18c1da5b27cc8c04Christian Maeder<!-- Condition specifies the condition of a peer attribute-value pair that must be satisfied for conditional attributes. Only if the current condition is satisfied, sub-ordinate conditions, if present, are evaluated (this provides AND implementation). The attribute operator provides a boolean OR operation, and attributes attributeName and attributeValue provide the condition that must be met. -->
383aa66e5142365fe9b1f88b18c1da5b27cc8c04Christian Maeder<!ELEMENT Condition ( Condition* ) >
a14767aeac3e78ed100f5b75e210ba563ee10dbaChristian Maeder<!ATTLIST Condition
a14767aeac3e78ed100f5b75e210ba563ee10dbaChristian Maeder operator ( equals | notEquals ) "equals"
a14767aeac3e78ed100f5b75e210ba563ee10dbaChristian Maeder attributeName NMTOKEN #REQUIRED
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder attributeValue CDATA #IMPLIED
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder>
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder
54ea981a0503c396c2923a1c06421c6235baf27fChristian Maeder<!-- Configuration defines service-specific configuration data. It also provides the service instance names, configuration parameters for the respective parameter grouping (global and organization), configuration for plugins. -->
54ea981a0503c396c2923a1c06421c6235baf27fChristian Maeder<!ELEMENT Configuration (Instance*, GlobalConfiguration*, OrganizationConfiguration*, PluginConfiguration*) >
54ea981a0503c396c2923a1c06421c6235baf27fChristian Maeder
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder<!-- Instance defines an instance of the service by providing its name and optionally its group membership and its URI. The name attribute gives a user-friendly name that can used to identify the instance of the service, group attribute gives the group name from which it obtains its configuration data, and uri gives the URL for the service. -->
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder<!ELEMENT Instance ( AttributeValuePair* ) >
697e63e30aa3c309a1ef1f9357745111f8dfc5a9Christian Maeder<!ATTLIST Instance
f9e0b18852b238ddb649d341194e05d7200d1bbeChristian Maeder name NMTOKEN "default"
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder group NMTOKEN "default"
f9e0b18852b238ddb649d341194e05d7200d1bbeChristian Maeder uri CDATA #IMPLIED
819e29dba060687cf391e444e0f6ff88c1908cc3Christian Maeder>
819e29dba060687cf391e444e0f6ff88c1908cc3Christian Maeder
819e29dba060687cf391e444e0f6ff88c1908cc3Christian Maeder<!-- GlobalConfiguration defines the configuration parameters for all instances within a service group. The element AttributeValuePair provides the configuration data; and element SubConfiguration provides the configuration data for further sub-grouping of configuration parameters. -->
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!ELEMENT GlobalConfiguration (AttributeValuePair*, SubConfiguration*) >
254df6f22d01eacf7c57b85729e0445747b630d9Christian Maeder<!ATTLIST GlobalConfiguration
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder group NMTOKEN "default"
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder>
254df6f22d01eacf7c57b85729e0445747b630d9Christian Maeder
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!-- OrganizationConfiguration defines the configuration parameters for a particular organization. The attribute name provides the name of the organization. The element AttributeValuePair provides the configuration data and SubConfiguration provides the configuration data for further sub-grouping of configuration parameters. The element OrganizationAttributeValuePair provides the organization specific configuration defined by OrganizationAttributeSchema, these configuration parameters are searchable and are usually indexed by the configuration store. The i18nIndex specifies the I18N key used to get the localized display name. -->
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!ELEMENT OrganizationConfiguration (AttributeValuePair*, SubConfiguration*, OrganizationAttributeValuePair?) >
254df6f22d01eacf7c57b85729e0445747b630d9Christian Maeder<!ATTLIST OrganizationConfiguration name CDATA #REQUIRED
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder group NMTOKEN "default"
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder %i18nIndex; >
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!-- SubConfiguration defines the configuration information for the sub-nodes of the service specified by SubSchema. The attribute id refers to the name of the SubSchema whose schema is being used; name provides the name for this group's configuration parameters, and priority specifies the priority level for this configuration. The i18nIndex specifies the I18N key used to get the localized display name. -->
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder<!ELEMENT SubConfiguration (AttributeValuePair*, SubConfiguration*) >
ac34194a668399bb8ef238da77c3a09e93fb253bChristian Maeder<!ATTLIST SubConfiguration name CDATA #REQUIRED
4fc9de0da898448f1d3597ebbd8c04a066464c21Christian Maeder id CDATA #IMPLIED
aded505f9b42cc38975559c2a5d175ae95de436bChristian Maeder priority NMTOKEN #IMPLIED
d23b0cc79c0d204e6ec758dff8d0ba71c9f693f7Christian Maeder %i18nIndex; >
1842453990fed8a1bd7a5ac792d7982c1d2bfcd5Christian Maeder
4fc9de0da898448f1d3597ebbd8c04a066464c21Christian Maeder<!-- OrganizationAttributeValuePair defines the configuration parameters that will be required at the time of organization creation and will be managed as part of the organization attributes. -->
4fc9de0da898448f1d3597ebbd8c04a066464c21Christian Maeder<!ELEMENT OrganizationAttributeValuePair ( AttributeValuePair* ) >
1842453990fed8a1bd7a5ac792d7982c1d2bfcd5Christian Maeder
456238178f89e5a3de2988ee6c8af924297d52d9Christian Maeder<!-- PluginConfiguration defines the configuration information for a plugin as defined by its plugin schema. The attribute name provides a user friendly name for the plugin configuration, pluginSchemaName specifies the name of the plugin schema for which the configuration parameters are provided, organizationName if specified determines the organization to which the plugin configuration is to be applied, and priority specifies the priority for this plugin. -->
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!ELEMENT PluginConfiguration ( AttributeValuePair* ) >
986d3f255182539098a97ac86da9eeee5b7a72e3Christian Maeder<!ATTLIST PluginConfiguration
61fa0ac06ede811c7aad54ec4c4202346727368eChristian Maeder name NMTOKEN #REQUIRED
4561227a776bdf0ab679b19fb92f1eaaed8786f7Christian Maeder pluginSchemaName NMTOKEN #REQUIRED
01e278bdd7dce13b9303ed3d79683d83c89d09f9Liam O'Reilly interfaceName NMTOKEN #REQUIRED
61fa0ac06ede811c7aad54ec4c4202346727368eChristian Maeder organizationName CDATA #IMPLIED
5ad5dffe06818a13e1632b1119fbca7881085fc1Dominik Luecke priority NMTOKEN #IMPLIED
8c812cd83569e973f10cf69a342424ceabc07af9Christian Maeder>
8c812cd83569e973f10cf69a342424ceabc07af9Christian Maeder
8c812cd83569e973f10cf69a342424ceabc07af9Christian Maeder<!-- AttributeValuePair defines generic attribute-value pairs that can used to specify configuration information. -->
7a3fe82695aa32657693e05712f84d7f81672f2eJonathan von Schroeder<!ELEMENT AttributeValuePair (Attribute, Value*) >
7a3fe82695aa32657693e05712f84d7f81672f2eJonathan von Schroeder
7a3fe82695aa32657693e05712f84d7f81672f2eJonathan von Schroeder<!-- Attribute defines the attribute name i.e., a configuration parameter -->
7a3fe82695aa32657693e05712f84d7f81672f2eJonathan von Schroeder<!ELEMENT Attribute EMPTY>
05a206508bc898f87fe6ab6e069814df3c29d303Dominik Luecke<!ATTLIST Attribute name NMTOKEN #REQUIRED >
05a206508bc898f87fe6ab6e069814df3c29d303Dominik Luecke
63f0e65a37b95621334db9ee4ba0cd9d826f5c0fChristian Maeder<!-- Value defines the value within an attribute-value pair. -->
d54cd08a4cfa26256c38d8ed12c343adbfe1a0e3Christian Maeder<!ELEMENT Value (#PCDATA) >
d54cd08a4cfa26256c38d8ed12c343adbfe1a0e3Christian Maeder