mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
06.18.2014 bccd35904bb6c244e7eae5b7ddb28e5c295e856b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.opends.org/admin"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  elementFormDefault="qualified"
  xmlns:tns="http://www.opends.org/admin">
  <xsd:import namespace="http://www.opends.org/admin-ldap"
    schemaLocation="admin-ldap.xsd" />
  <xsd:import namespace="http://www.opends.org/admin-cli"
    schemaLocation="admin-cli.xsd" />
  <xsd:import namespace="http://www.opends.org/admin-preprocessor"
    schemaLocation="admin-preprocessor.xsd" />
  <xsd:annotation>
    <xsd:documentation>
      This schema defines the XML schema elements and attributes which
      should be used to specify the server's configuration model.
      Broadly speaking, there are three main components to this schema:
      managed objects, properties, and relations. Using these components
      it is possible to model the server's configuration based on its
      configurable components (managed objects), their configurable
      attributes (properties), and their relationships with other
      configurable components (relations).
    </xsd:documentation>
  </xsd:annotation>
  <xsd:complexType name="managed-object-type">
    <xsd:annotation>
      <xsd:documentation>
        Defines the structure of a configurable component within the
        configuration. A managed object comprises of zero or more
        properties, and zero or more relations with other managed
        objects. A managed object can be abstract, indicating that it
        cannot be instantiated directly, and that it is intended as a
        base definition from which other child managed objects inherit
        their behavior. Conversely, a managed object can be derived from
        a parent managed object definition. In this case, the managed
        object will inherit the properties and relations defined by the
        parent. Multiple levels of inheritance are supported, but
        multiple inheritance is not.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="TODO" minOccurs="0" type="xsd:string"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            An annotation specifying remaining work or unsolved problems
            relating to this managed object definition. Its use is
            primarily for development purposes and should not be
            processed by applications.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="user-friendly-name" minOccurs="0"
        type="tns:description-type">
        <xsd:annotation>
          <xsd:documentation>
            The user friendly name of this managed object. This element
            is optional and by default the user friendly name is derived
            from the definition's name attribute.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="user-friendly-plural-name" minOccurs="0"
        type="tns:description-type">
        <xsd:annotation>
          <xsd:documentation>
            The user friendly plural name of this managed object. This
            element is optional and by default the user friendly plural
            name is derived from the definition's plural-name attribute.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="synopsis" type="tns:rich-description-type">
        <xsd:annotation>
          <xsd:documentation>
            A brief description of this managed object. The description
            should describe, preferably in one sentence, the purpose of
            this managed object. The synopsis should be suitable for use
            in applications such as tool-tips, CLI help, and the summary
            description in Javadoc. It is possible to embed rich content
            including XHTML markup (this will only be used where
            supported).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="description" minOccurs="0"
        type="tns:rich-description-type">
        <xsd:annotation>
          <xsd:documentation>
            A detailed description of this managed object. The
            description should describe in detail the purpose of this
            managed object. The description should be suitable for use
            in applications such as manual pages or detailed help. It
            does not need to repeat anything described in the synopsis
            as applications should normally display the two together. It
            is possible to embed rich content including XHTML markup
            (this will only be used where supported).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="tag" minOccurs="0" maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            The name of a tag defined in the root configuration
            definition. Tags can be used to group related managed object
            definitions together. For example, all managed objects that
            are associated with password management might be tagged with
            "password" (assuming that there is a "password" tag defined
            in the root configuration). Tags are inherited by derived
            managed object definitions.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:attribute name="name" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The name of the referenced tag. There must be an
                accompanying tag definition in the root configuration
                definition.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="constraint" minOccurs="0"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            A constraint on the properties of this managed object. A
            constraint comprises of a condition which must always
            evaluate to true before a modification is permitted.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="synopsis"
              type="tns:rich-description-type">
              <xsd:annotation>
                <xsd:documentation>
                  A brief description of this constraint. The
                  description should describe, preferably in one
                  sentence, the purpose the condition associated with
                  this constraint. The synopsis should be suitable for
                  use in applications such as tool-tips, CLI help, and
                  the summary description in Javadoc. It is possible to
                  embed rich content including XHTML markup (this will
                  only be used where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
            <xsd:element name="condition">
              <xsd:annotation>
                <xsd:documentation>
                  The condition associated with this constraint. The
                  condition must evaluate to true before modifications
                  are permitted.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:group ref="tns:condition-group" />
                </xsd:sequence>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="profile" type="tns:profile-type" minOccurs="0"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            An annotation relating to this managed object. Annotations
            can define additional information which cannot be directly
            represented using this XML schema. The additional
            information can relate to specific applications such as LDAP
            (e.g. LDAP object classes), CLIs (e.g. sub-command name),
            GUIs (e.g. how properties should be arranged and grouped in
            a window).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="relation" maxOccurs="unbounded" minOccurs="0"
        type="tns:relation-type">
        <xsd:annotation>
          <xsd:documentation>
            Specifies a composition relationship between this managed
            object and other "child" managed objects. The relationship
            can be a singleton relationship (i.e. one to one), an
            optional relationship (i.e. one to zero or one), or a one to
            many relationship.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:choice minOccurs="0" maxOccurs="unbounded">
        <xsd:element name="property" type="tns:property-type">
          <xsd:annotation>
            <xsd:documentation>
              Defines a configurable property of this managed object. A
              property's value or values affects the behavior of this
              managed object. Various different types of properties are
              supported, for example, strings, integers, etc. A property
              definition must not override a property defined elsewhere
              in this managed object or property inherited from a parent
              definition.
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
        <xsd:element name="property-override"
          type="tns:property-override-type">
          <xsd:annotation>
            <xsd:documentation>
              Overrides a property definition inherited from a parent
              managed object definition. Using a property override it is
              possible to modify the behavior of an inherited property
              definition in a non-critical way. For example, a managed
              object definition might override the default behavior of
              an inherited Java implementation class property so that
              new instances are created with the correct default
              implementation class.
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
        <xsd:element name="property-reference"
          type="tns:property-reference-type">
          <xsd:annotation>
            <xsd:documentation>
              A reference to a common property definition defined in a
              package, which should be part of this managed object's
              definition.
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
      </xsd:choice>
    </xsd:sequence>
  </xsd:complexType>
  <xsd:complexType name="rich-description-type" mixed="true">
    <xsd:annotation>
      <xsd:documentation>
        An internationalized description string which can contain XHTML
        markup.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:choice minOccurs="0" maxOccurs="unbounded">
      <xsd:any namespace="http://www.w3.org/1999/xhtml"
        processContents="lax" />
      <xsd:element name="product-name">
        <xsd:annotation>
          <xsd:documentation>
            The name of the product associated with this definition.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="user-friendly-name">
        <xsd:annotation>
          <xsd:documentation>
            The name of the managed object associated with this
            definition.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="user-friendly-plural-name">
        <xsd:annotation>
          <xsd:documentation>
            The plural name of the managed object associated with this
            definition.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
    </xsd:choice>
  </xsd:complexType>
  <xsd:complexType name="description-type">
    <xsd:annotation>
      <xsd:documentation>
        An internationalized description string which cannot contain
        XHTML markup.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:simpleContent>
      <xsd:extension base="xsd:token" />
    </xsd:simpleContent>
  </xsd:complexType>
  <xsd:complexType name="property-type">
    <xsd:annotation>
      <xsd:documentation>
        Defines a configurable property of a managed object. A
        property's value or values affects the behavior of the
        associated managed object. Various different types of properties
        are supported, for example, strings, integers, etc. A property
        definition must not override a property defined elsewhere in the
        managed object or property inherited from a parent managed
        object.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="TODO" minOccurs="0" type="xsd:string"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            An annotation specifying remaining work or unsolved problems
            relating to this property definition. Its use is primarily
            for development purposes and should not be processed by
            applications.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="synopsis" type="tns:rich-description-type">
        <xsd:annotation>
          <xsd:documentation>
            A brief description of this property. The description should
            describe, preferably in one sentence, the purpose of this
            property. It does not need to provide details regarding
            default behavior, syntax, nor how changes take effect (e.g.
            immediately, post-restart, etc). The synopsis should be
            suitable for use in applications such as tool-tips, CLI
            help, and the summary description in Javadoc. It is possible
            to embed rich content including XHTML markup (this will only
            be used where supported).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="description" minOccurs="0"
        type="tns:rich-description-type">
        <xsd:annotation>
          <xsd:documentation>
            A detailed description of this property. The description
            should describe in detail the purpose of this property. The
            description should be suitable for use in applications such
            as manual pages or detailed help. It does not need to repeat
            anything described in the synopsis as applications should
            normally display the two together. In addition, it does not
            need to provide details regarding default behavior, syntax,
            nor how changes take effect (e.g. immediately, post-restart,
            etc). It is possible to embed rich content including XHTML
            markup (this will only be used where supported).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="requires-admin-action"
        type="tns:admin-action-type" minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            Defines an optional action which administators must perform
            after they have modified this property. By default
            modifications to properties are assumed to take effect
            immediately and require no additional administrative action.
            Developers should be aware that, where feasible, they should
            implement components such that property modifications
            require no additional administrative action. This is
            required in order to minimize server downtime during
            administration and provide a more user-friendly experience.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="default-behavior" type="tns:default-type"
        minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            Defines a default behavior for the property when it has no
            values specified. All properties must have a default
            behavior defined unless they are mandatory.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="syntax" type="tns:syntax-type">
        <xsd:annotation>
          <xsd:documentation>
            Defines the syntax of this property. This includes the data
            type used for the property and additional constraints (e.g.
            upper/lower bounds).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="profile" type="tns:profile-type" minOccurs="0"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            An annotation relating to this property. Annotations can
            define additional information which cannot be directly
            represented using this XML schema. The additional
            information can relate to specific applications such as LDAP
            (e.g. LDAP attributes), CLIs (e.g. operand name), GUIs (e.g.
            how properties should be arranged and grouped in a window).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="name" type="tns:name-type" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The name of this property. The name should describe as
          concisely as possible the purpose of this property and should
          be suitable for use in Java method names (e.g. getters and
          setters). The property name should be a string comprising of
          short lower-case words joined with hyphens "-". For example,
          "use-ssl".
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="multi-valued" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not this property is multi-valued. By
          default, properties are single-valued.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="read-only" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not this property is read-only. By
          default, properties are not read-only. Read-only properties
          can only be initialized during construction of the associated
          managed object and cannot be modified once the managed object
          has been created.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="monitoring" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not this property is read-only and
          generated automatically by the server as monitoring
          information. By default, properties are not for monitoring.
          Monitoring properties are always read-only because their
          values are generated by the server. During construction of a
          managed object their values are undefined.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="mandatory" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not this property is mandatory. Mandatory
          properties are usually those properties which have no sensible
          default behavior and must, therefore, be specified by
          administrators. If a mandatory property has default values
          these will be used as the values for the property if none are
          specified by the user.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="hidden" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not this property should be hidden from
          client applications. Hidden properties should rarely be used
          but are sometimes required in order to provide functionality
          that needs to be exposed in management APIs but not in
          front-ends such as CLIs.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="advanced" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          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="property-reference-type">
    <xsd:annotation>
      <xsd:documentation>
        A reference to a common property definition defined in a
        package, which should be part of a managed object's definition.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="requires-admin-action"
        type="tns:admin-action-type" minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            Optionally override the administrative action defined in the
            referenced property definition. An administrative action
            defines an optional action which administators must perform
            after they have modified this property. By default
            modifications to properties are assumed to take effect
            immediately and require no additional administrative action.
            Developers should be aware that, where feasible, they should
            implement components such that property modifications
            require no additional administrative action. This is
            required in order to minimize server downtime during
            administration and provide a more user-friendly experience.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="default-behavior" type="tns:default-type"
        minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            Optionally override the default behavior defined in the
            referenced property definition. The default behavior is
            applicable when the property has no values specified. All
            properties must have a default behavior defined unless they
            are mandatory.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="name" type="tns:name-type" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The name of the referenced property.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="package" type="tns:package-type">
      <xsd:annotation>
        <xsd:documentation>
          The package containing the referenced property. By default,
          the package in which this managed object is defined will be
          used.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
  <xsd:complexType name="property-override-type">
    <xsd:annotation>
      <xsd:documentation>
        Overrides a property definition inherited from a parent managed
        object definition. Using a property override it is possible to
        modify the behavior of an inherited property definition in a
        non-critical way. For example, a managed object definition might
        override the default behavior of an inherited Java
        implementation class property so that new instances are created
        with the correct default implementation class.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="requires-admin-action"
        type="tns:admin-action-type" minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            Optionally override the administrative action defined in the
            overridden property definition. An administrative action
            defines an optional action which administators must perform
            after they have modified this property. By default
            modifications to properties are assumed to take effect
            immediately and require no additional administrative action.
            Developers should be aware that, where feasible, they should
            implement components such that property modifications
            require no additional administrative action. This is
            required in order to minimize server downtime during
            administration and provide a more user-friendly experience.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="default-behavior" type="tns:default-type"
        minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            Optionally override the default behavior defined in the
            overridden property definition. The default behavior is
            applicable when the property has no values specified. All
            properties must have a default behavior defined unless they
            are mandatory.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="name" type="tns:name-type" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The name of the overridden property.
        </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="default-managed-object-type">
    <xsd:annotation>
      <xsd:documentation>
        Specifies the configuration of a default managed object which
        should be created when a parent managed object is created. For
        example, creation of a back-end could result in default indexes
        being created.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="property" minOccurs="0"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            Specifies one or more initial values for a property in the
            default managed object.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="value" minOccurs="1"
              maxOccurs="unbounded" type="xsd:string">
              <xsd:annotation>
                <xsd:documentation>
                  The string representation of a value of this property.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
          <xsd:attribute name="name" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The name of the property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
    </xsd:sequence>
    <xsd:attribute name="managed-object-name" type="tns:name-type"
      use="optional">
      <xsd:annotation>
        <xsd:documentation>
          The type of default managed object to be created. This must be
          either the type of the managed object referenced by this
          relation (this is the default behavior) or a sub-type.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="managed-object-package" type="tns:package-type"
      use="optional">
      <xsd:annotation>
        <xsd:documentation>
          The package containing the default managed object definition
          if it is not the same as this managed object's package.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
  <xsd:complexType name="relation-type">
    <xsd:annotation>
      <xsd:documentation>
        Specifies a relationship between a managed object and other
        managed objects. The relationship can be a singleton
        relationship (i.e. one to one), an optional relationship (i.e.
        one to zero or one), or a one to many relationship. Both
        compositions (the default) and aggregations are supported.
        Aggregations are defined by specifying the path to the
        referenced managed objects in the aggregation attribute.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:element name="TODO" minOccurs="0" type="xsd:string"
        maxOccurs="unbounded">
        <xsd:annotation>
          <xsd:documentation>
            An annotation specifying remaining work or unsolved problems
            relating to this relation definition. Its use is primarily
            for development purposes and should not be processed by
            applications.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="synopsis" type="tns:rich-description-type"
        minOccurs="0">
        <xsd:annotation>
          <xsd:documentation>
            An optional brief description of this relation. The
            description should describe, preferably in one sentence, the
            purpose of this relation. If a synopsis is not defined this
            relation will inherit the synopsis of the referenced managed
            object. If present, the synopsis should be suitable for use
            in applications such as tool-tips, CLI help, and the summary
            description in Javadoc. It is possible to embed rich content
            including XHTML markup (this will only be used where
            supported).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:element name="description" minOccurs="0"
        type="tns:rich-description-type">
        <xsd:annotation>
          <xsd:documentation>
            An optional detailed description of this relation. The
            description should describe in detail the purpose of this
            relation. The description should be suitable for use in
            applications such as manual pages or detailed help. It does
            not need to repeat anything described in the synopsis as
            applications should normally display the two together. If a
            description is not defined this relation will inherit the
            description of the referenced managed object. It is possible
            to embed rich content including XHTML markup (this will only
            be used where supported).
          </xsd:documentation>
        </xsd:annotation>
      </xsd:element>
      <xsd:choice>
        <xsd:element name="one-to-one">
          <xsd:annotation>
            <xsd:documentation>
              Specifies a one to one (singleton) relationship with
              another type of managed object.
            </xsd:documentation>
          </xsd:annotation>
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="default-managed-object"
                type="tns:default-managed-object-type" minOccurs="0">
                <xsd:annotation>
                  <xsd:documentation>
                    Defines a default managed object configuration which
                    should be automatically created when the parent
                    managed object is created.
                  </xsd:documentation>
                </xsd:annotation>
              </xsd:element>
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
        <xsd:element name="one-to-zero-or-one">
          <xsd:annotation>
            <xsd:documentation>
              Specifies a one to zero or one (optional) relationship
              with another type of managed object.
            </xsd:documentation>
          </xsd:annotation>
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="default-managed-object"
                type="tns:default-managed-object-type" minOccurs="0">
                <xsd:annotation>
                  <xsd:documentation>
                    Defines a default managed object configuration which
                    should be automatically created when the parent
                    managed object is created.
                  </xsd:documentation>
                </xsd:annotation>
              </xsd:element>
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
        <xsd:element name="one-to-many">
          <xsd:annotation>
            <xsd:documentation>
              Specifies a one to many (instantiable) relationship with
              another type of managed object.
            </xsd:documentation>
          </xsd:annotation>
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="default-managed-object" minOccurs="0"
                maxOccurs="unbounded">
                <xsd:annotation>
                  <xsd:documentation>
                    Defines one or more default managed object
                    configurations which should be automatically created
                    when the parent managed object is created.
                  </xsd:documentation>
                </xsd:annotation>
                <xsd:complexType>
                  <xsd:complexContent>
                    <xsd:extension
                      base="tns:default-managed-object-type">
                      <xsd:attribute name="name" type="xsd:string"
                        use="required">
                        <xsd:annotation>
                          <xsd:documentation>
                            Specifies the name that should be used to
                            identify this default managed object
                            instance.
                          </xsd:documentation>
                        </xsd:annotation>
                      </xsd:attribute>
                    </xsd:extension>
                  </xsd:complexContent>
                </xsd:complexType>
              </xsd:element>
            </xsd:sequence>
            <xsd:attribute name="unique" type="xsd:boolean"
              use="optional" default="false">
              <xsd:annotation>
                <xsd:documentation>
                  Indicates whether or not this relation contains
                  unique members. If set to true then each
                  referenced managed object must have a distinct type.
                  In other words, there must not be more than one
                  referenced managed object having the same type. By
                  default, properties are single-valued.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:attribute>
            <xsd:attribute name="plural-name" type="tns:name-type"
              use="optional">
              <xsd:annotation>
                <xsd:documentation>
                  Specifies the plural name of this relation if
                  different from the plural name of the referenced
                  managed object type.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:attribute>
            <xsd:attribute name="naming-property" type="tns:name-type"
              use="optional">
              <xsd:annotation>
                <xsd:documentation>
                  Specifies the name of a property in the referenced
                  managed object which should be used for naming
                  instances. For example, an attribute index managed
                  object could be named according to the attribute that
                  it indexes. If present, the naming property must
                  reference a single-valued, mandatory, read-only
                  property. If it is not present, the administration
                  framework will use the default naming mechanism.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:attribute>
          </xsd:complexType>
        </xsd:element>
      </xsd:choice>
      <xsd:sequence>
        <xsd:element name="profile" type="tns:profile-type"
          minOccurs="0" maxOccurs="unbounded">
          <xsd:annotation>
            <xsd:documentation>
              An annotation relating to this relation. Annotations can
              define additional information which cannot be directly
              represented using this XML schema. The additional
              information can relate to specific applications such as
              LDAP (e.g. an LDAP RDN representing the entry beneath
              which managed objects should be located).
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
      </xsd:sequence>
    </xsd:sequence>
    <xsd:attribute name="name" type="tns:name-type" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The name of this relation. The name should describe as
          concisely as possible the purpose of this relation and should
          be suitable for use in Java method names (e.g. getters and
          setters). The property name should be a string comprising of
          short lower-case words joined with hyphens "-". For example,
          "key-manager-provider". Usually the name will correspond to
          the name of the referenced type of managed object. If it this
          is not the case, then the type of referenced managed object
          should be specified using the "managed-object-name" attribute.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="managed-object-name" type="tns:name-type"
      use="optional">
      <xsd:annotation>
        <xsd:documentation>
          The type of managed object referenced by this relation if
          different from this relation's name.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="managed-object-package" type="tns:package-type"
      use="optional">
      <xsd:annotation>
        <xsd:documentation>
          The package containing the referenced managed object
          definition if it is not the same as this managed object's
          package.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="advanced" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not managed objects referenced by this
          relation should be treated as advanced and be hidden by
          default in client applications.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
    <xsd:attribute name="hidden" type="xsd:boolean" use="optional"
      default="false">
      <xsd:annotation>
        <xsd:documentation>
          Indicates whether or not this relation should be hidden from
          client applications. Hidden relations should rarely be used
          but are sometimes required in order to provide functionality
          that needs to be exposed in management APIs but not in
          front-ends such as CLIs.
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
  <xsd:complexType name="admin-action-type">
    <xsd:annotation>
      <xsd:documentation>
        Defines an optional action which administators must perform
        after they have modified a property. By default modifications to
        properties are assumed to take effect immediately and require no
        additional administrative action. Developers should be aware
        that, where feasible, they should implement components such that
        property modifications require no additional administrative
        action. This is required in order to minimize server downtime
        during administration and provide a more user-friendly
        experience.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:choice>
      <xsd:element name="none">
        <xsd:annotation>
          <xsd:documentation>
            Used when modifications to a property take effect
            immediately, and no additional administrator action is
            required.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="synopsis"
              type="tns:rich-description-type" minOccurs="0">
              <xsd:annotation>
                <xsd:documentation>
                  An optional description which can be used to describe
                  how changes to the modified property will take effect.
                  If present, the synopsis should be suitable for use in
                  applications such as tool-tips, CLI help, and the
                  summary description in Javadoc. It is possible to
                  embed rich content including XHTML markup (this will
                  only be used where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="server-restart">
        <xsd:annotation>
          <xsd:documentation>
            Used when modifications to a property require a server
            restart in order to take effect.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="synopsis"
              type="tns:rich-description-type" minOccurs="0">
              <xsd:annotation>
                <xsd:documentation>
                  An optional description of this required
                  administrative action. The description should
                  describe, preferably in one sentence, what additional
                  administrator action is required when the server is
                  restarted. If present, the synopsis should be suitable
                  for use in applications such as tool-tips, CLI help,
                  and the summary description in Javadoc. It is possible
                  to embed rich content including XHTML markup (this
                  will only be used where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="component-restart">
        <xsd:annotation>
          <xsd:documentation>
            Used when modifications to a property require a component
            restart in order to take effect (usually by disabling and
            re-enabling the component).
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="synopsis"
              type="tns:rich-description-type" minOccurs="0">
              <xsd:annotation>
                <xsd:documentation>
                  An optional description of this required
                  administrative action. The description should
                  describe, preferably in one sentence, what additional
                  administrator action is required when the component is
                  restarted. If present, the synopsis should be suitable
                  for use in applications such as tool-tips, CLI help,
                  and the summary description in Javadoc. It is possible
                  to embed rich content including XHTML markup (this
                  will only be used where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="other">
        <xsd:annotation>
          <xsd:documentation>
            Used when modifications to a property require an additional
            administrative action in order to take effect. This should
            be used when neither a server restart nor a component
            restart are applicable.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="synopsis"
              type="tns:rich-description-type">
              <xsd:annotation>
                <xsd:documentation>
                  A brief description of this required administrative
                  action. The description should describe, preferably in
                  one sentence, what additional administrator action is
                  required when this property is modified. If present,
                  the synopsis should be suitable for use in
                  applications such as tool-tips, CLI help, and the
                  summary description in Javadoc. It is possible to
                  embed rich content including XHTML markup (this will
                  only be used where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:choice>
  </xsd:complexType>
  <xsd:complexType name="default-type">
    <xsd:annotation>
      <xsd:documentation>
        Defines a default behavior for a property when it has no values
        specified. All properties must have a default behavior defined
        unless they are mandatory.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:choice>
      <xsd:element name="undefined">
        <xsd:annotation>
          <xsd:documentation>
            Used when a property has no tangible default behavior - its
            default behavior is undefined.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="alias">
        <xsd:annotation>
          <xsd:documentation>
            Used when a property defaults to some special behavior that
            cannot be represented using property values.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="synopsis"
              type="tns:rich-description-type">
              <xsd:annotation>
                <xsd:documentation>
                  A brief description of this default behavior. The
                  description should describe, preferably in one
                  sentence, the default behavior. If present, the
                  synopsis should be suitable for use in applications
                  such as tool-tips, CLI help, and the summary
                  description in Javadoc. It is possible to embed rich
                  content including XHTML markup (this will only be used
                  where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
            <xsd:element name="profile" type="tns:profile-type"
              minOccurs="0" maxOccurs="unbounded">
              <xsd:annotation>
                <xsd:documentation>
                  An annotation relating to this default behavior.
                  Annotations can define additional information which
                  cannot be directly represented using this XML schema.
                  The additional information can relate to specific
                  applications.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="defined">
        <xsd:annotation>
          <xsd:documentation>
            Used when a property defaults to one or more real values of
            the property.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="value" minOccurs="1"
              maxOccurs="unbounded" type="xsd:string">
              <xsd:annotation>
                <xsd:documentation>
                  The string representation of a value of this property.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="inherited">
        <xsd:annotation>
          <xsd:documentation>
            Used when a property defaults one or more values taken from
            a property in another managed object.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:choice>
            <xsd:element name="relative">
              <xsd:annotation>
                <xsd:documentation>
                  Used when the managed object providing the default
                  values is located relative to this managed object.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:attribute name="offset" use="required">
                  <xsd:annotation>
                    <xsd:documentation>
                      The relative location of the managed object (where
                      0 is this managed object, 1 is the parent, and 2
                      is the grand-parent).
                    </xsd:documentation>
                  </xsd:annotation>
                  <xsd:simpleType>
                    <xsd:restriction base="xsd:integer">
                      <xsd:minInclusive value="0" />
                    </xsd:restriction>
                  </xsd:simpleType>
                </xsd:attribute>
                <xsd:attribute name="managed-object-name"
                  type="tns:name-type" use="required">
                  <xsd:annotation>
                    <xsd:documentation>
                      The type of managed object providing the default
                      values.
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
                <xsd:attribute name="managed-object-package"
                  type="tns:package-type" use="optional">
                  <xsd:annotation>
                    <xsd:documentation>
                      The package containing the managed object
                      definition if it is not the same as this managed
                      object's package.
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
                <xsd:attribute name="property-name" type="tns:name-type"
                  use="required">
                  <xsd:annotation>
                    <xsd:documentation>
                      The name of the property containing the default
                      values.
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
              </xsd:complexType>
            </xsd:element>
            <xsd:element name="absolute">
              <xsd:annotation>
                <xsd:documentation>
                  Used when the managed object providing the default
                  values is in a known absolute location.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:attribute name="path" type="tns:path-type"
                  use="required">
                  <xsd:annotation>
                    <xsd:documentation>
                      The location of the managed object containing the
                      default values.
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
                <xsd:attribute name="property-name" type="tns:name-type"
                  use="required">
                  <xsd:annotation>
                    <xsd:documentation>
                      The name of the property containing the default
                      values.
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
              </xsd:complexType>
            </xsd:element>
          </xsd:choice>
        </xsd:complexType>
      </xsd:element>
    </xsd:choice>
  </xsd:complexType>
  <xsd:complexType name="syntax-type">
    <xsd:annotation>
      <xsd:documentation>
        Defines the syntax of a property. This includes the data type
        used for the property and additional constraints on the values
        it contains (e.g. upper/lower bounds).
      </xsd:documentation>
    </xsd:annotation>
    <xsd:choice>
      <xsd:element name="aggregation">
        <xsd:annotation>
          <xsd:documentation>
            An aggregation property names one or more managed objects
            which are required by the managed object associated with
            this property. An aggregation property definition takes care
            to perform referential integrity checks: referenced managed
            objects cannot be deleted. Nor can an aggregation reference
            non-existent managed objects. Referential integrity checks
            are not performed during value validation. Instead they are
            performed when changes to the managed object are committed.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="constraint" minOccurs="0">
              <xsd:annotation>
                <xsd:documentation>
                  An optional constraint on the relationship between
                  this managed object and referenced managed objects.
                  The constraint specifies when and how referenced
                  managed objects must be enabled.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="synopsis"
                    type="tns:rich-description-type">
                    <xsd:annotation>
                      <xsd:documentation>
                        A brief description of the constraints
                        applicable to referenced managed objects. The
                        description should describe, preferably in one
                        sentence, when referenced should be enabled and
                        how they should be enabled. The synopsis should
                        be suitable for use in applications such as
                        tool-tips, CLI help, and the summary description
                        in Javadoc. It is possible to embed rich content
                        including XHTML markup (this will only be used
                        where supported).
                      </xsd:documentation>
                    </xsd:annotation>
                  </xsd:element>
                  <xsd:element name="target-needs-enabling-condition"
                    minOccurs="0">
                    <xsd:annotation>
                      <xsd:documentation>
                        A condition which indicates whether or not
                        referenced managed objects must be enabled. The
                        default behavior is that all referenced managed
                        objects must be enabled.
                      </xsd:documentation>
                    </xsd:annotation>
                    <xsd:complexType>
                      <xsd:sequence>
                        <xsd:group ref="tns:condition-group" />
                      </xsd:sequence>
                    </xsd:complexType>
                  </xsd:element>
                  <xsd:element name="target-is-enabled-condition"
                    minOccurs="0">
                    <xsd:annotation>
                      <xsd:documentation>
                        A condition which indicates whether or not
                        referenced managed objects are enabled. Managed
                        objects are assumed to be enabled by default.
                      </xsd:documentation>
                    </xsd:annotation>
                    <xsd:complexType>
                      <xsd:sequence>
                        <xsd:sequence>
                          <xsd:group ref="tns:condition-group" />
                        </xsd:sequence>
                      </xsd:sequence>
                    </xsd:complexType>
                  </xsd:element>
                </xsd:sequence>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
          <xsd:attribute name="parent-path" type="tns:path-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The name of the managed object which is the parent of
                the aggregated managed objects.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="relation-name" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The relation in the parent managed object which contains
                the aggregated managed objects.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="managed-object-name" type="tns:name-type"
            use="optional">
            <xsd:annotation>
              <xsd:documentation>
                The type of managed object referenced by this
                aggregation if different from this relation's name.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="managed-object-package"
            type="tns:package-type" use="optional">
            <xsd:annotation>
              <xsd:documentation>
                The package containing the referenced managed object
                definition if it is not the same as this managed
                object's package.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="attribute-type">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain LDAP attribute type names.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="extensible-matching-rule-type">
       <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain Extensible matching rule type names.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="boolean">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which are best represented using boolean
            on/off type values.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="dn">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain LDAP distinguished names.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="base" minOccurs="0" type="xsd:string">
              <xsd:annotation>
                <xsd:documentation>
                  Indicates that values of this property must be
                  immediately subordinate to the specified base DN.
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="aci">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain dseecompat ACIs.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="java-class">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which reference a Java class. These are
            typically used in plugins where the java class property
            identifies a class implementing the plugin's functionality.
            It is possible to restrict the values of this property using
            the instance-of attribute. Note that it is only possible to
            validate values on the server, since client applications
            don't necessarily have the same classes on their class-path.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="instance-of" minOccurs="0"
              maxOccurs="unbounded">
              <xsd:annotation>
                <xsd:documentation>
                  Indicates that values of this property must implement
                  the specified Java interface. Note that it is only
                  possible to perform validation on the server, since
                  client applications don't necessarily have the same
                  classes on their class-path.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                  <xsd:whiteSpace value="collapse" />
                  <xsd:pattern
                    value="([A-Za-z][A-Za-z0-9_]*\.)*[A-Za-z][A-Za-z0-9_]*" />
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="integer">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain integer values. Where
            appropriate it is possible to provide a description of the
            units for values of this property (e.g. "number of
            threads").
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="unit-synopsis" minOccurs="0"
              type="tns:rich-description-type">
              <xsd:annotation>
                <xsd:documentation>
                  An optional description of the units for this value of
                  this property (e.g. "number of threads"). The
                  description should describe the unit, preferably in
                  one sentence. If present, the description should be
                  suitable for use in applications such as tool-tips,
                  CLI help, and the summary description in Javadoc. It
                  is possible to embed rich content including XHTML
                  markup (this will only be used where supported).
                </xsd:documentation>
              </xsd:annotation>
            </xsd:element>
          </xsd:sequence>
          <xsd:attribute name="allow-unlimited" type="xsd:boolean"
            use="optional" default="true">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this property supports a
                special value representing infinity. This is useful
                where properties are used to constrain some behavior and
                the administrator wishes to remove the constraint (e.g.
                number of simultaneous client connections).
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="lower-limit" type="xsd:integer"
            use="optional" default="0">
            <xsd:annotation>
              <xsd:documentation>
                Indicates a lower limit for this integer property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="upper-limit" type="xsd:integer"
            use="optional">
            <xsd:annotation>
              <xsd:documentation>
                Indicates an upper limit for this integer property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="ip-address">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain IP addresses. IPv4 and
            IPv6 address forms are supported. In addition name
            resolution is performed when non-numeric addresses are
            specified.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="ip-address-mask">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain IP address masks. IPv4 and
            IPv6 address mask forms are supported.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="size">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which represent a computer storage size.
            Sizes can be specified using both decimal and binary units.
            For example, "1kb" represents 1000 bytes, and "1kib"
            represents 1024 bytes. Values must always specify the unit
            and can include a fractional part (e.g. 1.5mb). Both short
            and long unit names are supported (e.g. "kb" and
            "kilobytes").
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:attribute name="allow-unlimited" type="xsd:boolean"
            use="optional" default="false">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this property supports a
                special value representing infinity. This is useful
                where properties are used to constrain some behavior and
                the administrator wishes to remove the constraint (e.g.
                maximum log size).
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="lower-limit" type="xsd:string"
            use="optional" default="0">
            <xsd:annotation>
              <xsd:documentation>
                Indicates a lower limit for this size property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="upper-limit" type="xsd:string"
            use="optional">
            <xsd:annotation>
              <xsd:documentation>
                Indicates an upper limit for this size property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="duration">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain a time duration.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:attribute name="base-unit" use="optional" default="s">
            <xsd:annotation>
              <xsd:documentation>
                Specifies the minimum granularity which can be used to
                specify duration property values. For example, if the
                base unit is in seconds then values represented in
                milliseconds will not be permitted. The default base
                unit is seconds.
              </xsd:documentation>
            </xsd:annotation>
            <xsd:simpleType>
              <xsd:restriction base="xsd:string">
                <xsd:enumeration value="ms" />
                <xsd:enumeration value="s" />
                <xsd:enumeration value="m" />
                <xsd:enumeration value="h" />
                <xsd:enumeration value="d" />
                <xsd:enumeration value="w" />
              </xsd:restriction>
            </xsd:simpleType>
          </xsd:attribute>
          <xsd:attribute name="maximum-unit" use="optional">
            <xsd:annotation>
              <xsd:documentation>
                Specifies the biggest duration unit which can be used to
                specify duration property values. Values presented in
                units greater than this unit will not be permitted.
                There is no default maximum unit.
              </xsd:documentation>
            </xsd:annotation>
            <xsd:simpleType>
              <xsd:restriction base="xsd:string">
                <xsd:enumeration value="ms" />
                <xsd:enumeration value="s" />
                <xsd:enumeration value="m" />
                <xsd:enumeration value="h" />
                <xsd:enumeration value="d" />
                <xsd:enumeration value="w" />
              </xsd:restriction>
            </xsd:simpleType>
          </xsd:attribute>
          <xsd:attribute name="allow-unlimited" type="xsd:boolean"
            use="optional" default="false">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this property supports a
                special value representing infinity. This is useful
                where properties are used to constrain some behavior and
                the administrator wishes to remove the constraint (e.g.
                connection time-out).
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="lower-limit" type="xsd:string"
            use="optional" default="0">
            <xsd:annotation>
              <xsd:documentation>
                Indicates a lower limit for this duration property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="upper-limit" type="xsd:string"
            use="optional">
            <xsd:annotation>
              <xsd:documentation>
                Indicates an upper limit for this duration property.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="password">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain passwords. Values will be
            represented using strings which are then encrypted.
            Typically password properties are write-only and should
            never be displayed in client applications (even during
            creation).
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType />
      </xsd:element>
      <xsd:element name="enumeration">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain values taken from a finite
            set of values. There must be at least one possible value
            defined.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="value" minOccurs="1"
              maxOccurs="unbounded">
              <xsd:annotation>
                <xsd:documentation>
                  Defines one of the possible values that this property
                  can contain.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="synopsis"
                    type="tns:rich-description-type">
                    <xsd:annotation>
                      <xsd:documentation>
                        A description of this enumeration value. The
                        description should describe the behavior
                        indicated by the value preferably in one
                        sentence. The description should be suitable for
                        use in applications such as tool-tips, CLI help,
                        and the summary description in Javadoc. It is
                        possible to embed rich content including XHTML
                        markup (this will only be used where supported).
                      </xsd:documentation>
                    </xsd:annotation>
                  </xsd:element>
                </xsd:sequence>
                <xsd:attribute name="name" use="required"
                  type="tns:name-type">
                  <xsd:annotation>
                    <xsd:documentation>
                      The name of this enumeration value. The name
                      should describe as concisely as possible the
                      behavior indicated by this value and should be
                      suitable for use in Java source code (e.g.
                      enumerations). The enumeration value name should
                      be a string comprising of short lower-case words
                      joined with hyphens "-". For example, "optional".
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="string">
        <xsd:annotation>
          <xsd:documentation>
            Used for properties which contain string values. It is
            possible to contrain the permitted set of values using a
            regular expression.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="pattern" minOccurs="0">
              <xsd:annotation>
                <xsd:documentation>
                  Constrains the permitted set of values using a regular
                  expression. All values of this property must match the
                  provided regular expression.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="regex" type="xsd:string">
                    <xsd:annotation>
                      <xsd:documentation>
                        The regular expression conforming to the syntax
                        supported by the Java "java.util.regex.Pattern"
                        class.
                      </xsd:documentation>
                    </xsd:annotation>
                  </xsd:element>
                  <xsd:element name="usage" type="xsd:string">
                    <xsd:annotation>
                      <xsd:documentation>
                        The usage string which should be displayed in
                        help relating to this string based property. For
                        example, a pattern which is used to match a
                        host/port string could have the usage HOST:PORT.
                      </xsd:documentation>
                    </xsd:annotation>
                  </xsd:element>
                  <xsd:element name="synopsis"
                    type="tns:rich-description-type">
                    <xsd:annotation>
                      <xsd:documentation>
                        An description of the regular expression (e.g.
                        "email address"). The description should
                        describe the type of string represented by the
                        regular expression, preferably in one sentence.
                        If present, the description should be suitable
                        for use in applications such as tool-tips, CLI
                        help, and the summary description in Javadoc. It
                        is possible to embed rich content including
                        XHTML markup (this will only be used where
                        supported).
                      </xsd:documentation>
                    </xsd:annotation>
                  </xsd:element>
                </xsd:sequence>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
          <xsd:attribute name="case-insensitive" type="xsd:boolean"
            use="optional" default="true">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not values of this property should
                be treated in a case-insensitive manner.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
    </xsd:choice>
  </xsd:complexType>
  <xsd:simpleType name="name-type">
    <xsd:annotation>
      <xsd:documentation>
        An identifier name comprising of a 1 or more sequences of lower
        case letters or digits separated by a single hyphen '-'. The
        first sequence must begin with a letter.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base="xsd:token">
      <xsd:pattern value="[a-z][a-z0-9]*(-[a-z0-9]+)*" />
    </xsd:restriction>
  </xsd:simpleType>
  <xsd:simpleType name="package-type">
    <xsd:annotation>
      <xsd:documentation>
        An identifier name comprising of a 1 or more sequences of lower
        case letters or digits separated by a single dot '.'. The first
        sequence must begin with a letter.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base="xsd:token">
      <xsd:pattern value="[a-z][a-z0-9]*(\.[a-z0-9]+)*" />
    </xsd:restriction>
  </xsd:simpleType>
  <xsd:simpleType name="path-type">
    <xsd:annotation>
      <xsd:documentation>
        A managed object path which can be used to specify the location
        of referenced managed objects. A managed object path has a
        similar syntax to unix file system paths, and comprises of zero
        or more path elements separated by a forward slash "/". The root
        configuration is referenced using the path "/". Subsequent path
        elements identify subordinate managed objects. Each path element
        is comprised of the relation name, an optional definition name,
        and the name of the managed object instance if the relation is
        one-to-many. The path "/relation=connection-handler+name=my
        handler" identifies a connection handler called "my handler"
        where "my handler" can be any type of connection handler. If "my
        handler" must be an LDAP connection handler then the type needs
        to be specified in the path:
        "/relation=connection-handler+type=ldap-connection-handler+name=my
        handler". The global configuration is identified by the path
        "/relation=global-configuration" (no name is required because
        the relation is one-to-one).
      </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base="xsd:string">
      <xsd:pattern
        value="/|(/relation=[^/+]+(\+type=[^/+]+)?(\+name=[^/]+)?)+">
      </xsd:pattern>
    </xsd:restriction>
  </xsd:simpleType>
  <xsd:complexType name="profile-type">
    <xsd:annotation>
      <xsd:documentation>
        An annotation relating to the associated element. Annotations
        can define additional information which cannot be directly
        represented using this XML schema. The additional information
        can relate to specific applications such as CLIs, GUIs, etc.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
      <xsd:any processContents="strict" maxOccurs="unbounded" />
    </xsd:sequence>
    <xsd:attribute name="name" type="tns:name-type" use="required">
      <xsd:annotation>
        <xsd:documentation>
          The name of this profile e.g. "ldap".
        </xsd:documentation>
      </xsd:annotation>
    </xsd:attribute>
  </xsd:complexType>
  <xsd:element name="root-managed-object">
    <xsd:annotation>
      <xsd:documentation>
        Defines the root managed object and its relationships with
        top-level managed objects. The root managed object serves as a
        single point of access to the rest of the configuration. It is
        essentially a virtual managed object and has no properties of
        its own, just relationships. There can only be a single root
        managed object defined per configuration model.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:complexContent>
        <xsd:extension base="tns:managed-object-type">
          <xsd:sequence>
            <xsd:element name="product-name">
              <xsd:annotation>
                <xsd:documentation>
                  The name of the product associated with this
                  configuration model.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                  <xsd:whiteSpace value="collapse" />
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
            <xsd:element name="tag-definition" minOccurs="0"
              maxOccurs="unbounded">
              <xsd:annotation>
                <xsd:documentation>
                  Defines a tag which can be used to group related types
                  of managed object. Administration tools can take
                  advantage of managed object tags to make it easier for
                  users to discover related components.
                </xsd:documentation>
              </xsd:annotation>
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="synopsis">
                    <xsd:annotation>
                      <xsd:documentation>
                        A brief description of this tag. The description
                        should describe, preferably in one sentence, the
                        types of managed object that this tag applies
                        to. The synopsis should be suitable for use in
                        applications such as tool-tips, CLI help, and
                        the summary description in Javadoc. It is
                        possible to embed rich content including XHTML
                        markup (this will only be used where supported).
                      </xsd:documentation>
                    </xsd:annotation>
                    <xsd:complexType mixed="true">
                      <xsd:choice minOccurs="0" maxOccurs="unbounded">
                        <xsd:any
                          namespace="http://www.w3.org/1999/xhtml"
                          processContents="lax" />
                        <xsd:element name="product-name">
                          <xsd:annotation>
                            <xsd:documentation>
                              The name of the product associated with
                              this definition.
                            </xsd:documentation>
                          </xsd:annotation>
                          <xsd:complexType />
                        </xsd:element>
                      </xsd:choice>
                    </xsd:complexType>
                  </xsd:element>
                </xsd:sequence>
                <xsd:attribute name="name" type="tns:name-type"
                  use="required">
                  <xsd:annotation>
                    <xsd:documentation>
                      The name of this tag. The name should describe as
                      concisely as possible the purpose of this tag and
                      should be suitable for use in Java method names
                      (e.g. getters and setters). The property name
                      should be a string comprising of short lower-case
                      words joined with hyphens "-". For example,
                      "security".
                    </xsd:documentation>
                  </xsd:annotation>
                </xsd:attribute>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
          <xsd:attribute name="name" type="tns:name-type"
            fixed="root">
            <xsd:annotation>
              <xsd:documentation>
                The name of this root managed object, which is always
                "root".
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="package" type="tns:package-type"
            fixed="org.forgerock.opendj.admin">
            <xsd:annotation>
              <xsd:documentation>
                The package containing this root managed object, which
                is always "org.forgerock.opendj.admin".
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:extension>
      </xsd:complexContent>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="managed-object">
    <xsd:annotation>
      <xsd:documentation>
        Defines the structure of a configurable component within the
        configuration. A managed object comprises of zero or more
        properties, and zero or more relations with other managed
        objects. A managed object can be abstract, indicating that it
        cannot be instantiated directly, and that it is intended as a
        base definition from which other child managed objects inherit
        their behavior. Conversely, a managed object can be derived from
        a parent managed object definition. In this case, the managed
        object will inherit the properties and relations defined by the
        parent. Multiple levels of inheritance are supported, but
        multiple inheritance is not.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:complexContent>
        <xsd:extension base="tns:managed-object-type">
          <xsd:attribute name="name" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The name of this managed object. The name should
                describe as concisely as possible the role of this
                managed object and should be suitable for use in Java
                method names (e.g. class names). The managed object name
                should be a string comprising of short lower-case words
                joined with hyphens "-". For example,
                "ldap-connection-handler". NOTE: a managed object name
                must end in the name of the definition's uppermost
                super-type. For example, "ldap-connection-handler" is a
                sub-type of "connection-handler" and therefore ends in
                "-connection-handler".
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="plural-name" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The plural name of this managed object. The plural name
                should correspond to the singular name defined in the
                "name" attribute and it should be suitable for use in
                Java method names (e.g. getters). The managed object
                plural name should be a string comprising of short
                lower-case words joined with hyphens "-". For example,
                "ldap-connection-handlers".
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="package" type="tns:package-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The package containing this managed object.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="abstract" type="xsd:boolean"
            use="optional" default="false">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this managed object is
                abstract. Abstract managed objects cannot be
                instantiated directly and are intended for use as base
                definitions for inheritance.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="advanced" type="xsd:boolean"
            use="optional" default="false">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this managed object should be
                treated as advanced and therefore should be hidden by
                default in client applications. This feature is not
                inherited by child managed objects.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="hidden" type="xsd:boolean" use="optional"
            default="false">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this managed object should be
                hidden from client applications. Hidden managed objects
                should rarely be used but are sometimes required in
                order to provide functionality that needs to be exposed
                in management APIs but not in front-ends such as CLIs.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="extends" type="tns:name-type"
            use="optional">
            <xsd:annotation>
              <xsd:documentation>
                Indicates whether or not this managed object inherits
                from a parent managed object and, if so, the name of the
                parent. If specified, this managed object will inherit
                all of the properties and relations defined in the
                parent managed object.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="parent-package" type="tns:package-type"
            use="optional">
            <xsd:annotation>
              <xsd:documentation>
                The package containing the parent managed object. By
                default, the package in which this managed object is
                defined will be used.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:extension>
      </xsd:complexContent>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="package">
    <xsd:annotation>
      <xsd:documentation>
        Defines a common information associated with all managed objects
        defined in the containing package. A package definition
        comprises of a description of the package together with common
        property definitions which can be referenced from within managed
        objects using "property-reference" elements. Sharing property
        definitions in this way makes maintenance easier in situations
        where the property definition needs modifying, since all
        referencing managed objects will automatically inherit the
        changes.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="TODO" minOccurs="0" type="xsd:string"
          maxOccurs="unbounded">
          <xsd:annotation>
            <xsd:documentation>
              An annotation specifying remaining work or unsolved
              problems relating to this package definition. Its use is
              primarily for development purposes and should not be
              processed by applications.
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
        <xsd:element name="synopsis" type="tns:rich-description-type">
          <xsd:annotation>
            <xsd:documentation>
              A brief description of this package. The description
              should describe, preferably in one sentence, the purpose
              of this package, for example, the type of managed objects
              it defines. The synopsis should be suitable for use in
              applications such as tool-tips, CLI help, and the summary
              description in Javadoc. It is possible to embed rich
              content including XHTML markup (this will only be used
              where supported).
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
        <xsd:element name="description" minOccurs="0"
          type="tns:rich-description-type">
          <xsd:annotation>
            <xsd:documentation>
              A detailed description of this package. The description
              should describe in detail the purpose of this package. The
              description should be suitable for use in applications
              such as manual pages or detailed help. It does not need to
              repeat anything described in the synopsis as applications
              should normally display the two together. It is possible
              to embed rich content including XHTML markup (this will
              only be used where supported).
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
        <xsd:element name="property" minOccurs="0" maxOccurs="unbounded"
          type="tns:property-type">
          <xsd:annotation>
            <xsd:documentation>
              Defines a common configurable property for this package.
              Managed objects can inherit this property definition by
              referencing it using a "property-reference" element.
            </xsd:documentation>
          </xsd:annotation>
        </xsd:element>
      </xsd:sequence>
      <xsd:attribute name="name" type="tns:package-type"
        use="required">
        <xsd:annotation>
          <xsd:documentation>
            The package containing this package definition.
          </xsd:documentation>
        </xsd:annotation>
      </xsd:attribute>
    </xsd:complexType>
  </xsd:element>
  <xsd:group name="condition-group">
    <xsd:choice>
      <xsd:element name="not">
        <xsd:annotation>
          <xsd:documentation>
            A condition which evaluates to true if the sub-condition is
            false, or false if the sub-condition is true.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:group ref="tns:condition-group" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="and">
        <xsd:annotation>
          <xsd:documentation>
            A condition which evaluates to true if and only if all of
            its sub-conditions are true.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:group ref="tns:condition-group" maxOccurs="unbounded" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="or">
        <xsd:annotation>
          <xsd:documentation>
            A condition which evaluates to false if and only if none of
            its sub-conditions are true.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:group ref="tns:condition-group" maxOccurs="unbounded" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="implies">
        <xsd:annotation>
          <xsd:documentation>
            Creates a condition which evaluates to false if and only if
            the first sub-condition evaluates to true and the second
            sub-condition evaluates to false. This can be used to
            represent if-then relationships.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:sequence>
            <xsd:group ref="tns:condition-group" />
            <xsd:group ref="tns:condition-group" />
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="contains">
        <xsd:annotation>
          <xsd:documentation>
            A condition which evaluates to true if and only if a
            property contains a particular value.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:attribute name="property" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The name of the property to be tested.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
          <xsd:attribute name="value" type="xsd:string"
            use="required">
            <xsd:annotation>
              <xsd:documentation>The property value.</xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="is-present">
        <xsd:annotation>
          <xsd:documentation>
            Creates a condition which evaluates to true if and only if a
            particular property has any values specified.
          </xsd:documentation>
        </xsd:annotation>
        <xsd:complexType>
          <xsd:attribute name="property" type="tns:name-type"
            use="required">
            <xsd:annotation>
              <xsd:documentation>
                The name of the property to be tested.
              </xsd:documentation>
            </xsd:annotation>
          </xsd:attribute>
        </xsd:complexType>
      </xsd:element>
    </xsd:choice>
  </xsd:group>
</xsd:schema>