IMDBEntity.java
Anonymous
java
11/12/2022 11:59 AM
692 B
17
Indexable
package com.example.awsdemo;
//POJO for holding IMDBEntity
public class IMDBEntity {
private String imdbId;
private String title;
private String poster;
private String type;
private String year;
public String getImdbId() {
return imdbId;
}
public String getTitle() {
return title;
}
public String getPoster() {
return poster;
}
public String getType() {
return type;
}
public String getYear() {
return year;
}
}
Editor is loading...