summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/src/test/java/sample/Main.java
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-04-11 10:20:16 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2011-04-11 10:20:16 +0000
commite83ed0e0dbd38e4fde383ca2897fb746d542cfc2 (patch)
treec6e0905162a45fba8095ea974e351247efd154b3 /sca-java-2.x/trunk/samples/getting-started/helloworld-ant/src/test/java/sample/Main.java
parenta6c13e185445b76346028325db1616c9f9687d19 (diff)
Add a version of the helloworld sample that has an Ant build
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1091009 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/trunk/samples/getting-started/helloworld-ant/src/test/java/sample/Main.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/src/test/java/sample/Main.java b/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/src/test/java/sample/Main.java
new file mode 100644
index 0000000000..fe9fedbd45
--- /dev/null
+++ b/sca-java-2.x/trunk/samples/getting-started/helloworld-ant/src/test/java/sample/Main.java
@@ -0,0 +1,44 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package sample;
+
+import org.apache.tuscany.sca.Node;
+import org.apache.tuscany.sca.TuscanyRuntime;
+import org.oasisopen.sca.NoSuchServiceException;
+
+public class Main {
+
+ public static void main(String[] args) throws NoSuchServiceException {
+
+ // Run the SCA composite in a Tuscany runtime
+ Node node = TuscanyRuntime.runComposite("helloworld.composite", "target/classes");
+ try {
+
+ // Get the Helloworld service proxy
+ Helloworld helloworld = node.getService(Helloworld.class, "HelloworldComponent");
+
+ // Call the sayHello method
+ System.out.println(helloworld.sayHello(args.length>0 ? args[0]: "World"));
+
+ } finally {
+ // Stop the Tuscany runtime Node
+ node.stop();
+ }
+ }
+}