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

nl.vpro.domain.api.thesaurus.ThesaurusResult Maven / Gradle / Ivy

Go to download

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

There is a newer version: 8.3.3
Show newest version
package nl.vpro.domain.api.thesaurus;

import lombok.NoArgsConstructor;

import java.util.List;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;

import nl.vpro.domain.api.Result;
import nl.vpro.domain.gtaa.*;

@XmlRootElement(name = "thesaurusItems")
@XmlType(name = "thesaurusItemsType")
@NoArgsConstructor
@XmlSeeAlso({
    GTAAPerson.class,
    GTAATopic.class,
    GTAAGenre.class,
    GTAAGeographicName.class,
    GTAAMaker.class,
    GTAAName.class,
    GTAAGeographicName.class,
    GTAAClassification.class,
    GTAATopicBandG.class
})public class ThesaurusResult extends Result {

    public ThesaurusResult(List list, Integer max) {
        super(list, 0L, max, Total.MISSING);
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy