summaryrefslogtreecommitdiffstats
path: root/sandbox/travelsample/contributions/notification-contribution/src/main/java
diff options
context:
space:
mode:
authormcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-05-21 10:43:23 +0000
committermcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68>2009-05-21 10:43:23 +0000
commit2a4ce800a0e7721d666b8757c71c07a145bbfb0e (patch)
treee65e58bb136b7dd62dcf8f8e4f5263e3ceadf650 /sandbox/travelsample/contributions/notification-contribution/src/main/java
parent5368a5da3b017ed59275717f0312f2532f5a8db3 (diff)
Initial commit of notification contributions that use an external SMS Gateway that has a web service interface
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@777043 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/Notification.java26
-rw-r--r--sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/NotificationImpl.java52
-rw-r--r--sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/smsgateway/SMSGateway.java30
3 files changed, 108 insertions, 0 deletions
diff --git a/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/Notification.java b/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/Notification.java
new file mode 100644
index 0000000000..79706fcc9d
--- /dev/null
+++ b/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/Notification.java
@@ -0,0 +1,26 @@
+/*
+ * 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.notification;
+
+public interface Notification {
+
+ boolean notify(String accountID, String subject, String message);
+
+}
diff --git a/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/NotificationImpl.java b/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/NotificationImpl.java
new file mode 100644
index 0000000000..717e5e4c4c
--- /dev/null
+++ b/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/NotificationImpl.java
@@ -0,0 +1,52 @@
+/*
+ * 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.notification;
+
+import org.osoa.sca.annotations.Reference;
+import org.osoa.sca.annotations.Service;
+
+import scatours.smsgateway.SMSGateway;
+
+@Service(Notification.class)
+public class NotificationImpl implements Notification {
+
+ private static final String SCA_TOURS_SMS ="12345";
+
+ @Reference
+ protected SMSGateway smsGateway;
+
+ public boolean notify(String accountID,
+ String subject, String message) {
+
+ boolean result = true;
+
+ String sms = getSMSAddress(accountID);
+ if (sms != null) {
+ System.out.println("Sending SMS to " + sms);
+ result &= smsGateway.sendSMS(SCA_TOURS_SMS, sms, subject + message);
+ }
+
+ return result;
+ }
+
+ private String getSMSAddress(String accountID) {
+ return "23874";
+ }
+}
diff --git a/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/smsgateway/SMSGateway.java b/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/smsgateway/SMSGateway.java
new file mode 100644
index 0000000000..b96d0b2473
--- /dev/null
+++ b/sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/smsgateway/SMSGateway.java
@@ -0,0 +1,30 @@
+/*
+ * 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);
+}