All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.spincast.website.models.NewsEntry Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy