All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.domain.api.MultipleMediaResult Maven / Gradle / Ivy

Go to download

Contains the objects used by the Frontend API, like forms and result objects

There is a newer version: 8.3.3
Show newest version
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