01: //
02: // Informa -- RSS Library for Java
03: // Copyright (c) 2002 by Niko Schmuck
04: //
05: // Niko Schmuck
06: // http://sourceforge.net/projects/informa
07: // mailto:niko_schmuck@users.sourceforge.net
08: //
09: // This library is free software.
10: //
11: // You may redistribute it and/or modify it under the terms of the GNU
12: // Lesser General Public License as published by the Free Software Foundation.
13: //
14: // Version 2.1 of the license should be included with this distribution in
15: // the file LICENSE. If the license is not included with this distribution,
16: // you may find a copy at the FSF web site at 'www.gnu.org' or 'www.fsf.org',
17: // or you may write to the Free Software Foundation, 675 Mass Ave, Cambridge,
18: // MA 02139 USA.
19: //
20: // This library is distributed in the hope that it will be useful,
21: // but WITHOUT ANY WARRANTY; without even the implied waranty of
22: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23: // Lesser General Public License for more details.
24: //
25:
26: // $Id: FeedIF.java,v 1.10 2005/09/27 22:17:07 niko_schmuck Exp $
27:
28: package de.nava.informa.core;
29:
30: import java.util.Date;
31:
32: /**
33: * <p>This interface is implemented by objects representing feeds
34: * (containing metadata about channels, like for example OCS and OPML)
35: * in the news channel object model.</p>
36: *
37: * <p>{@link WithLocationMIF#getLocation()} returns the destination of the feed
38: * (most likely the XML source). </p>
39: *
40: * <p>{@link WithChannelMIF#getChannel()} retrieves the channel this feed
41: * represents.</p>
42: * <p>{@link WithChannelMIF#setChannel(ChannelIF)} sets the channel that
43: * this feed represents</p>
44: *
45: * @author Niko Schmuck (niko@nava.de)
46: */
47: public interface FeedIF extends WithIdMIF, WithTitleMIF,
48: WithLocationMIF, WithChannelMIF, WithSiteMIF {
49:
50: String getText();
51:
52: void setText(String text);
53:
54: String getContentType();
55:
56: void setContentType(String contentType);
57:
58: Date getDateFound();
59:
60: void setDateFound(Date dateFound);
61:
62: Date getLastUpdated();
63:
64: void setLastUpdated(Date lastUpdated);
65:
66: }
|