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

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

Go to download

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

The newest version!
package nl.vpro.domain.api;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;

import com.fasterxml.jackson.annotation.JsonPropertyOrder;

import nl.vpro.domain.page.Page;

/**
 * @author Michiel Meeuwissen
 * @since 3.3
 */
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(name = "multiplePageEntryType", propOrder = {})
@JsonPropertyOrder({})
public class MultiplePageEntry extends  MultipleEntry {

    public MultiplePageEntry() {

    }
    public MultiplePageEntry(String id, Page page) {
        super(id, page);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy