nl.vpro.domain.api.MultipleMediaEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
package nl.vpro.domain.api;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import nl.vpro.domain.media.MediaObject;
/**
* @author Michiel Meeuwissen
* @since 3.3
*/
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(name = "multipleMediaEntryType", propOrder = { })
@JsonPropertyOrder({})
public class MultipleMediaEntry extends MultipleEntry {
public MultipleMediaEntry() {
}
public MultipleMediaEntry(String id, MediaObject m) {
super(id, m);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy