Package com.gwtapps.projects.nextCoffee.client.model

Examples of com.gwtapps.projects.nextCoffee.client.model.Client


    name = cleanString( name, MAX_NAME_LENGTH );   

    //add user to list
    String id = getThreadLocalRequest().getSession().getId();
    UserInfo user = new UserInfo();
    user.client = new Client( name );
    synchronized( this ){
      users.put( id, user );
    }
   
    //create sign on event
View Full Code Here


    }
  }
 
  public void signOut(){
    //remove user from list
    Client client;
    String id = getThreadLocalRequest().getSession().getId();
    synchronized( this ){
      UserInfo user = (UserInfo)users.get(id);
      client = user.client;
      users.remove(id);
View Full Code Here

TOP

Related Classes of com.gwtapps.projects.nextCoffee.client.model.Client

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.