
com.arnaudpiroelle.marvel.api.objects.Series Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marvel-api Show documentation
Show all versions of marvel-api Show documentation
Marvel API is an OpenSource client for Marvel API
/**
* Copyright (C) 2014 Arnaud Piroelle (contact@arnaudpiroelle.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.arnaudpiroelle.marvel.api.objects;
import com.arnaudpiroelle.marvel.api.objects.ref.Data;
import java.util.Date;
import java.util.List;
/**
* Created by Arnaud on 03/03/2014.
*/
public class Series extends Data {
private int id;
private String title;
private String description;
private String resourceURI;
private List urls;
private int startYear;
private int endYear;
private String rating;
private Date modified;
private Image thumbnail;
private ComicList comics;
private StoryList stories;
private EventList events;
private CharacterList characters;
private CreatorList creators;
private SeriesSummary next;
private SeriesSummary previous;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getResourceURI() {
return resourceURI;
}
public void setResourceURI(String resourceURI) {
this.resourceURI = resourceURI;
}
public List getUrls() {
return urls;
}
public void setUrls(List urls) {
this.urls = urls;
}
public int getStartYear() {
return startYear;
}
public void setStartYear(int startYear) {
this.startYear = startYear;
}
public int getEndYear() {
return endYear;
}
public void setEndYear(int endYear) {
this.endYear = endYear;
}
public String getRating() {
return rating;
}
public void setRating(String rating) {
this.rating = rating;
}
public Date getModified() {
return modified;
}
public void setModified(Date modified) {
this.modified = modified;
}
public Image getThumbnail() {
return thumbnail;
}
public void setThumbnail(Image thumbnail) {
this.thumbnail = thumbnail;
}
public ComicList getComics() {
return comics;
}
public void setComics(ComicList comics) {
this.comics = comics;
}
public StoryList getStories() {
return stories;
}
public void setStories(StoryList stories) {
this.stories = stories;
}
public EventList getEvents() {
return events;
}
public void setEvents(EventList events) {
this.events = events;
}
public CharacterList getCharacters() {
return characters;
}
public void setCharacters(CharacterList characters) {
this.characters = characters;
}
public CreatorList getCreators() {
return creators;
}
public void setCreators(CreatorList creators) {
this.creators = creators;
}
public SeriesSummary getNext() {
return next;
}
public void setNext(SeriesSummary next) {
this.next = next;
}
public SeriesSummary getPrevious() {
return previous;
}
public void setPrevious(SeriesSummary previous) {
this.previous = previous;
}
}