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