From 6ebf87e146b93c4a651da64be78ce88a09cea8c3 Mon Sep 17 00:00:00 2001 From: mcombellack Date: Mon, 15 Jun 2009 21:50:54 +0000 Subject: Added an implementation of the SMS gateway that exposes its services as an EJB git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@785000 13f79535-47bb-0310-9956-ffa450edef68 --- .../services/smsgateway-ejb-service/pom.xml | 64 ++++++++++++++++++++++ .../main/java/scatours/smsgateway/SMSGateway.java | 30 ++++++++++ .../smsgateway/SMSGatewayEJBServiceBootstrap.java | 45 +++++++++++++++ .../java/scatours/smsgateway/SMSGatewayImpl.java | 33 +++++++++++ .../src/main/resources/META-INF/ejb-jar.xml | 2 + 5 files changed, 174 insertions(+) create mode 100644 sandbox/travelsample/services/smsgateway-ejb-service/pom.xml create mode 100644 sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGateway.java create mode 100644 sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayEJBServiceBootstrap.java create mode 100644 sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayImpl.java create mode 100644 sandbox/travelsample/services/smsgateway-ejb-service/src/main/resources/META-INF/ejb-jar.xml (limited to 'sandbox/travelsample/services') diff --git a/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml b/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml new file mode 100644 index 0000000000..1ed9425e57 --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-ejb-service/pom.xml @@ -0,0 +1,64 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-sca + 1.6-SNAPSHOT + + 1.0-SNAPSHOT + smsgateway-ejb-service + Apache Tuscany SCA Tours SMS Gateway EJB Service + + + + org.apache.openejb + javaee-api + 5.0-2 + provided + + + + junit + junit + 4.5 + test + + + + org.apache.openejb + openejb-core + 3.1.1 + test + + + + org.apache.openejb + openejb-ejbd + 3.1.1 + test + + + + + ${artifactId} + + diff --git a/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGateway.java b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGateway.java new file mode 100644 index 0000000000..70f1191596 --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-ejb-service/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 javax.ejb.Remote; + +/** + * A gateway to send SMS messages. + */ +@Remote +public interface SMSGateway { + boolean sendSMS(String fromNumber, String toNumber, String text); +} diff --git a/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayEJBServiceBootstrap.java b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayEJBServiceBootstrap.java new file mode 100644 index 0000000000..b807a53130 --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayEJBServiceBootstrap.java @@ -0,0 +1,45 @@ +/* + * 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 java.util.Properties; + +import javax.naming.Context; +import javax.naming.InitialContext; + +public class SMSGatewayEJBServiceBootstrap { + + public static void main(String[] args) throws Exception { + System.out.println("Publishing SMS Gateway Service as an EJB service"); + + Properties properties = new Properties(); + properties.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.LocalInitialContextFactory"); + properties.setProperty("openejb.embedded.remotable", "true"); + + InitialContext initialContext = new InitialContext(properties); + +// Object object = initialContext.lookup("SMSGatewayImplRemote"); +// SMSGateway smsGateway = (SMSGateway) object; +// smsGateway.sendSMS("From", "to", "Message"); + + System.out.println("EJB server running - waiting for requests"); + System.out.println("Press enter to shutdown."); + System.in.read(); + } +} diff --git a/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayImpl.java b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayImpl.java new file mode 100644 index 0000000000..5ce94bf3a2 --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/java/scatours/smsgateway/SMSGatewayImpl.java @@ -0,0 +1,33 @@ +/* + * 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 javax.ejb.Stateless; + +@Stateless +public class SMSGatewayImpl implements SMSGateway { + + public boolean sendSMS(String fromNumber, String toNumber, String text) { + System.out.println("Sending SMS message"); + System.out.println("From: " + fromNumber); + System.out.println("To: " + toNumber); + System.out.println("Message: " + text); + return true; + } +} diff --git a/sandbox/travelsample/services/smsgateway-ejb-service/src/main/resources/META-INF/ejb-jar.xml b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/resources/META-INF/ejb-jar.xml new file mode 100644 index 0000000000..116a25630c --- /dev/null +++ b/sandbox/travelsample/services/smsgateway-ejb-service/src/main/resources/META-INF/ejb-jar.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file -- cgit v1.2.3