From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../domain/launch/LaunchCatalogMediationNode.java | 28 ++++++++++++++++++ .../tutorial/domain/launch/LaunchCatalogsNode.java | 28 ++++++++++++++++++ .../tutorial/domain/launch/LaunchCurrencyNode.java | 28 ++++++++++++++++++ .../tutorial/domain/launch/LaunchStoreDBNode.java | 28 ++++++++++++++++++ .../tutorial/domain/launch/LaunchStoreEUNode.java | 28 ++++++++++++++++++ .../domain/launch/LaunchStoreMergerNode.java | 28 ++++++++++++++++++ .../tutorial/domain/launch/LaunchStoreNode.java | 28 ++++++++++++++++++ .../domain/launch/LaunchStoreSupplierNode.java | 28 ++++++++++++++++++ .../domain/launch/LaunchTutorialDomainManager.java | 33 ++++++++++++++++++++++ 9 files changed, 257 insertions(+) create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogMediationNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogsNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchCurrencyNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreDBNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreEUNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreMergerNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreSupplierNode.java create mode 100644 branches/sca-java-1.2/tutorial/domain/launch/LaunchTutorialDomainManager.java (limited to 'branches/sca-java-1.2/tutorial/domain/launch') diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogMediationNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogMediationNode.java new file mode 100644 index 0000000000..442b1b6a05 --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogMediationNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchCatalogMediationNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/CatalogMediationNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogsNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogsNode.java new file mode 100644 index 0000000000..8a23433012 --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchCatalogsNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchCatalogsNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/CatalogsNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchCurrencyNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchCurrencyNode.java new file mode 100644 index 0000000000..fae521547d --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchCurrencyNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchCurrencyNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/CurrencyNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreDBNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreDBNode.java new file mode 100644 index 0000000000..480088b46a --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreDBNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchStoreDBNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/StoreDBNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreEUNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreEUNode.java new file mode 100644 index 0000000000..cdc7eb824b --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreEUNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchStoreEUNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/StoreEUNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreMergerNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreMergerNode.java new file mode 100644 index 0000000000..26452b231b --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreMergerNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchStoreMergerNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/StoreMergerNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreNode.java new file mode 100644 index 0000000000..d15ee0e9d2 --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchStoreNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/StoreNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreSupplierNode.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreSupplierNode.java new file mode 100644 index 0000000000..4210108aa5 --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchStoreSupplierNode.java @@ -0,0 +1,28 @@ +/* + * 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 launch; + +import org.apache.tuscany.sca.node.launcher.NodeLauncher; + +public class LaunchStoreSupplierNode { + public static void main(String[] args) throws Exception { + NodeLauncher.main(new String[] {"http://localhost:9990/node-image/StoreSupplierNode"}); + } +} diff --git a/branches/sca-java-1.2/tutorial/domain/launch/LaunchTutorialDomainManager.java b/branches/sca-java-1.2/tutorial/domain/launch/LaunchTutorialDomainManager.java new file mode 100644 index 0000000000..7408e99c63 --- /dev/null +++ b/branches/sca-java-1.2/tutorial/domain/launch/LaunchTutorialDomainManager.java @@ -0,0 +1,33 @@ +/* + * 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 launch; + +/** + * Launches the domain manager from this module. + * + * @version $Rev$ $Date$ + */ +public class LaunchTutorialDomainManager { + + public static void main(String[] args) throws Exception { + org.apache.tuscany.sca.node.launcher.DomainManagerLauncher.main(args); + } + +} -- cgit v1.2.3