[jbossws-commits] JBossWS SVN: r12979 - stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Sep 15 11:26:19 EDT 2010


Author: alessio.soldano at jboss.com
Date: 2010-09-15 11:26:19 -0400 (Wed, 15 Sep 2010)
New Revision: 12979

Modified:
   stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/LoggingFeatureEndpointImpl.java
Log:
Using @Logging annotation instead of @Feature(...logging...)


Modified: stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/LoggingFeatureEndpointImpl.java
===================================================================
--- stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/LoggingFeatureEndpointImpl.java	2010-09-15 15:25:38 UTC (rev 12978)
+++ stack/cxf/trunk/modules/testsuite/cxf-tests/src/test/java/org/jboss/test/ws/jaxws/cxf/logging/LoggingFeatureEndpointImpl.java	2010-09-15 15:26:19 UTC (rev 12979)
@@ -27,12 +27,12 @@
 import javax.jws.WebService;
 import javax.xml.ws.WebServiceContext;
 
-import org.apache.cxf.feature.Features;
+import org.apache.cxf.annotations.Logging;
 import org.jboss.logging.Logger;
 
 @WebService(name = "LoggingFeatureEndpoint", targetNamespace = "http://logging.cxf.jaxws.ws.test.jboss.org/", serviceName = "LoggingFeatureService")
 @Stateless
- at Features(features = "org.apache.cxf.feature.LoggingFeature")
+ at Logging
 public class LoggingFeatureEndpointImpl
 {
    @Resource



More information about the jbossws-commits mailing list