You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by va...@apache.org on 2008/12/03 21:49:56 UTC

svn commit: r723064 - /geronimo/plugins/tuscany/trunk/samples/helloworld-jsf/src/main/java/sample/HelloWorldController.java

Author: vamsic007
Date: Wed Dec  3 12:49:56 2008
New Revision: 723064

URL: http://svn.apache.org/viewvc?rev=723064&view=rev
Log:
GERONIMO-4343 Tuscany Geronimo plugin bring up
 o Applying HelloWorldController.diff provided by Ant Elder.  Thanks

Modified:
    geronimo/plugins/tuscany/trunk/samples/helloworld-jsf/src/main/java/sample/HelloWorldController.java

Modified: geronimo/plugins/tuscany/trunk/samples/helloworld-jsf/src/main/java/sample/HelloWorldController.java
URL: http://svn.apache.org/viewvc/geronimo/plugins/tuscany/trunk/samples/helloworld-jsf/src/main/java/sample/HelloWorldController.java?rev=723064&r1=723063&r2=723064&view=diff
==============================================================================
--- geronimo/plugins/tuscany/trunk/samples/helloworld-jsf/src/main/java/sample/HelloWorldController.java (original)
+++ geronimo/plugins/tuscany/trunk/samples/helloworld-jsf/src/main/java/sample/HelloWorldController.java Wed Dec  3 12:49:56 2008
@@ -46,9 +46,10 @@
      */
     public String send() {
         if (fservice == null) {
-            return "fservice is null!";
+            name = "fservice is null!";
         } else {
-            return fservice.sayHello(name);
+            name = fservice.sayHello(name);
         }
+        return "success";
     }
 }