nl.vpro.domain.api.AbstractFacet 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!
/*
* Copyright (C) 2014 Licensed under the Apache License, Version 2.0
* VPRO The Netherlands
*/
package nl.vpro.domain.api;
import jakarta.validation.Valid;
import jakarta.xml.bind.annotation.*;
import nl.vpro.domain.api.media.MediaFacet;
import nl.vpro.domain.api.page.PageFacet;
/**
* @author Roelof Jan Koekoek
* @since 3.3
*/
// Apply the JAXB data binding via override in subclass to map the corresponding subtype of T
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(name = "abstractFacetType")
@XmlSeeAlso({MediaFacet.class, PageFacet.class})
public abstract class AbstractFacet implements Facet, FilteredFacet {
@Valid
protected T filter;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy