You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2014/01/13 15:41:57 UTC

svn commit: r1557734 - in /cxf/trunk/core/src/main/java/org/apache/cxf: bus/managers/EndpointResolverRegistryImpl.java bus/managers/ServiceContractResolverRegistryImpl.java helpers/DOMUtils.java ws/addressing/AddressingProperties.java

Author: coheigea
Date: Mon Jan 13 14:41:57 2014
New Revision: 1557734

URL: http://svn.apache.org/r1557734
Log:
Some javadoc warnings

Modified:
    cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/EndpointResolverRegistryImpl.java
    cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/ServiceContractResolverRegistryImpl.java
    cxf/trunk/core/src/main/java/org/apache/cxf/helpers/DOMUtils.java
    cxf/trunk/core/src/main/java/org/apache/cxf/ws/addressing/AddressingProperties.java

Modified: cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/EndpointResolverRegistryImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/EndpointResolverRegistryImpl.java?rev=1557734&r1=1557733&r2=1557734&view=diff
==============================================================================
--- cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/EndpointResolverRegistryImpl.java (original)
+++ cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/EndpointResolverRegistryImpl.java Mon Jan 13 14:41:57 2014
@@ -153,9 +153,9 @@ public class EndpointResolverRegistryImp
     
     /**
      * Walk the list of registered EndpointResolvers, so as to mint a new 
-     * abstract EPR for a gievn physical EPR.
+     * abstract EPR for a given physical EPR.
      * 
-     * @param serviceName
+     * @param physical
      * @return the newly minted EPR if appropriate, null otherwise
      */
     public EndpointReferenceType mint(EndpointReferenceType physical) {

Modified: cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/ServiceContractResolverRegistryImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/ServiceContractResolverRegistryImpl.java?rev=1557734&r1=1557733&r2=1557734&view=diff
==============================================================================
--- cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/ServiceContractResolverRegistryImpl.java (original)
+++ cxf/trunk/core/src/main/java/org/apache/cxf/bus/managers/ServiceContractResolverRegistryImpl.java Mon Jan 13 14:41:57 2014
@@ -52,7 +52,7 @@ public class ServiceContractResolverRegi
     /**
      * Sets the bus with which the registry is associated.
      *
-     * @param bus
+     * @param b
      */
     public final void setBus(Bus b) {
         this.bus = b;

Modified: cxf/trunk/core/src/main/java/org/apache/cxf/helpers/DOMUtils.java
URL: http://svn.apache.org/viewvc/cxf/trunk/core/src/main/java/org/apache/cxf/helpers/DOMUtils.java?rev=1557734&r1=1557733&r2=1557734&view=diff
==============================================================================
--- cxf/trunk/core/src/main/java/org/apache/cxf/helpers/DOMUtils.java (original)
+++ cxf/trunk/core/src/main/java/org/apache/cxf/helpers/DOMUtils.java Mon Jan 13 14:41:57 2014
@@ -80,8 +80,7 @@ public final class DOMUtils {
     }
     
     /**
-     * Creates a new Docuement object
-     * @return
+     * Creates a new Document object
      * @throws ParserConfigurationException
      */
     public static Document newDocument() {
@@ -313,7 +312,6 @@ public final class DOMUtils {
      * for the prefix
      * @param qualifiedName
      * @param node
-     * @return
      */
     public static QName createQName(String qualifiedName, Node node) {
         if (qualifiedName == null) {

Modified: cxf/trunk/core/src/main/java/org/apache/cxf/ws/addressing/AddressingProperties.java
URL: http://svn.apache.org/viewvc/cxf/trunk/core/src/main/java/org/apache/cxf/ws/addressing/AddressingProperties.java?rev=1557734&r1=1557733&r2=1557734&view=diff
==============================================================================
--- cxf/trunk/core/src/main/java/org/apache/cxf/ws/addressing/AddressingProperties.java (original)
+++ cxf/trunk/core/src/main/java/org/apache/cxf/ws/addressing/AddressingProperties.java Mon Jan 13 14:41:57 2014
@@ -73,14 +73,14 @@ public class AddressingProperties  {
     
     /**
      * Mutator for the <b>To</b> property.
-     * @param iri new value for To property
+     * @param t new value for To property
      */
     public void setTo(AttributedURIType t) {
         toURIType = t;
     }
     /**
      * Mutator for the <b>To</b> property.
-     * @param iri new value for To property
+     * @param epr new value for To property
      */
     public void setTo(EndpointReferenceType epr) {
         to = epr;
@@ -194,8 +194,6 @@ public class AddressingProperties  {
      * Used to specify a different WS-Addressing namespace URI, 
      * so as to cause MAPs to be exposed (i.e. encoded in externalized
      * message with a different WS-Addressing version).
-     * 
-     * @return WS-Addressing namespace URI
      */
     public void exposeAs(String uri) {
         namespaceURI = uri;