Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 28645 invoked from network); 15 Sep 2008 23:10:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Sep 2008 23:10:39 -0000 Received: (qmail 41845 invoked by uid 500); 15 Sep 2008 23:10:36 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 41788 invoked by uid 500); 15 Sep 2008 23:10:36 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 41779 invoked by uid 99); 15 Sep 2008 23:10:36 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Sep 2008 16:10:36 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Sep 2008 23:09:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 54F8D23889F7; Mon, 15 Sep 2008 16:09:48 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r695684 - in /cxf/trunk/rt: frontend/jaxws/src/main/java/org/apache/cxf/jaxws/ frontend/simple/src/main/java/org/apache/cxf/frontend/ transports/http/src/main/java/org/apache/cxf/transport/http/ Date: Mon, 15 Sep 2008 23:09:47 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080915230948.54F8D23889F7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon Sep 15 16:09:47 2008 New Revision: 695684 URL: http://svn.apache.org/viewvc?rev=695684&view=rev Log: Fix formatting of javadoc comments. Modified: cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsProxyFactoryBean.java cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/AbstractWSDLBasedEndpointFactory.java cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientProxyFactoryBean.java cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ServerFactoryBean.java cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java Modified: cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsProxyFactoryBean.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsProxyFactoryBean.java?rev=695684&r1=695683&r2=695684&view=diff ============================================================================== --- cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsProxyFactoryBean.java (original) +++ cxf/trunk/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/JaxWsProxyFactoryBean.java Mon Sep 15 16:09:47 2008 @@ -48,10 +48,10 @@ import org.apache.cxf.service.model.ServiceInfo; /** -* Factory for creating JAX-WS proxies, This class provides access to the -* internal properties used to set-up proxies. Using it provides more control -* than the standard JAX-WS APIs. -*/ + * Factory for creating JAX-WS proxies, This class provides access to the + * internal properties used to set-up proxies. Using it provides more control + * than the standard JAX-WS APIs. + */ public class JaxWsProxyFactoryBean extends ClientProxyFactoryBean { List handlers = new ArrayList(); boolean loadHandlers = true; @@ -64,20 +64,20 @@ } /** - * Specifies a list of JAX-WS Handler implementations that are to be - * used by the proxy. - * - * @param h a List of Handler objects - */ + * Specifies a list of JAX-WS Handler implementations that are to be + * used by the proxy. + * + * @param h a List of Handler objects + */ public void setHandlers(List h) { handlers.clear(); handlers.addAll(h); } /** - * Returns the configured list of JAX-WS handlers for the proxy. - * - * @return a List of Handler objects - */ + * Returns the configured list of JAX-WS handlers for the proxy. + * + * @return a List of Handler objects + */ public List getHandlers() { return handlers; } @@ -105,10 +105,11 @@ } /** - * Creates a JAX-WS proxy that can be used to make remote invocations. - * - * @return the proxy. You must cast the returned object to the approriate class before making remote calls - */ + * Creates a JAX-WS proxy that can be used to make remote invocations. + * + * @return the proxy. You must cast the returned object to the approriate class + * before making remote calls + */ @Override public Object create() { Object obj = super.create(); Modified: cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/AbstractWSDLBasedEndpointFactory.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/AbstractWSDLBasedEndpointFactory.java?rev=695684&r1=695683&r2=695684&view=diff ============================================================================== --- cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/AbstractWSDLBasedEndpointFactory.java (original) +++ cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/AbstractWSDLBasedEndpointFactory.java Mon Sep 15 16:09:47 2008 @@ -398,10 +398,10 @@ } /** - * Specifies the class implementing the service. - * - * @param serviceClass the service's implementaiton class - */ + * Specifies the class implementing the service. + * + * @param serviceClass the service's implementaiton class + */ public void setServiceClass(Class serviceClass) { this.serviceClass = serviceClass; } Modified: cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientProxyFactoryBean.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientProxyFactoryBean.java?rev=695684&r1=695683&r2=695684&view=diff ============================================================================== --- cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientProxyFactoryBean.java (original) +++ cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ClientProxyFactoryBean.java Mon Sep 15 16:09:47 2008 @@ -72,10 +72,10 @@ } /** - * Creates a proxy object that can be used to make remote invocations. - * - * @return the proxy. You must cast the returned object to the appropriate class before using it. - */ + * Creates a proxy object that can be used to make remote invocations. + * + * @return the proxy. You must cast the returned object to the appropriate class before using it. + */ public Object create() { if (properties == null) { properties = new HashMap(); @@ -152,10 +152,10 @@ } /** - * Specifies the class representing the SEI the proxy implements. - * - * @param serviceClass the SEI's class - */ + * Specifies the class representing the SEI the proxy implements. + * + * @param serviceClass the SEI's class + */ public void setServiceClass(Class serviceClass) { clientFactoryBean.setServiceClass(serviceClass); } @@ -173,11 +173,11 @@ } /** - * Specifies the URL where the proxy can find the WSDL defining the - * service the proxy implements. - * - * @param wsdlURL a string containing the WSDL's URL - */ + * Specifies the URL where the proxy can find the WSDL defining the + * service the proxy implements. + * + * @param wsdlURL a string containing the WSDL's URL + */ public void setWsdlLocation(String wsdlURL) { setWsdlURL(wsdlURL); } @@ -187,11 +187,11 @@ } /** - * Specifies the URL where the proxy can find the WSDL defining the - * service the proxy implements. - * - * @param wsdlURL a string containing the WSDL's URL - */ + * Specifies the URL where the proxy can find the WSDL defining the + * service the proxy implements. + * + * @param wsdlURL a string containing the WSDL's URL + */ public void setWsdlURL(String wsdlURL) { clientFactoryBean.getServiceFactory().setWsdlURL(wsdlURL); } @@ -205,20 +205,20 @@ } /** - * Returns the QName of the WSDL service the proxy implements - * - * @return the WSDL service's QName - */ + * Returns the QName of the WSDL service the proxy implements + * + * @return the WSDL service's QName + */ public QName getServiceName() { return getServiceFactory().getServiceQName(); } /** - * Specifies the QName of the WSDL service the proxy implements. The - * service must exist or an error will result. - * - * @param serviceName the QName of the service for the proxy - */ + * Specifies the QName of the WSDL service the proxy implements. The + * service must exist or an error will result. + * + * @param serviceName the QName of the service for the proxy + */ public void setServiceName(QName serviceName) { getServiceFactory().setServiceName(serviceName); } @@ -265,21 +265,21 @@ } /** - * Returns the property map for the proxy factory. - * - * @return the property map - */ + * Returns the property map for the proxy factory. + * + * @return the property map + */ public Map getProperties() { return properties; } /** - * Specifies a set of properties used to configure the proxies - * provided by the factory. These properties include things like - * adding a namespace map to the JAXB databinding. - * - * @param properties the property map - */ + * Specifies a set of properties used to configure the proxies + * provided by the factory. These properties include things like + * adding a namespace map to the JAXB databinding. + * + * @param properties the property map + */ public void setProperties(Map properties) { this.properties = properties; } Modified: cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ServerFactoryBean.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ServerFactoryBean.java?rev=695684&r1=695683&r2=695684&view=diff ============================================================================== --- cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ServerFactoryBean.java (original) +++ cxf/trunk/rt/frontend/simple/src/main/java/org/apache/cxf/frontend/ServerFactoryBean.java Mon Sep 15 16:09:47 2008 @@ -227,22 +227,22 @@ } /** - * Whether or not the Server should be started upon creation. - * - * @return false if the server should not be started upon creation - */ + * Whether or not the Server should be started upon creation. + * + * @return false if the server should not be started upon creation + */ public boolean isStart() { return start; } /** - * Specifies if the Server should be started upon creation. The - * default is for Servers to be started upon creation. Passing - * false tells the factory that the Server will be - * started manually using the start method. - * - * @param start false specifies that the Server will not be started upon creation - */ + * Specifies if the Server should be started upon creation. The + * default is for Servers to be started upon creation. Passing + * false tells the factory that the Server will be + * started manually using the start method. + * + * @param start false specifies that the Server will not be started upon creation + */ public void setStart(boolean start) { this.start = start; } @@ -260,11 +260,11 @@ } /** - * Sets the bean implementing the service. If this is set a - * BeanInvoker is created for the provided bean. - * - * @param serviceBean an instantiated implementaiton object - */ + * Sets the bean implementing the service. If this is set a + * BeanInvoker is created for the provided bean. + * + * @param serviceBean an instantiated implementaiton object + */ public void setServiceBean(Object serviceBean) { this.serviceBean = serviceBean; } @@ -286,12 +286,12 @@ } /** - * Specifies the location of the WSDL defining the service interface - * used by the factory to create services. Typically, the WSDL - * location is specified as a URL. - * - * @param locaiton the URL of the WSDL defining the service interface - */ + * Specifies the location of the WSDL defining the service interface + * used by the factory to create services. Typically, the WSDL + * location is specified as a URL. + * + * @param locaiton the URL of the WSDL defining the service interface + */ public void setWsdlLocation(String location) { setWsdlURL(location); } Modified: cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java?rev=695684&r1=695683&r2=695684&view=diff ============================================================================== --- cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java (original) +++ cxf/trunk/rt/transports/http/src/main/java/org/apache/cxf/transport/http/AbstractHTTPDestination.java Mon Sep 15 16:09:47 2008 @@ -133,7 +133,7 @@ try { String authDecoded = new String(Base64Utility.decode(authEncoded)); String authInfo[] = authDecoded.split(":"); - String username = authInfo[0]; + String username = (authInfo.length > 0) ? authInfo[0] : ""; // Below line for systems that blank out password after authentication; // see CXF-1495 for more info String password = (authInfo.length > 1) ? authInfo[1] : "";