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

nl.vpro.domain.api.page.PageResult 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.page;

import java.util.List;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import nl.vpro.domain.api.Result;
import nl.vpro.domain.page.Page;

/**
 * @author Michiel Meeuwissen
 * @since 2.0
 */
@XmlRootElement(name = "pageResult")
@XmlType(name = "pageResultType")
public class PageResult extends Result {

    public PageResult() {
    }

    public PageResult(List pages, Long offset, Integer max, Total total) {
        super(pages, offset, max, total);
    }

    public PageResult(Result pages) {
        super(pages);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy