
de.blackrose01.model.privates.FeedFollow Maven / Gradle / Ivy
package de.blackrose01.model.privates;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.gson.Gson;
import de.blackrose01.model.Feed;
import de.blackrose01.model.game.Game;
import java.io.Serializable;
import java.util.Objects;
@JsonIgnoreProperties(ignoreUnknown = true)
public class FeedFollow implements Serializable {
@JsonIgnore
@JsonProperty(value = "id")
private long id;
@JsonProperty(value = "feed")
private Object feed;
@JsonIgnore
@JsonProperty(value = "user")
private long user;
@JsonProperty(value = "game")
private Object game;
@JsonIgnore
@JsonProperty(value = "created_at")
private long createdAt;
@JsonIgnore
@JsonProperty(value = "published_at")
private long publishedAt;
@JsonIgnore
@JsonProperty(value = "updated_at")
private long updatedAt;
@JsonIgnore
@JsonProperty(value = "checksum")
private long checksum;
public FeedFollow() {
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
@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;
}
public long getUser() {
return user;
}
public void setUser(long user) {
this.user = user;
}
@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 long getCreatedAt() {
return createdAt;
}
public void setCreatedAt(long createdAt) {
this.createdAt = createdAt;
}
public long getPublishedAt() {
return publishedAt;
}
public void setPublishedAt(long publishedAt) {
this.publishedAt = publishedAt;
}
public long getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(long updatedAt) {
this.updatedAt = updatedAt;
}
public long getChecksum() {
return checksum;
}
public void setChecksum(long 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;
FeedFollow that = (FeedFollow) o;
return id == that.id &&
feed == that.feed &&
user == that.user &&
game == that.game &&
createdAt == that.createdAt &&
publishedAt == that.publishedAt &&
updatedAt == that.updatedAt &&
checksum == that.checksum;
}
@Override
public int hashCode() {
return Objects.hash(id, feed, user, game, createdAt, publishedAt, updatedAt, checksum);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy