Package org.aburlacu.test.model

Examples of org.aburlacu.test.model.YoutubeVideo


     *  
     * @param Integer id - task id
     * @author Alexandru Burlacu
     */
    public void removeVideo(Integer id) {
        YoutubeVideo youtubeVideo = (YoutubeVideo) sessionFactory.getCurrentSession().load(
                YoutubeVideo.class, id);
        youtubeVideo.setIsRemoved(true);
        if (null != youtubeVideo) {
            sessionFactory.getCurrentSession().update(youtubeVideo);
        }
    }
View Full Code Here


    }

    @RequestMapping(value={"/index.html", "uploads.html"})
    public String listUploads(Map<String, Object> map) {

        map.put("video", new YoutubeVideo());
        map.put("videoList", youtubeVideoService.listVideo());
       
        //add  statuses
        ArrayList statusList = new ArrayList();
        statusList.add("In progress");
View Full Code Here

TOP

Related Classes of org.aburlacu.test.model.YoutubeVideo

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.