nl.vpro.domain.media.Intentions 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.
package nl.vpro.domain.media;
import lombok.*;
import java.io.Serial;
import java.util.List;
import java.util.stream.Collectors;
import jakarta.persistence.Entity;
import jakarta.xml.bind.annotation.*;
import org.checkerframework.checker.nullness.qual.NonNull;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import nl.vpro.domain.media.support.AbstractMediaObjectOwnableList;
import nl.vpro.domain.media.support.OwnerType;
/**
* @author Giorgio Vinci
* @since 5.11
*/
@Entity
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(name = "intentionsType")
@Getter
@Setter
@JsonPropertyOrder({
"owner",
"values"
})
public class Intentions extends AbstractMediaObjectOwnableList {
@Serial
private static final long serialVersionUID = -1077914108074955136L;
public Intentions() {}
public static Intentions empty(@NonNull OwnerType owner) {
return Intentions.builder().owner(owner).build();
}
@lombok.Builder(builderClassName = "Builder")
private Intentions(
@Singular List values,
OwnerType owner) {
this.values = values.stream().map(Intention::new).collect(Collectors.toList());
this.owner = owner;
//To help Hibernate understand the relationship we
//explicitly set the parent!
this.values.forEach(v -> v.setParent(this));
}
/**
* TODO: Why couldn't this have been simply a list of IntentionType?
*/
@Override
@NonNull
@XmlElement(name="intention")
@JsonIgnore
public List getValues() {
return values;
}
public void setValues(List list) {
this.values = list;
}
public Intentions clone(OwnerType newOwner) {
return new Intentions(
values.stream()
.map(Intention::getValue)
.collect(Collectors.toList()),
newOwner
);
}
}