
de.digitalcollections.model.text.contentblock.Video Maven / Gradle / Ivy
package de.digitalcollections.model.text.contentblock;
/** An embedded video. */
public class Video extends ContentBlockWithAttributes {
public Video() {}
public Video(
String alignment,
String caption,
String previewUrl,
String previewResourceId,
String resourceId,
String title,
String url,
String width) {
super();
addAttribute("alignment", alignment);
addAttribute("caption", caption);
addAttribute("previewUrl", previewUrl);
addAttribute("previewResourceId", previewResourceId);
addAttribute("resourceId", resourceId);
addAttribute("title", title);
addAttribute("url", url);
addAttribute("width", width);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy