org.stanwood.media.actions.podcast
Interface IFeedFile

All Superinterfaces:
java.lang.Comparable<IFeedFile>
All Known Implementing Classes:
VideoFeedFile

public interface IFeedFile
extends java.lang.Comparable<IFeedFile>

This should be implemented by files that are to be inserted into a RSS feed


Method Summary
 java.lang.String getContentType()
          Used to get the content type
 java.lang.String getDescription()
          Used to get the description of the file
 java.io.File getFile()
          Used to get the location of the file
 java.util.Date getLastModified()
          Used to get the date the file was last modified
 java.net.URL getLink()
          Used to get the URL of the file
 java.lang.String getTitle()
          Used to get the title of the file
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getContentType

java.lang.String getContentType()
Used to get the content type

Returns:
the content Type

getFile

java.io.File getFile()
Used to get the location of the file

Returns:
the location of the file

getLastModified

java.util.Date getLastModified()
Used to get the date the file was last modified

Returns:
the date the file was last modified

getTitle

java.lang.String getTitle()
Used to get the title of the file

Returns:
the title of the file

getLink

java.net.URL getLink()
Used to get the URL of the file

Returns:
the URL of the file

getDescription

java.lang.String getDescription()
Used to get the description of the file

Returns:
the description of the file