01: /*
02: * Created on Dec 3, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.tigris.scarab.feeds;
08:
09: import java.io.IOException;
10:
11: import org.apache.torque.TorqueException;
12:
13: import com.sun.syndication.feed.synd.SyndFeed;
14: import com.sun.syndication.io.FeedException;
15:
16: /**
17: * @author Eric Pugh
18: *
19: * TODO To change the template for this generated type comment go to
20: * Window - Preferences - Java - Code Style - Code Templates
21: */
22: public interface Feed {
23: public abstract SyndFeed getFeed() throws IOException,
24: FeedException, TorqueException, Exception;
25: }
|