Package com.googlecode.scrumsp.api

Examples of com.googlecode.scrumsp.api.User


public class GreetingServiceStub extends RemoteServiceServlet implements
    GreetingService {

  @Override
  public User greetServer(String name) {
    return new User(name, "Hello " + name + ", Welcome to GWT");
  }
View Full Code Here


  private ServletContext servletContext;
 
  public User greetServer(String user) {
    String serverInfo = getServletContext().getServerInfo();
    return new User(user, "Hello my dear, " + user + "!<br><br>I am running " + serverInfo
        + ".<br>");
  }
View Full Code Here

TOP

Related Classes of com.googlecode.scrumsp.api.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.