From b9c1e93951e71d729ea283e96f39729033465c57 Mon Sep 17 00:00:00 2001 From: rfeng Date: Wed, 14 Oct 2009 17:08:37 +0000 Subject: Add a variant of helloworld-jsp-google-appengine that loads the Tuscany SCA node from the people.apache.org git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@825195 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/sample/HelloworldService.java | 25 +++++++++++ .../src/sample/appengine/HelloWorldServlet.java | 51 ++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java create mode 100644 sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/appengine/HelloWorldServlet.java (limited to 'sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample') diff --git a/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java b/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java new file mode 100644 index 0000000000..53ff7a5ca1 --- /dev/null +++ b/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/HelloworldService.java @@ -0,0 +1,25 @@ +/* + * 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 sample; + +public interface HelloworldService { + + String sayHello(String name); + +} diff --git a/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/appengine/HelloWorldServlet.java b/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/appengine/HelloWorldServlet.java new file mode 100644 index 0000000000..2750c04c9d --- /dev/null +++ b/sandbox/rfeng/helloworld-jsp-gae-contribution/src/sample/appengine/HelloWorldServlet.java @@ -0,0 +1,51 @@ +/* + * 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 sample.appengine; + +import java.io.IOException; +import java.io.PrintWriter; + +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import com.google.appengine.api.users.User; +import com.google.appengine.api.users.UserService; +import com.google.appengine.api.users.UserServiceFactory; + +@SuppressWarnings("serial") +public class HelloWorldServlet extends HttpServlet { + public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { + resp.setContentType("text/html"); + UserService userService = UserServiceFactory.getUserService(); + User user = userService.getCurrentUser(); + if (user == null) { + resp.sendRedirect(userService.createLoginURL(req.getRequestURI())); + } else { + PrintWriter pw = resp.getWriter(); + pw.println("Test"); + pw.println("

"); + pw.println("Welcome to the SCA Cloud hosted by Google App Engine: " + user); + if (user != null) { + pw.println("User ID: " + user.getUserId() + " E-mail: " + user.getEmail()); + } + pw.println("

"); + } + } +} -- cgit v1.2.3