Package com.springapp.mvc.web.model

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


        return MovieConverter.convert(movieDao.findById(id));
    }

    @Override
    public MovieVO add() {
        return new MovieVO();
    }
View Full Code Here


public class MovieConverter {

    public static MovieVO convert(MovieEntity userEntity) {

        MovieVO movieVO = new MovieVO();

        movieVO.setId(userEntity.getId());
        movieVO.setTitle(userEntity.getTitle());
        movieVO.setStartDate(userEntity.getStartDate().toDate());
        movieVO.setEndDate(userEntity.getEndDate().toDate());

        return movieVO;
    }
View Full Code Here

TOP

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

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.