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