You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/01/04 21:45:18 UTC

svn commit: r608994 - in /incubator/cxf/branches/2.0.x-fixes: ./ distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java

Author: dkulp
Date: Fri Jan  4 12:45:16 2008
New Revision: 608994

URL: http://svn.apache.org/viewvc?rev=608994&view=rev
Log:
Merged revisions 608704 via svnmerge from 
https://svn.apache.org/repos/asf/incubator/cxf/trunk

........
  r608704 | gmazza | 2008-01-03 20:35:34 -0500 (Thu, 03 Jan 2008) | 1 line
  
  "Name" member-value for @HandlerChain is deprecated and without meaning in JSR 181 V2.0.
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java

Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java?rev=608994&r1=608993&r2=608994&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java Fri Jan  4 12:45:16 2008
@@ -31,7 +31,7 @@
             portName = "AddNumbersPort",
             endpointInterface = "org.apache.handlers.AddNumbers",
             serviceName = "AddNumbersService")
-@HandlerChain(file = "../common/demo_handlers.xml", name = "DemoHandlerChain")
+@HandlerChain(file = "../common/demo_handlers.xml")
 public class AddNumbersImpl implements AddNumbers {