[jboss-svn-commits] JBL Code SVN: r30699 - labs/jbossesb/branches/JBESB_4_7_CP/product/samples/quickstarts/spring_aop/src/org/jboss/soa/esb/samples/quickstart/spring_aop.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Dec 15 22:19:50 EST 2009


Author: dward
Date: 2009-12-15 22:19:50 -0500 (Tue, 15 Dec 2009)
New Revision: 30699

Modified:
   labs/jbossesb/branches/JBESB_4_7_CP/product/samples/quickstarts/spring_aop/src/org/jboss/soa/esb/samples/quickstart/spring_aop/MySpringEnabledAction.java
Log:
Fix for JBESB-3030 ( https://jira.jboss.org/jira/browse/JBESB-3030 )


Modified: labs/jbossesb/branches/JBESB_4_7_CP/product/samples/quickstarts/spring_aop/src/org/jboss/soa/esb/samples/quickstart/spring_aop/MySpringEnabledAction.java
===================================================================
--- labs/jbossesb/branches/JBESB_4_7_CP/product/samples/quickstarts/spring_aop/src/org/jboss/soa/esb/samples/quickstart/spring_aop/MySpringEnabledAction.java	2009-12-16 03:17:19 UTC (rev 30698)
+++ labs/jbossesb/branches/JBESB_4_7_CP/product/samples/quickstarts/spring_aop/src/org/jboss/soa/esb/samples/quickstart/spring_aop/MySpringEnabledAction.java	2009-12-16 03:19:50 UTC (rev 30699)
@@ -38,7 +38,7 @@
 {
    public MySpringEnabledAction(ConfigTree config) throws Exception
    {
-      configTree = config;
+      super(config);
    }
 
    public Message sayHelloAopStyle(Message message) throws Exception
@@ -46,13 +46,11 @@
 
       SaySomething hello = (SaySomething) getBeanFactory().getBean(
             "helloObject");
-      logHeader();
       // interceptor will get applied here
       // check the console output to see the interceptor changed the message
 	  String helloString = (String) message.getBody().get();
       hello.setGreeting(helloString);
 	  message.getBody().add(hello.getGreeting());
-      logFooter();
 
       return message;
    }



More information about the jboss-svn-commits mailing list