Skip to content

Commit

Permalink
AS7-2134 Rename client-socket-binding (and related references) to out…
Browse files Browse the repository at this point in the history
…bound-socket-binding, which represents the feature better
  • Loading branch information
jaikiran authored and bstansberry committed Nov 3, 2011
1 parent 828ff8b commit dc606f1
Show file tree
Hide file tree
Showing 21 changed files with 285 additions and 296 deletions.
18 changes: 9 additions & 9 deletions build/src/main/resources/docs/schema/jboss-as-config_1_1.xsd
Expand Up @@ -824,7 +824,7 @@
<xs:sequence>
<xs:element name="include" type="socket-binding-group-includeType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="socket-binding" type="socket-bindingType" maxOccurs="unbounded"/>
<xs:element name="client-socket-binding" type="client-socket-bindingType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="outbound-socket-binding" type="outbound-socket-bindingType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required"/>
<xs:attribute name="default-interface" type="xs:string" use="required">
Expand Down Expand Up @@ -925,9 +925,9 @@
</xs:attribute>
</xs:complexType>

<xs:complexType name="client-socket-bindingType">
<xs:complexType name="outbound-socket-bindingType">
<xs:annotation>
<xs:documentation>Configuration information for a client socket.</xs:documentation>
<xs:documentation>Configuration information for a outbound socket.</xs:documentation>
</xs:annotation>
<xs:choice>
<xs:element name="remote-destination" type="remote-destinationType" maxOccurs="1"/>
Expand All @@ -937,23 +937,23 @@
<xs:attribute name="name" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>
The name of the client socket binding
The name of the outbound socket binding
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="source-interface" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>
The name of the interface that should be used for setting up the source address of the
socket. This should be one of the declared interfaces.
outbound socket. This should be one of the declared interfaces.
</xs:documentation>
</xs:annotation>

</xs:attribute>
<xs:attribute name="source-port" type="xs:positiveInteger" use="optional">
<xs:annotation>
<xs:documentation>
The port number that will be used for setting the source addresss of the socket. If the
The port number that will be used for setting the source addresss of the outbound socket. If the
source-interface attribute has been specified and the source-port attribute is absent,
then the system uses a ephemeral port while binding the socket to a source address.
</xs:documentation>
Expand All @@ -973,15 +973,15 @@
<xs:attribute name="host" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>
The remote server address to which the client socket has to be connect.
The remote server address to which the outbound socket has to be connect.
The address can be either a IP address of the host server of the hostname of the server
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="port" type="xs:positiveInteger" use="required">
<xs:annotation>
<xs:documentation>
The remote port to which the client socket has to connect.
The remote port to which the outbound socket has to connect.
</xs:documentation>
</xs:annotation>
</xs:attribute>
Expand All @@ -991,7 +991,7 @@
<xs:attribute name="socket-binding-ref" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>
The reference to a socket binding that has to be used as the destination for the client
The reference to a socket binding that has to be used as the destination for the outbound
socket binding. This socket binding name should belong to the same socket binding group
to which this local destination client socket belongs.
</xs:documentation>
Expand Down
Expand Up @@ -111,7 +111,7 @@ public class ModelDescriptionConstants {
public static final String KEYSTORE = "keystore";
public static final String LDAP = "ldap";
public static final String LOCAL = "local";
public static final String LOCAL_DESTINATION_CLIENT_SOCKET_BINDING = "local-destination-client-socket-binding";
public static final String LOCAL_DESTINATION_OUTBOUND_SOCKET_BINDING = "local-destination-outbound-socket-binding";
public static final String LOCALE = "locale";
public static final String MANAGEMENT_SUBSYSTEM_ENDPOINT = "management-subsystem-endpoint";
public static final String MANAGEMENT = "management";
Expand Down Expand Up @@ -180,7 +180,7 @@ public class ModelDescriptionConstants {
public static final String RELATIVE_TO = "relative-to";
public static final String REMOVE = "remove";
public static final String REMOTE = "remote";
public static final String REMOTE_DESTINATION_CLIENT_SOCKET_BINDING = "remote-destination-client-socket-binding";
public static final String REMOTE_DESTINATION_OUTBOUND_SOCKET_BINDING = "remote-destination-outbound-socket-binding";
public static final String REPLACE_DEPLOYMENT = "replace-deployment";
public static final String REPLY_PROPERTIES = "reply-properties";
public static final String REQUEST_PROPERTIES = "request-properties";
Expand Down

0 comments on commit dc606f1

Please sign in to comment.