summaryrefslogtreecommitdiffstats
path: root/sandbox/dougsleite
diff options
context:
space:
mode:
authordougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68>2009-05-20 02:06:06 +0000
committerdougsleite <dougsleite@13f79535-47bb-0310-9956-ffa450edef68>2009-05-20 02:06:06 +0000
commit578971c72ca71a695e6be532c84544a4678e3098 (patch)
treebb8aa2ae8330b051b051298812e70ea33ae64e86 /sandbox/dougsleite
parent7d055e7c9f52ed1d4782e4dcc9c8392f2b2617ea (diff)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@776521 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/dougsleite')
-rw-r--r--sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/GuardianLaunch.java31
-rw-r--r--sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant1Launch.java45
-rw-r--r--sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant2Launch.java45
3 files changed, 0 insertions, 121 deletions
diff --git a/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/GuardianLaunch.java b/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/GuardianLaunch.java
deleted file mode 100644
index 11ede178d0..0000000000
--- a/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/GuardianLaunch.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * 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 org.apache.tuscany.sca.guardian.itests;
-
-import java.io.IOException;
-import org.apache.tuscany.sca.host.embedded.SCADomain;
-
-public class GuardianLaunch {
-
- public static void main(String... args) throws IOException {
-
- SCADomain scaDomain = SCADomain.newInstance("guardiangroup.composite");
- System.in.read();
- }
-}
diff --git a/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant1Launch.java b/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant1Launch.java
deleted file mode 100644
index a5c360701a..0000000000
--- a/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant1Launch.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * 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 org.apache.tuscany.sca.guardian.itests;
-
-import java.io.IOException;
-import org.apache.tuscany.sca.guardian.exceptions.PrimaryFailedException;
-import org.apache.tuscany.sca.host.embedded.SCADomain;
-
-public class Participant1Launch {
-
- public static void main(String... args) throws IOException {
- SCADomain scaDomain = SCADomain.newInstance("participant1.composite");
-
- try {
-
- System.out.println("Starting participat1...");
- Node c = scaDomain.getService(Node.class, "Participant1");
- c.execute();
-
- System.in.read();
-
- } catch (PrimaryFailedException ex) {
- System.out.println("Init#Exception captured!: PrimaryFailedException");
-
- } finally {
- scaDomain.close();
- }
- }
-}
diff --git a/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant2Launch.java b/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant2Launch.java
deleted file mode 100644
index 3478e4e105..0000000000
--- a/sandbox/dougsleite/guardian-model/src/test/java/org/apache/tuscany/sca/guardian/itests/Participant2Launch.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * 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 org.apache.tuscany.sca.guardian.itests;
-
-import java.io.IOException;
-import org.apache.tuscany.sca.guardian.exceptions.PrimaryFailedException;
-import org.apache.tuscany.sca.host.embedded.SCADomain;
-
-public class Participant2Launch {
-
- public static void main(String... args) throws IOException {
- SCADomain scaDomain = SCADomain.newInstance("participant2.composite");
-
- try {
-
- System.out.println("Starting participant2...");
- Node c2 = scaDomain.getService(Node.class, "Participant2");
- c2.execute();
-
- System.in.read();
-
- } catch (PrimaryFailedException ex) {
- System.out.println("Init#Exception captured!: PrimaryFailedException");
-
- } finally {
- scaDomain.close();
- }
- }
-}