Uses of Interface
org.apache.abdera.model.Feed

Packages that use Feed
org.apache.abdera   
org.apache.abdera.ext.opensearch.server.impl   
org.apache.abdera.ext.rss   
org.apache.abdera.ext.sharing   
org.apache.abdera.ext.tombstones   
org.apache.abdera.factory   
org.apache.abdera.model   
org.apache.abdera.parser.stax   
org.apache.abdera.protocol.server.adapters.ibatis   
org.apache.abdera.protocol.server.impl   
org.apache.abdera.protocol.server.provider.basic   
 

Uses of Feed in org.apache.abdera
 

Methods in org.apache.abdera that return Feed
 Feed Abdera.newFeed()
          Create a new Feed instance.
 

Uses of Feed in org.apache.abdera.ext.opensearch.server.impl
 

Methods in org.apache.abdera.ext.opensearch.server.impl with parameters of type Feed
protected  void AbstractOpenSearchUrlAdapter.postProcess(Feed feed, RequestContext request, Map<String,String> parameters, List<T> searchResults)
          Post process this feed in order to make custom modifications.
By default, this method does nothing: override to provide a different behavior.
 

Uses of Feed in org.apache.abdera.ext.rss
 

Classes in org.apache.abdera.ext.rss that implement Feed
 class RssFeed
           
 

Methods in org.apache.abdera.ext.rss that return Feed
 Feed RssFeed.addEntry(Entry entry)
           
 Feed RssFeed.getAsFeed()
           
 Feed RssSource.getAsFeed()
           
 Feed RssFeed.insertEntry(Entry entry)
           
 Feed RssFeed.sortEntries(Comparator<Entry> comparator)
           
 Feed RssFeed.sortEntriesByEdited(boolean new_first)
           
 Feed RssFeed.sortEntriesByUpdated(boolean new_first)
           
 

Uses of Feed in org.apache.abdera.ext.sharing
 

Methods in org.apache.abdera.ext.sharing with parameters of type Feed
static Entry SharingHelper.createEntry(Abdera abdera, String by, Feed feed)
           
static Map<String,Entry> SharingHelper.getSyncIdMap(Feed feed)
           
static Unpublished SharingHelper.getUnpublished(Feed feed)
           
static Unpublished SharingHelper.getUnpublished(Feed feed, boolean create)
           
static void SharingHelper.mergeFeeds(Feed source, Feed dest)
           
static void SharingHelper.publish(Feed feed, Date expires, boolean initial)
           
 

Uses of Feed in org.apache.abdera.ext.tombstones
 

Methods in org.apache.abdera.ext.tombstones with parameters of type Feed
static Tombstone TombstonesHelper.addTombstone(Feed source, Entry entry)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, Entry entry, AtomDate when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, Entry entry, Calendar when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, Entry entry, Date when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, Entry entry, long when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, Entry entry, String when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, String id)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, String id, AtomDate when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, String id, Calendar when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, String id, Date when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, String id, long when, String by, String comment)
           
static Tombstone TombstonesHelper.addTombstone(Feed source, String id, String when, String by, String comment)
           
static void TombstonesHelper.addTombstone(Feed source, Tombstone tombstone)
           
static List<Tombstone> TombstonesHelper.getTombstones(Feed source)
           
static boolean TombstonesHelper.hasTombstones(Feed source)
           
 

Uses of Feed in org.apache.abdera.factory
 

Methods in org.apache.abdera.factory that return Feed
 Feed Factory.newFeed()
          Create a new Feed element.
 Feed Factory.newFeed(Base parent)
          Create a new Feed element as a child of the given Base.
 

Uses of Feed in org.apache.abdera.model
 

Methods in org.apache.abdera.model that return Feed
 Feed Feed.addEntry(Entry entry)
          Adds a new Entry to the end of the Feeds collection of entries
 Feed Source.getAsFeed()
          Convert the Source element into an empty Feed element
 Feed Feed.insertEntry(Entry entry)
          Adds a new Entry to the start of the Feeds collection of entries
 Feed Feed.sortEntries(Comparator<Entry> comparator)
          Sorts entries using the given comparator
 Feed Feed.sortEntriesByEdited(boolean new_first)
          Sorts entries by the app:edited property.
 Feed Feed.sortEntriesByUpdated(boolean new_first)
          Sorts entries by the atom:updated property
 

Uses of Feed in org.apache.abdera.parser.stax
 

Classes in org.apache.abdera.parser.stax that implement Feed
 class FOMFeed
           
 

Methods in org.apache.abdera.parser.stax that return Feed
 Feed FOMFeed.addEntry(Entry entry)
           
 Feed FOMSource.getAsFeed()
           
 Feed FOMFeed.insertEntry(Entry entry)
           
 Feed FOMFactory.newFeed()
           
 Feed FOMFactory.newFeed(Base parent)
           
 Feed FOMFactory.newFeed(QName qname, org.apache.axiom.om.OMContainer parent, org.apache.axiom.om.OMXMLParserWrapper parserWrapper)
           
 Feed FOMFeed.sortEntries(Comparator<Entry> comparator)
           
 Feed FOMFeed.sortEntriesByEdited(boolean new_first)
           
 Feed FOMFeed.sortEntriesByUpdated(boolean new_first)
           
 

Uses of Feed in org.apache.abdera.protocol.server.adapters.ibatis
 

Methods in org.apache.abdera.protocol.server.adapters.ibatis that return Feed
 Feed IBatisCollectionAdapter.getFeed()
           
 

Methods in org.apache.abdera.protocol.server.adapters.ibatis with parameters of type Feed
protected  Entry IBatisCollectionAdapter.createEntryFromRow(Feed feed, Map<String,Object> row)
           
 

Uses of Feed in org.apache.abdera.protocol.server.impl
 

Methods in org.apache.abdera.protocol.server.impl that return Feed
protected  Feed AbstractCollectionAdapter.createFeedBase(RequestContext request)
          Create the base feed for the requested collection.
 

Methods in org.apache.abdera.protocol.server.impl with parameters of type Feed
protected  void AbstractEntityCollectionAdapter.addFeedDetails(Feed feed, RequestContext request)
          Adds the selected entries to the Feed document.
protected  ResponseContext AbstractCollectionAdapter.buildGetFeedResponse(Feed feed)
          Creates the ResponseContext for a GET feed request.
 

Uses of Feed in org.apache.abdera.protocol.server.provider.basic
 

Methods in org.apache.abdera.protocol.server.provider.basic that return Feed
protected  Feed BasicAdapter.createFeed()
           
abstract  Feed BasicAdapter.getFeed()
           
 



Copyright © 2006-2012 Apache Software Foundation. All Rights Reserved.