nl.vpro.domain.api.topspin.Recommendations 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.topspin;
import lombok.Data;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.checkerframework.checker.nullness.qual.NonNull;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class Recommendations implements Iterable {
private List recommendations = new ArrayList<>();
@NonNull
@Override
public Iterator iterator() {
return recommendations.iterator();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy