com.omertron.imdbapi.wrapper.WrapperList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-imdb Show documentation
Show all versions of api-imdb Show documentation
API for the mobile JSON API of IMDB
package com.omertron.imdbapi.wrapper;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.omertron.imdbapi.model.AbstractJsonMapping;
import com.omertron.imdbapi.model.ImdbList;
import java.util.Collections;
import java.util.List;
@JsonIgnoreProperties({"@meta", "exp", "copyright", "@type", "db"})
public class WrapperList extends AbstractJsonMapping {
@JsonProperty("label")
private String label = "";
@JsonProperty("list")
private List imdbList = Collections.emptyList();
public List getImdbList() {
return imdbList;
}
public void setImdbList(List imdbList) {
this.imdbList = imdbList;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy