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

nl.vpro.domain.api.MultiplePageResult 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.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