nl.vpro.domain.api.MultipleMediaResult 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 java.util.List;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import nl.vpro.domain.constraint.DisplayablePredicate;
import nl.vpro.domain.media.MediaObject;
/**
* @author Michiel Meeuwissen
* @since 3.3
*/
@XmlRootElement(name = "multipleMediaResult")
@XmlType(name = "multipleMediaResultType")
@XmlSeeAlso(MultipleMediaEntry.class)
public class MultipleMediaResult extends AbstractMultipleResult {
public MultipleMediaResult() {
super(MultipleMediaEntry::new);
}
public MultipleMediaResult(List ids, List mediaObjects, DisplayablePredicate predicate) {
super(MultipleMediaEntry::new, ids, mediaObjects, predicate);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy