mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
28 lines
640 B
Java
28 lines
640 B
Java
|
|
package com.commafeed.frontend.model;
|
||
|
|
|
||
|
|
import java.io.Serializable;
|
||
|
|
|
||
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
||
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
||
|
|
|
||
|
|
import com.wordnik.swagger.annotations.ApiClass;
|
||
|
|
|
||
|
|
@SuppressWarnings("serial")
|
||
|
|
@XmlRootElement
|
||
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||
|
|
@ApiClass("Server infos")
|
||
|
|
public class ServerInfo implements Serializable {
|
||
|
|
|
||
|
|
private String announcement;
|
||
|
|
|
||
|
|
public String getAnnouncement() {
|
||
|
|
return announcement;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setAnnouncement(String announcement) {
|
||
|
|
this.announcement = announcement;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|