/* * gw2live - GuildWars 2 Dynamic Map * * Website: http://gw2map.com * * Copyright 2013 zyclonite networx * http://zyclonite.net * Developer: Lukas Prettenthaler */ package net.zyclonite.gw2live.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import java.io.Serializable; import java.util.Date; /** * * @author zyclonite */ @JsonIgnoreProperties({"_id"}) public class ChatMessage implements Serializable { private String channel; private Date timestamp; private String sender; private String message; private String icon; private double x; private double y; public String getChannel() { return channel; } public void setChannel(final String channel) { this.channel = channel; } public Date getTimestamp() { return timestamp; } public void setTimestamp(final Date timestamp) { this.timestamp = timestamp; } public String getSender() { return sender; } public void setSender(final String sender) { this.sender = sender; } public String getMessage() { return message; } public void setMessage(final String message) { this.message = message; } public String getIcon() { return icon; } public void setIcon(final String icon) { this.icon = icon; } public double getX() { return x; } public void setX(final double x) { this.x = x; } public double getY() { return y; } public void setY(final double y) { this.y = y; } }