|
|
|
@ -42,6 +42,8 @@ public class PersonCast implements Serializable {
|
|
|
|
private int order;
|
|
|
|
private int order;
|
|
|
|
@JsonProperty("profile_path")
|
|
|
|
@JsonProperty("profile_path")
|
|
|
|
private String profilePath;
|
|
|
|
private String profilePath;
|
|
|
|
|
|
|
|
@JsonProperty("cast_id")
|
|
|
|
|
|
|
|
private int castId;
|
|
|
|
|
|
|
|
|
|
|
|
//<editor-fold defaultstate="collapsed" desc="Getter methods">
|
|
|
|
//<editor-fold defaultstate="collapsed" desc="Getter methods">
|
|
|
|
public String getCharacter() {
|
|
|
|
public String getCharacter() {
|
|
|
|
@ -63,6 +65,11 @@ public class PersonCast implements Serializable {
|
|
|
|
public String getProfilePath() {
|
|
|
|
public String getProfilePath() {
|
|
|
|
return profilePath;
|
|
|
|
return profilePath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int getCastId() {
|
|
|
|
|
|
|
|
return castId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//</editor-fold>
|
|
|
|
//</editor-fold>
|
|
|
|
|
|
|
|
|
|
|
|
//<editor-fold defaultstate="collapsed" desc="Setter methods">
|
|
|
|
//<editor-fold defaultstate="collapsed" desc="Setter methods">
|
|
|
|
@ -85,6 +92,11 @@ public class PersonCast implements Serializable {
|
|
|
|
public void setProfilePath(String profilePath) {
|
|
|
|
public void setProfilePath(String profilePath) {
|
|
|
|
this.profilePath = profilePath;
|
|
|
|
this.profilePath = profilePath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCastId(int castId) {
|
|
|
|
|
|
|
|
this.castId = castId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//</editor-fold>
|
|
|
|
//</editor-fold>
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
@ -98,7 +110,7 @@ public class PersonCast implements Serializable {
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
sb.append("Unknown property: '").append(key);
|
|
|
|
sb.append("Unknown property: '").append(key);
|
|
|
|
sb.append("' value: '").append(value).append("'");
|
|
|
|
sb.append("' value: '").append(value).append("'");
|
|
|
|
LOGGER.warn(sb.toString());
|
|
|
|
LOGGER.trace(sb.toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
|