com.omertron.omdbapi.model.OmdbVideoBasic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of API-OMDB Show documentation
Show all versions of API-OMDB Show documentation
API for the omdbapi.com website
/*
* Copyright (c) 2013-2016 Stuart Boston
*
* This file is part of the OMDB API.
*
* The OMDB API is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* The OMDB API is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the OMDB API. If not, see .
*
*/
package com.omertron.omdbapi.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
public class OmdbVideoBasic extends AbstractJsonMapping implements Serializable {
@JsonProperty("Title")
private String title = "";
@JsonProperty("Year")
private String year = "";
@JsonProperty("imdbID")
private String imdbID = "";
@JsonProperty("Type")
private String type = "";
@JsonProperty("Poster")
private String poster = "";
//
public String getTitle() {
return title;
}
public String getYear() {
return year;
}
public String getImdbID() {
return imdbID;
}
public String getType() {
return type;
}
public String getPoster() {
return poster;
}
//
//
public void setTitle(String title) {
this.title = title;
}
public void setYear(String year) {
this.year = year;
}
public void setImdbID(String imdbID) {
this.imdbID = imdbID;
}
public void setType(String type) {
this.type = type;
}
public void setPoster(String poster) {
this.poster = poster;
}
//
}