Package com.springapp.mvc.web.model

Examples of com.springapp.mvc.web.model.UserVO


public class UserConverter {

    public static UserVO convert(UserEntity userEntity) {

        UserVO userVO = new UserVO();

        userVO.setId(userEntity.getId());
        userVO.setFirstName(userEntity.getFirstName());
        userVO.setLastName(userEntity.getLastName());
        userVO.setEmail(userEntity.getEmail());

        return userVO;
    }
View Full Code Here

TOP

Related Classes of com.springapp.mvc.web.model.UserVO

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.