nl.vpro.domain.api.thesaurus.PersonResult 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.thesaurus;
import java.util.List;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import nl.vpro.domain.gtaa.GTAAPerson;
/**
* @author Michiel Meeuwissen
* @since 5.5
*/
@XmlSeeAlso({GTAAPerson.class})
@XmlRootElement
public class PersonResult extends ThesaurusResult {
protected PersonResult() {
}
@lombok.Builder
public PersonResult(List list, Integer max) {
super(list, max);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy