nl.vpro.domain.api.MultiplePageResult 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.page.Page;
/**
* @author Michiel Meeuwissen
* @since 3.3
*/
@XmlRootElement(name = "multiplePageResult")
@XmlType(name = "multiplePageResultType")
@XmlSeeAlso(MultiplePageEntry.class)
public class MultiplePageResult extends AbstractMultipleResult {
public MultiplePageResult() {
super(MultiplePageEntry::new);
}
public MultiplePageResult(List ids, List pages, DisplayablePredicate predicate) {
super(MultiplePageEntry::new, ids, pages, predicate);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy