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

svn commit: r608704 - /incubator/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java

Author: gmazza
Date: Thu Jan  3 17:35:34 2008
New Revision: 608704

URL: http://svn.apache.org/viewvc?rev=608704&view=rev
Log:
"Name" member-value for @HandlerChain is deprecated and without meaning in JSR 181 V2.0.

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java?rev=608704&r1=608703&r2=608704&view=diff
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/jaxws_handlers/src/demo/handlers/server/AddNumbersImpl.java Thu Jan  3 17:35:34 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 {