Author: ericjohnson
Date: Fri Nov 7 14:43:27 2008
New Revision: 712299
URL: http://svn.apache.org/viewvc?rev=712299&view=rev
Log:
added some annotations
cleaned up a javadoc comment
Modified:
cxf/trunk/api/src/main/java/org/apache/cxf/binding/Binding.java
cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ConduitSelector.java
cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd
cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd
Modified: cxf/trunk/api/src/main/java/org/apache/cxf/binding/Binding.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/api/src/main/java/org/apache/cxf/binding/Binding.java?rev=712299&r1=712298&r2=712299&view=diff
==============================================================================
--- cxf/trunk/api/src/main/java/org/apache/cxf/binding/Binding.java (original)
+++ cxf/trunk/api/src/main/java/org/apache/cxf/binding/Binding.java Fri Nov 7
14:43:27 2008
@@ -44,7 +44,8 @@
Message createMessage(Message m);
/**
- * Get the BindingInfor
+ * Get the BindingInfo for this binding.
+ *
* @return the BingdingInfo Object
*/
BindingInfo getBindingInfo();
Modified:
cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ConduitSelector.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ConduitSelector.java?rev=712299&r1=712298&r2=712299&view=diff
==============================================================================
--- cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ConduitSelector.java
(original)
+++ cxf/trunk/api/src/main/java/org/apache/cxf/endpoint/ConduitSelector.java
Fri Nov 7 14:43:27 2008
@@ -25,7 +25,7 @@
/**
- * Strategy for retreival of a Conduit to mediate an outbound message.
+ * Strategy for retreiving a Conduit to mediate an outbound message.
* A specific instance implementing a particular strategy may be injected
* into the Client via config.
*/
@@ -65,7 +65,7 @@
Endpoint getEndpoint();
/**
- * @param endpoint the endpoint to encapsulate
+ * @param endpoint the Endpoint to encapsulate
*/
void setEndpoint(Endpoint endpoint);
}
Modified:
cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd?rev=712299&r1=712298&r2=712299&view=diff
==============================================================================
---
cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd
(original)
+++
cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd
Fri Nov 7 14:43:27 2008
@@ -40,8 +40,16 @@
<jaxb:class
implClass="org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl"/>
</xs:appinfo>
</xs:annotation>
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="type" type="xs:QName" use="required"/>
+ <xs:attribute name="name" type="xs:string" use="required">
+ <xs:annotation>
+ <xs:documentation>Specifies a name for the mapped type.
Typically this name is derived from the XML Schema type being
mapped.</xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
+ <xs:attribute name="type" type="xs:QName" use="required">
+ <xs:annotation>
+ <xs:documentation>Specifies the XML Schema type being
mapped to the CORBA type.</xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
<xs:attribute name="qualified" type="xs:boolean" />
</xs:complexType>
<xs:complexType name="namedType">
@@ -50,7 +58,11 @@
</xs:annotation>
<xs:complexContent>
<xs:extension base="corba:corbaType">
- <xs:attribute name="repositoryID"
type="xs:string" use="required"/>
+ <xs:attribute name="repositoryID"
type="xs:string" use="required">
+ <xs:annotation>
+ <xs:documentation>Specifies the fully
qualified repository ID of the CORBA type being mapped.</xs:documentation>
+ </xs:annotation>
+ </xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Modified:
cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd
URL:
http://svn.apache.org/viewvc/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd?rev=712299&r1=712298&r2=712299&view=diff
==============================================================================
--- cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd
(original)
+++ cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd
Fri Nov 7 14:43:27 2008
@@ -34,7 +34,7 @@
<xs:attribute name="rootNode" type="xs:QName"
use="optional">
<xs:annotation>
- <xs:documentation>The QName of
the root element used to wrap the message passed across the
wire</xs:documentation>
+ <xs:documentation>Specifies the
QName of the root element used to wrap the message passed across the
wire</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
@@ -57,7 +57,7 @@
</xs:element>
<xs:element name="binding" type="xformat:XMLFormatBinding">
<xs:annotation>
- <xs:documentation>Specifies that the messages are
mapped to XML documents</xs:documentation>
+ <xs:documentation>Specifies that the messages are
mapped to XML documents.</xs:documentation>
</xs:annotation>
</xs:element>