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

hudson.FeedAdapter Maven / Gradle / Ivy

package hudson;

import java.util.Calendar;

/**
 * Provides a RSS feed view of the data.
 *
 * @author Kohsuke Kawaguchi
 */
public interface FeedAdapter {
    String getEntryTitle(E entry);
    String getEntryUrl(E entry);
    String getEntryID(E entry);
    Calendar getEntryTimestamp(E entry);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy