Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
de.blackrose01.model.page.Page Maven / Gradle / Ivy
package de.blackrose01.model.page;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.gson.Gson;
import de.blackrose01.model.Feed;
import de.blackrose01.model.company.Company;
import de.blackrose01.model.game.Game;
import java.io.Serializable;
import java.util.List;
import java.util.Objects;
/**
* Our multipurpose page system is currently used for youtubers and media organisations.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class Page implements Serializable {
@JsonIgnore
@JsonProperty(value = "id")
private long id;
@JsonProperty(value = "background")
private Object background;
@JsonIgnore
@JsonProperty(value = "country")
private long country;
@JsonIgnore
@JsonProperty(value = "name")
private String name;
@JsonIgnore
@JsonProperty(value = "description")
private String description;
@JsonIgnore
@JsonProperty(value = "slug")
private String slug;
@JsonIgnore
@JsonProperty(value = "battlenet")
private String battlenet;
@JsonProperty(value = "company")
private Object company;
@JsonProperty(value = "feed")
private Object feed;
@JsonProperty(value = "game")
private Object game;
@JsonIgnore
@JsonProperty(value = "origin")
private String origin;
@JsonIgnore
@JsonProperty(value = "uplay")
private String uplay;
@JsonIgnore
@JsonProperty(value = "page_follows_count")
private int pageFollowsCount;
@JsonProperty(value = "page_logo")
private Object pageLogo;
@JsonIgnore
@JsonProperty(value = "url")
private String url;
@JsonIgnore
@JsonProperty(value = "user")
private long user;
@JsonProperty(value = "websites")
private List websites;
@JsonIgnore
@JsonProperty(value = "category")
private int category;
@JsonIgnore
@JsonProperty(value = "sub_category")
private int categorySub;
@JsonIgnore
@JsonProperty(value = "color")
private int color;
@JsonIgnore
@JsonProperty(value = "created_at")
private long createdAt;
@JsonIgnore
@JsonProperty(value = "updated_at")
private long updatedAt;
@JsonIgnore
@JsonProperty(value = "checksum")
private String checksum;
public Page() {
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
@JsonIgnore
public long getBackground() {
return Long.parseLong(String.valueOf(background));
}
@JsonIgnore
public PageBackground getBackgroundObject() {
return new ObjectMapper().convertValue(background, PageBackground.class);
}
public void setBackground(Object background) {
this.background = background;
}
public long getCountry() {
return country;
}
public void setCountry(long country) {
this.country = country;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getSlug() {
return slug;
}
public void setSlug(String slug) {
this.slug = slug;
}
public String getBattlenet() {
return battlenet;
}
public void setBattlenet(String battlenet) {
this.battlenet = battlenet;
}
@JsonIgnore
public long getCompany() {
return Long.parseLong(String.valueOf(company));
}
@JsonIgnore
public Company getCompanyObject() {
return new ObjectMapper().convertValue(company, Company.class);
}
public void setCompany(Object company) {
this.company = company;
}
@JsonIgnore
public long getFeed() {
return Long.parseLong(String.valueOf(feed));
}
@JsonIgnore
public Feed getFeedObject() {
return new ObjectMapper().convertValue(feed, Feed.class);
}
public void setFeed(Object feed) {
this.feed = feed;
}
@JsonIgnore
public long getGame() {
return Long.parseLong(String.valueOf(game));
}
@JsonIgnore
public Game getGameObject() {
return new ObjectMapper().convertValue(game, Game.class);
}
public void setGame(Object game) {
this.game = game;
}
public String getOrigin() {
return origin;
}
public void setOrigin(String origin) {
this.origin = origin;
}
public String getUplay() {
return uplay;
}
public void setUplay(String uplay) {
this.uplay = uplay;
}
public int getPageFollowsCount() {
return pageFollowsCount;
}
public void setPageFollowsCount(int pageFollowsCount) {
this.pageFollowsCount = pageFollowsCount;
}
@JsonIgnore
public long getPageLogo() {
return Long.parseLong(String.valueOf(pageLogo));
}
@JsonIgnore
public PageLogo getPageLogoObject() {
return new ObjectMapper().convertValue(pageLogo, PageLogo.class);
}
public void setPageLogo(long pageLogo) {
this.pageLogo = pageLogo;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public long getUser() {
return user;
}
public void setUser(long user) {
this.user = user;
}
@JsonIgnore
public List getWebsites() {
return new ObjectMapper().convertValue(websites, new TypeReference>() {
});
}
@JsonIgnore
public List getWebsitesObject() {
return new ObjectMapper().convertValue(websites, new TypeReference>() {
});
}
public void setWebsites(List websites) {
this.websites = websites;
}
public int getCategory() {
return category;
}
public void setCategory(int category) {
this.category = category;
}
public int getCategorySub() {
return categorySub;
}
public void setCategorySub(int categorySub) {
this.categorySub = categorySub;
}
public int getColor() {
return color;
}
public void setColor(int color) {
this.color = color;
}
public long getCreatedAt() {
return createdAt;
}
public void setCreatedAt(long createdAt) {
this.createdAt = createdAt;
}
public long getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(long updatedAt) {
this.updatedAt = updatedAt;
}
public String getChecksum() {
return checksum;
}
public void setChecksum(String checksum) {
this.checksum = checksum;
}
@Override
public String toString() {
return new Gson().toJson(this);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Page page = (Page) o;
return id == page.id &&
country == page.country &&
pageFollowsCount == page.pageFollowsCount &&
pageLogo == page.pageLogo &&
user == page.user &&
category == page.category &&
categorySub == page.categorySub &&
color == page.color &&
createdAt == page.createdAt &&
updatedAt == page.updatedAt &&
Objects.equals(background, page.background) &&
Objects.equals(name, page.name) &&
Objects.equals(description, page.description) &&
Objects.equals(slug, page.slug) &&
Objects.equals(battlenet, page.battlenet) &&
Objects.equals(company, page.company) &&
Objects.equals(feed, page.feed) &&
Objects.equals(game, page.game) &&
Objects.equals(origin, page.origin) &&
Objects.equals(uplay, page.uplay) &&
Objects.equals(url, page.url) &&
Objects.equals(websites, page.websites) &&
Objects.equals(checksum, page.checksum);
}
@Override
public int hashCode() {
return Objects.hash(id, background, country, name, description, slug, battlenet, company, feed, game, origin, uplay, pageFollowsCount, pageLogo, url, user, websites, category, categorySub, color, createdAt, updatedAt, checksum);
}
}