summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/launchers/notification-ejb-launcher
diff options
context:
space:
mode:
authornash <nash@13f79535-47bb-0310-9956-ffa450edef68>2009-09-15 22:40:38 +0000
committernash <nash@13f79535-47bb-0310-9956-ffa450edef68>2009-09-15 22:40:38 +0000
commitb9b95656d44226f58393cbb4f5a120a6f9bb316c (patch)
tree75591aa88c10f3fb5ca7149f517538d2af197380 /sandbox/travelsample/launchers/notification-ejb-launcher
parente2d146a532aeeaf8323349b6f7faa6e7ceaaf976 (diff)
Apply new naming convention to notification-* launchers
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@815533 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/smsgateway/SMSGateway.java30
-rw-r--r--sandbox/travelsample/launchers/notification-ejb/pom.xml (renamed from sandbox/travelsample/launchers/notification-ejb-launcher/pom.xml)2
-rw-r--r--sandbox/travelsample/launchers/notification-ejb/src/main/java/scatours/NotificationEJBLauncher.java (renamed from sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/LaunchNotificationEJBNode.java)14
-rw-r--r--sandbox/travelsample/launchers/notification-ejb/src/main/java/scatours/notification/Notification.java (renamed from sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/notification/Notification.java)0
4 files changed, 8 insertions, 38 deletions
diff --git a/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/smsgateway/SMSGateway.java b/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/smsgateway/SMSGateway.java
deleted file mode 100644
index b96d0b2473..0000000000
--- a/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/smsgateway/SMSGateway.java
+++ /dev/null
@@ -1,30 +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 scatours.smsgateway;
-
-import org.osoa.sca.annotations.Remotable;
-
-/**
- * A gateway to send SMS messages.
- */
-@Remotable
-public interface SMSGateway {
- boolean sendSMS(String fromNumber, String toNumber, String text);
-}
diff --git a/sandbox/travelsample/launchers/notification-ejb-launcher/pom.xml b/sandbox/travelsample/launchers/notification-ejb/pom.xml
index 3c3a622e4a..5326eb8deb 100644
--- a/sandbox/travelsample/launchers/notification-ejb-launcher/pom.xml
+++ b/sandbox/travelsample/launchers/notification-ejb/pom.xml
@@ -25,7 +25,7 @@
<version>1.6-SNAPSHOT</version>
<!--relativePath>../../pom.xml</relativePath-->
</parent><version>1.0-SNAPSHOT</version>
- <artifactId>scatours-notification-ejb-launcher</artifactId>
+ <artifactId>scatours-launcher-notification-ejb</artifactId>
<name>Apache Tuscany SCA Tours Notification EJB Launcher</name>
<dependencies>
diff --git a/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/LaunchNotificationEJBNode.java b/sandbox/travelsample/launchers/notification-ejb/src/main/java/scatours/NotificationEJBLauncher.java
index 3e367f8835..6b01299ca8 100644
--- a/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/LaunchNotificationEJBNode.java
+++ b/sandbox/travelsample/launchers/notification-ejb/src/main/java/scatours/NotificationEJBLauncher.java
@@ -28,18 +28,18 @@ import org.apache.tuscany.sca.node.SCANodeFactory;
import scatours.notification.Notification;
-public class LaunchNotificationEJBNode {
+public class NotificationEJBLauncher {
public static void main(String[] args) throws Exception {
- System.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.RemoteInitialContextFactory");
- System.setProperty(Context.PROVIDER_URL, "ejbd://localhost:4201");
+ System.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.RemoteInitialContextFactory");
+ System.setProperty(Context.PROVIDER_URL, "ejbd://localhost:4201");
- SCAContribution notificationContribution =
- new SCAContribution("notification",
- "../../contributions/notification-contribution/target/classes");
+ SCAContribution notificationContribution =
+ new SCAContribution("notification",
+ "../../contributions/notification/target/classes");
SCAContribution notificationEJBContribution =
new SCAContribution("notification-ejb",
- "../../contributions/notification-ejb-contribution/target/classes");
+ "../../contributions/notification-ejb/target/classes");
SCANode node = SCANodeFactory.newInstance().createSCANode(
"notification-ejb.composite", notificationContribution, notificationEJBContribution);
diff --git a/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/notification/Notification.java b/sandbox/travelsample/launchers/notification-ejb/src/main/java/scatours/notification/Notification.java
index 79706fcc9d..79706fcc9d 100644
--- a/sandbox/travelsample/launchers/notification-ejb-launcher/src/main/java/scatours/notification/Notification.java
+++ b/sandbox/travelsample/launchers/notification-ejb/src/main/java/scatours/notification/Notification.java