diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-18 22:00:56 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-18 22:00:56 +0000 |
commit | 9371988409b71e965d1e2a15488a7f65f870cde9 (patch) | |
tree | 6f790f5e9426d4e22c865b8f1606ab2e3c3e0232 /java | |
parent | 0a4d8f4b425aec324485438185054d52f60e7757 (diff) |
Minor fix to start node during store launch
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@881951 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r-- | java/sca/samples/store/src/main/java/launch/Launch.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/java/sca/samples/store/src/main/java/launch/Launch.java b/java/sca/samples/store/src/main/java/launch/Launch.java index 5105b0ac43..06981d17eb 100644 --- a/java/sca/samples/store/src/main/java/launch/Launch.java +++ b/java/sca/samples/store/src/main/java/launch/Launch.java @@ -29,6 +29,7 @@ public class Launch { System.out.println("Starting ..."); String contribution = ContributionLocationHelper.getContributionLocation(Launch.class); Node node = NodeFactory.newInstance().createNode("store.composite", new Contribution("test", contribution)); + node.start(); System.out.println("store.composite ready for big business !!!"); System.in.read(); System.out.println("Stopping ..."); |