Package com.google.collide.dto.server.DtoServerImpls

Examples of com.google.collide.dto.server.DtoServerImpls.UserDetailsImpl


    for (Entry<String, ConnectedTab> entry : collaborators) {
      String userId = entry.getValue().loginInfo.userId;
      String username = entry.getValue().loginInfo.username;
      ParticipantUserDetailsImpl participantDetails = ParticipantUserDetailsImpl.make();
      ParticipantImpl participant = ParticipantImpl.make().setId(entry.getKey()).setUserId(userId);
      UserDetailsImpl userDetails = UserDetailsImpl.make()
          .setUserId(userId).setDisplayEmail(username).setDisplayName(username)
          .setGivenName(username);

      participantDetails.setParticipant(participant);
      participantDetails.setUserDetails(userDetails);     
View Full Code Here

TOP

Related Classes of com.google.collide.dto.server.DtoServerImpls.UserDetailsImpl

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.