diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-15 22:40:38 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-15 22:40:38 +0000 |
commit | b9b95656d44226f58393cbb4f5a120a6f9bb316c (patch) | |
tree | 75591aa88c10f3fb5ca7149f517538d2af197380 /sandbox/travelsample/launchers/notification-ws-launcher/src | |
parent | e2d146a532aeeaf8323349b6f7faa6e7ceaaf976 (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-ws-launcher/src/main/java/scatours/smsgateway/SMSGateway.java | 30 | ||||
-rw-r--r-- | sandbox/travelsample/launchers/notification-ws/src/main/java/scatours/NotificationWSLauncher.java (renamed from sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/LaunchNotificationWSNode.java) | 8 | ||||
-rw-r--r-- | sandbox/travelsample/launchers/notification-ws/src/main/java/scatours/notification/Notification.java (renamed from sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/notification/Notification.java) | 0 |
3 files changed, 4 insertions, 34 deletions
diff --git a/sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/smsgateway/SMSGateway.java b/sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/smsgateway/SMSGateway.java deleted file mode 100644 index b96d0b2473..0000000000 --- a/sandbox/travelsample/launchers/notification-ws-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-ws-launcher/src/main/java/scatours/LaunchNotificationWSNode.java b/sandbox/travelsample/launchers/notification-ws/src/main/java/scatours/NotificationWSLauncher.java index fd0f2519e3..08af2c3b58 100644 --- a/sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/LaunchNotificationWSNode.java +++ b/sandbox/travelsample/launchers/notification-ws/src/main/java/scatours/NotificationWSLauncher.java @@ -26,15 +26,15 @@ import org.apache.tuscany.sca.node.SCANodeFactory; import scatours.notification.Notification;
-public class LaunchNotificationWSNode {
+public class NotificationWSLauncher {
public static void main(String[] args) throws Exception {
SCAContribution notificationContribution =
- new SCAContribution("notification",
- "../../contributions/notification-contribution/target/classes");
+ new SCAContribution("notification",
+ "../../contributions/notification/target/classes");
SCAContribution notificationWSContribution =
new SCAContribution("notification-ws",
- "../../contributions/notification-ws-contribution/target/classes");
+ "../../contributions/notification-ws/target/classes");
SCANode node = SCANodeFactory.newInstance().createSCANode(
"notification-ws.composite", notificationContribution, notificationWSContribution);
diff --git a/sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/notification/Notification.java b/sandbox/travelsample/launchers/notification-ws/src/main/java/scatours/notification/Notification.java index 79706fcc9d..79706fcc9d 100644 --- a/sandbox/travelsample/launchers/notification-ws-launcher/src/main/java/scatours/notification/Notification.java +++ b/sandbox/travelsample/launchers/notification-ws/src/main/java/scatours/notification/Notification.java |