Package com.volantis.map.sti.model

Examples of com.volantis.map.sti.model.Video


     *
     * @param prefix prefix of parameter where parameter can be found.
     * @return video model object.
     */
    private Video getVideo() throws ConverterException {
        Video video = new Video();

        setMediaParameters(video);

        String limitParameter = getParameterValue(ParameterNames.MAX_VIDEO_SIZE);

        if (limitParameter != null) {
            video.setSizeLimit(Long.parseLong(limitParameter));
        }

        video.setVideoAudio(getVideoAudio());
        video.setVideoVisual(getVideoVisual());

        return video;
    }
View Full Code Here

TOP

Related Classes of com.volantis.map.sti.model.Video

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.