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

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