org.spincast.website.models.NewsEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-website Show documentation
Show all versions of spincast-website Show documentation
Source code for the https://www.spincast.org website.
package org.spincast.website.models;
import java.util.Date;
/**
* Spincast news entry.
*/
public interface NewsEntry {
/**
* The news entry's id
*/
public long getId();
/**
* The published date
*/
public Date getPublishedDate();
/**
* The title of the news entry.
*/
public String getTitle();
/**
* The description of the news entry.
*/
public String getDescription();
}