package froala.editor.video; import egovframework.com.cmm.service.EgovProperties; import froala.editor.file.FileOptions; /** * Video Options used for uploading. * * @author florin@froala.com */ public class VideoOptions extends FileOptions { public static final String streamingDefault = "/streaming.do?fileId="; private String streamingUrl; public String getStreamingUrl () { return streamingUrl; } public void setStreamingUrl (String streamingUrl) { this.streamingUrl = streamingUrl; } /** * Init default video upload settings. */ @Override protected void initDefault () { setValidation (new VideoValidation ()); } /** * Constructor. Uses default options: - fieldname "file" - validation default * VideoValidation. To change them, use getters and setters. */ public VideoOptions() { // super (); setStreamingUrl (streamingDefault); initDefault (); } }