diff options
Diffstat (limited to 'branches/sca-equinox/tutorials')
-rw-r--r-- | branches/sca-equinox/tutorials/store/store-client/launch/LaunchStoreClientNode.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/branches/sca-equinox/tutorials/store/store-client/launch/LaunchStoreClientNode.java b/branches/sca-equinox/tutorials/store/store-client/launch/LaunchStoreClientNode.java index d1a9dfb36c..5cb8ae90f9 100644 --- a/branches/sca-equinox/tutorials/store/store-client/launch/LaunchStoreClientNode.java +++ b/branches/sca-equinox/tutorials/store/store-client/launch/LaunchStoreClientNode.java @@ -19,8 +19,8 @@ package launch; -import org.apache.tuscany.sca.node.SCAClient; -import org.apache.tuscany.sca.node.SCANode; +import org.apache.tuscany.sca.node.Client; +import org.apache.tuscany.sca.node.Node; import org.apache.tuscany.sca.node.launcher.NodeLauncher; import client.Shopper; @@ -29,9 +29,9 @@ public class LaunchStoreClientNode { public static void main(String[] args) throws Exception { NodeLauncher nodeLauncher = NodeLauncher.newInstance(); - SCANode storeClientNode = nodeLauncher.createNodeFromURL("http://localhost:9990/node-config/StoreClientNode"); + Node storeClientNode = nodeLauncher.createNodeFromURL("http://localhost:9990/node-config/StoreClientNode"); storeClientNode.start(); - SCAClient client = (SCAClient)storeClientNode; + Client client = (Client)storeClientNode; Shopper shopper = client.getService(Shopper.class, "StoreClient"); |