Package org.platformlayer.auth.model

Examples of org.platformlayer.auth.model.UserValidation


    user.email = userInfo.key;
    return user;
  }

  public static UserValidation mapToUserValidation(UserEntity userInfo) {
    UserValidation user = new UserValidation();
    user.id = "" + userInfo.id;
    user.name = userInfo.key;
    // user.secret = AesUtils.serialize(userInfo.getUserSecret());
    return user;
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.auth.model.UserValidation

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.