Added IMDB_ID and POPULARITY to Person

This commit is contained in:
Stuart Boston
2013-03-07 15:32:10 +00:00
parent bea972520b
commit d2972ac927
@@ -74,6 +74,10 @@ public class Person implements Serializable {
private String homepage = DEFAULT_STRING;
@JsonProperty("place_of_birth")
private String birthplace = DEFAULT_STRING;
@JsonProperty("imdb_id")
private String imdbId = DEFAULT_STRING;
@JsonProperty("popularity")
private float popularity = 0.0f;
/**
* Add a crew member
@@ -175,6 +179,14 @@ public class Person implements Serializable {
public String getHomepage() {
return homepage;
}
public String getImdbId() {
return imdbId;
}
public float getPopularity() {
return popularity;
}
// </editor-fold>
// <editor-fold defaultstate="collapsed" desc="Setter methods">
@@ -237,6 +249,14 @@ public class Person implements Serializable {
public void setHomepage(String homepage) {
this.homepage = homepage;
}
public void setImdbId(String imdbId) {
this.imdbId = imdbId;
}
public void setPopularity(float popularity) {
this.popularity = popularity;
}
// </editor-fold>
/**