org.spincast.website.models.INewsEntry 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;
/**
 * Spincast news entry.
 */
public interface INewsEntry {
    /**
     * The news entry's id
     */
    public long getId();
    /**
     * The published date, format: "YYYY-MM-DD HH:mm"
     */
    public String getPublishedDate();
    /**
     * The title of the news entry.
     */
    public String getTitle();
    /**
     * The description of the news entry.
     */
    public String getDescription();
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy