nl.vpro.domain.media.update.VideoAttributesUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-domain Show documentation
Show all versions of media-domain Show documentation
The basic domain classes for 'media', the core of POMS. Also, the 'update' XML bindings for it.
It also contains some closely related domain classes like the enum to contain NICAM kijkwijzer settings.
/*
* Copyright (C) 2012 Licensed under the Apache License, Version 2.0
* VPRO The Netherlands
*/
package nl.vpro.domain.media.update;
import lombok.Getter;
import lombok.Setter;
import jakarta.validation.constraints.Min;
import jakarta.xml.bind.annotation.*;
import nl.vpro.domain.media.*;
/**
* @see nl.vpro.domain.media.update
* @see VideoAttributes
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "videoAttributesUpdateType", propOrder = {
"aspectRatio",
"color",
"coding"
})
@Getter
@Setter
public class VideoAttributesUpdate {
@XmlAttribute(name = "width")
@Min(0)
private Integer width;
@XmlAttribute(name = "height")
@Min(0)
private Integer height;
@XmlElement
private AspectRatio aspectRatio;
@XmlElement
private ColorType color;
@XmlElement
private String coding;
public static VideoAttributesUpdate copy(VideoAttributesUpdate copy) {
if (copy == null) {
return null;
}
VideoAttributesUpdate result = new VideoAttributesUpdate();
result.width = copy.width;
result.height = copy.height;
result.aspectRatio = copy.aspectRatio;
result.color = copy.color;
result.coding = copy.coding;
return result;
}
private VideoAttributesUpdate() {
}
public VideoAttributesUpdate(Integer width, Integer height) {
this(width, height, null, null);
}
public VideoAttributesUpdate(Integer width, Integer height, String coding, ColorType color) {
this.coding = coding;
this.color = color;
this.height = height;
this.width = width;
this.aspectRatio = AspectRatio.fromDimension(width, height);
}
public VideoAttributesUpdate(VideoAttributes videoAttributes) {
width = videoAttributes.getHorizontalSize();
height = videoAttributes.getVerticalSize();
aspectRatio = videoAttributes.getAspectRatio();
color = videoAttributes.getColor();
coding = videoAttributes.getVideoCoding();
}
VideoAttributes toVideoAttributes() {
VideoAttributes attributes = new VideoAttributes();
attributes.setVerticalSize(height);
attributes.setHorizontalSize(width);
attributes.setAspectRatio(aspectRatio);
attributes.setColor(color);
attributes.setVideoCoding(coding);
return attributes;
}
}