Skip to content

Commit 0cb75a3

Browse files
committedFeb 24, 2014
[WFLY-3006] Fix xsd to reflect the 'socket' config on the standalone server management interfaces is deprecated.
1 parent 373ef9b commit 0cb75a3

File tree

1 file changed

+25
-13
lines changed

1 file changed

+25
-13
lines changed
 

‎build/src/main/resources/docs/schema/jboss-as-config_2_0.xsd

+25-13
Original file line numberDiff line numberDiff line change
@@ -663,8 +663,8 @@
663663
This is optional but could be useful in a few scenarios e.g. authenticate with an e-mail address but be identified by a username,
664664
correcting the case of an entered username or even in the future ensuring consistency after a different
665665
authentication approach.
666-
667-
Note: This value will become the username used for any subsequent group loading.
666+
667+
Note: This value will become the username used for any subsequent group loading.
668668
</xs:documentation>
669669
</xs:annotation>
670670
</xs:attribute>
@@ -685,7 +685,7 @@
685685
<xs:complexType name="ldapAuthorizationType">
686686
<xs:complexContent>
687687
<xs:extension base="baseLdapAuthType">
688-
<xs:sequence>
688+
<xs:sequence>
689689
<xs:element name="username-to-dn" type="ldapUserSearchType" minOccurs="0" />
690690
<xs:element name="group-search" type="ldapGroupSearchType" />
691691
</xs:sequence>
@@ -884,7 +884,7 @@
884884
</xs:annotation>
885885
</xs:attribute>
886886
</xs:complexType>
887-
887+
888888
<xs:simpleType name="cacheType">
889889
<xs:restriction base="xs:string">
890890
<xs:enumeration value="by-search-time" />
@@ -909,8 +909,8 @@
909909

910910
If items are not going to be evicted based on time then max-cache-size should be set otherwise the cache
911911
could grow without restriction.
912-
913-
Note: The eviction time is handled on a best-efforts basis, during times of many concurrent authentications
912+
913+
Note: The eviction time is handled on a best-efforts basis, during times of many concurrent authentications
914914
there could be small delay before the evictions fire.
915915
</xs:documentation>
916916
</xs:annotation>
@@ -1237,7 +1237,7 @@
12371237
The numerical values in the enumeration entries, is the numerical value as defined in the RFC.
12381238
</xs:documentation>
12391239
</xs:annotation>
1240-
<xs:simpleType>
1240+
<xs:simpleType>
12411241
<xs:restriction base="xs:token">
12421242
<xs:enumeration value="KERNEL">
12431243
<xs:annotation>
@@ -1659,13 +1659,19 @@
16591659
Configuration of the socket to use for the native management interface is a choice
16601660
between a direct configuration of the address and port, or a reference to a socket-binding
16611661
configuration in the server's socket-binding-group element. The latter is the recommended
1662-
approach is it makes it easier to avoid port conflicts by taking advantage of the
1662+
approach as it makes it easier to avoid port conflicts by taking advantage of the
16631663
socket-binding-group's port-offset configuration. Direct configuration of the address and
1664-
ports is provided to preserve backward compatibility.
1664+
ports is deprecated and is only provided to preserve backward compatibility.
16651665
</xs:documentation>
16661666
</xs:annotation>
16671667
<xs:choice>
1668-
<xs:element name="socket" type="native-management-socketType"/>
1668+
<xs:element name="socket" type="native-management-socketType">
1669+
<xs:annotation>
1670+
<xs:documentation>
1671+
Deprecated. Use 'socket-binding'
1672+
</xs:documentation>
1673+
</xs:annotation>
1674+
</xs:element>
16691675
<xs:element name="socket-binding" type="native-management-socket-binding-refType"/>
16701676
</xs:choice>
16711677
</xs:extension>
@@ -1700,13 +1706,19 @@
17001706
Configuration of the socket to use for the HTTP/HTTPS management interface is a choice
17011707
between a direct configuration of the address and ports, or a reference to socket-binding
17021708
configurations in the server's socket-binding-group element. The latter is the recommended
1703-
approach is it makes it easier to avoid port conflicts by taking advantage of the
1709+
approach as it makes it easier to avoid port conflicts by taking advantage of the
17041710
socket-binding-group's port-offset configuration. Direct configuration of the address and
1705-
ports is provided to preserve backward compatibility.
1711+
ports is deprecated and is only provided to preserve backward compatibility.
17061712
</xs:documentation>
17071713
</xs:annotation>
17081714
<xs:choice>
1709-
<xs:element name="socket" type="http-management-socketType"/>
1715+
<xs:element name="socket" type="http-management-socketType">
1716+
<xs:annotation>
1717+
<xs:documentation>
1718+
Deprecated. Use 'socket-binding'
1719+
</xs:documentation>
1720+
</xs:annotation>
1721+
</xs:element>
17101722
<xs:element name="socket-binding" type="http-management-socket-binding-refType"/>
17111723
</xs:choice>
17121724
<xs:attribute name="console-enabled" type="xs:boolean" use="optional" default="true"/>

0 commit comments

Comments
 (0)
Please sign in to comment.