You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by pr...@apache.org on 2007/11/19 18:29:39 UTC

svn commit: r596375 - /webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/spi/handler/DummyLogicalHandler.java

Author: pradine
Date: Mon Nov 19 09:29:39 2007
New Revision: 596375

URL: http://svn.apache.org/viewvc?rev=596375&view=rev
Log:
Add a check for @PostConstruct to the testing of the new HandlerResolver implementation.

Modified:
    webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/spi/handler/DummyLogicalHandler.java

Modified: webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/spi/handler/DummyLogicalHandler.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/spi/handler/DummyLogicalHandler.java?rev=596375&r1=596374&r2=596375&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/spi/handler/DummyLogicalHandler.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/spi/handler/DummyLogicalHandler.java Mon Nov 19 09:29:39 2007
@@ -18,11 +18,17 @@
  */
 package org.apache.axis2.jaxws.spi.handler;
 
+import javax.annotation.PostConstruct;
 import javax.xml.ws.handler.LogicalHandler;
 import javax.xml.ws.handler.LogicalMessageContext;
 import javax.xml.ws.handler.MessageContext;
 
 public class DummyLogicalHandler implements LogicalHandler<LogicalMessageContext> {
+    
+    @PostConstruct
+    public void setup() {
+        System.out.println("@PostConstruct method invoked.");
+    }
 
 	public boolean handleMessage(LogicalMessageContext context) {
 		return true;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org