Package com.trustyoram.web.storage.showreel

Examples of com.trustyoram.web.storage.showreel.InternalShowreel


            shorts.setTitle(showreel.getTitle());
            shorts.setComment(showreel.getComment());
           
            String trailer;
            if (showreel instanceof InternalShowreel) {
              InternalShowreel o = (InternalShowreel)showreel;
             
              InputStream in = new FileInputStream(o.getFile());
              trailer = IOUtils.toString(in);
              in.close();
            } else {
              HtmlShowreel o = (HtmlShowreel)showreel;
             
              trailer = FileUtils.read(Configuration.getSystemRoot().getRoot().getFileItem(o.getFile()));
            }
           
            shorts.setTrailer(trailer);
           
            entity.persist(shorts);
View Full Code Here

TOP

Related Classes of com.trustyoram.web.storage.showreel.InternalShowreel

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.