From 2a4ce800a0e7721d666b8757c71c07a145bbfb0e Mon Sep 17 00:00:00 2001 From: mcombellack Date: Thu, 21 May 2009 10:43:23 +0000 Subject: 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 --- .../java/scatours/notification/Notification.java | 26 +++++++++++ .../scatours/notification/NotificationImpl.java | 52 ++++++++++++++++++++++ .../main/java/scatours/smsgateway/SMSGateway.java | 30 +++++++++++++ .../main/resources/META-INF/sca-contribution.xml | 23 ++++++++++ 4 files changed, 131 insertions(+) create mode 100644 sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/Notification.java create mode 100644 sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/notification/NotificationImpl.java create mode 100644 sandbox/travelsample/contributions/notification-contribution/src/main/java/scatours/smsgateway/SMSGateway.java create mode 100644 sandbox/travelsample/contributions/notification-contribution/src/main/resources/META-INF/sca-contribution.xml (limited to 'sandbox/travelsample/contributions/notification-contribution/src/main') 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); +} diff --git a/sandbox/travelsample/contributions/notification-contribution/src/main/resources/META-INF/sca-contribution.xml b/sandbox/travelsample/contributions/notification-contribution/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..33281cd9d3 --- /dev/null +++ b/sandbox/travelsample/contributions/notification-contribution/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + + \ No newline at end of file -- cgit v1.2.3