update Movie class
This commit is contained in:
@@ -16,6 +16,22 @@ public class Movie {
|
|||||||
private String imdb_rating;
|
private String imdb_rating;
|
||||||
private String country;
|
private String country;
|
||||||
|
|
||||||
|
private String actors;
|
||||||
|
private String awards;
|
||||||
|
private String director;
|
||||||
|
private int imdb_id;
|
||||||
|
private int imdb_votes;
|
||||||
|
private String metaScore;
|
||||||
|
private String plot;
|
||||||
|
private String rated;
|
||||||
|
private String released;
|
||||||
|
private String runtime;
|
||||||
|
private String type;
|
||||||
|
private String writer;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Movie(long id, String title, List<String> genres, List<String> images, String year, String imdb_rating, String country)
|
public Movie(long id, String title, List<String> genres, List<String> images, String year, String imdb_rating, String country)
|
||||||
{
|
{
|
||||||
this.id = id;
|
this.id = id;
|
||||||
@@ -88,4 +104,100 @@ public class Movie {
|
|||||||
public void setCountry(String country) {
|
public void setCountry(String country) {
|
||||||
this.country = country;
|
this.country = country;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getActors() {
|
||||||
|
return actors;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setActors(String actors) {
|
||||||
|
this.actors = actors;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAwards() {
|
||||||
|
return awards;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAwards(String awards) {
|
||||||
|
this.awards = awards;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDirector() {
|
||||||
|
return director;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDirector(String director) {
|
||||||
|
this.director = director;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getImdb_id() {
|
||||||
|
return imdb_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImdb_id(int imdb_id) {
|
||||||
|
this.imdb_id = imdb_id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getImdb_votes() {
|
||||||
|
return imdb_votes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setImdb_votes(int imdb_votes) {
|
||||||
|
this.imdb_votes = imdb_votes;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMetaScore() {
|
||||||
|
return metaScore;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaScore(String metaScore) {
|
||||||
|
this.metaScore = metaScore;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlot() {
|
||||||
|
return plot;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlot(String plot) {
|
||||||
|
this.plot = plot;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRated() {
|
||||||
|
return rated;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRated(String rated) {
|
||||||
|
this.rated = rated;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getReleased() {
|
||||||
|
return released;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReleased(String released) {
|
||||||
|
this.released = released;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRuntime() {
|
||||||
|
return runtime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRuntime(String runtime) {
|
||||||
|
this.runtime = runtime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setType(String type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWriter() {
|
||||||
|
return writer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWriter(String writer) {
|
||||||
|
this.writer = writer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user