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

Packages that use Collection
org.apache.abdera.ext.features   
org.apache.abdera.ext.rss   
org.apache.abdera.factory   
org.apache.abdera.model   
org.apache.abdera.parser.stax   
org.apache.abdera.protocol.server   
org.apache.abdera.protocol.server.impl   
org.apache.abdera.protocol.server.provider.managed   
 

Uses of Collection in org.apache.abdera.ext.features
 

Methods in org.apache.abdera.ext.features that return Collection
static Collection[] FeaturesHelper.select(Service service, Selector... selectors)
          Select a Collection from the service document
static Collection[] FeaturesHelper.select(Service service, Selector selector)
          Select a Collection from the service document
static Collection[] FeaturesHelper.select(Workspace workspace, Selector... selectors)
          Select a Collection from the Workspace
static Collection[] FeaturesHelper.select(Workspace workspace, Selector selector)
          Select a Collection from the Workspace
 

Methods in org.apache.abdera.ext.features with parameters of type Collection
static Features FeaturesHelper.addFeaturesElement(Collection collection)
           
static Feature FeaturesHelper.getFeature(Collection collection, String feature)
           
static Feature[] FeaturesHelper.getFeatures(Collection collection)
           
static Features FeaturesHelper.getFeaturesElement(Collection collection)
           
static Features FeaturesHelper.getFeaturesElement(Collection collection, boolean outofline)
           
static FeaturesHelper.Status FeaturesHelper.getFeatureStatus(Collection collection, String feature)
           
 boolean XPathSelector.select(Collection collection)
           
 boolean Selector.select(Collection collection)
           
 boolean AcceptSelector.select(Collection collection)
           
 boolean FeatureSelector.select(Collection collection)
           
 

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

Methods in org.apache.abdera.ext.rss that return Collection
 Collection RssFeed.getCollection()
           
 Collection RssSource.getCollection()
           
 

Methods in org.apache.abdera.ext.rss with parameters of type Collection
<T extends Source>
T
RssFeed.setCollection(Collection collection)
           
<T extends Source>
T
RssSource.setCollection(Collection collection)
           
 

Uses of Collection in org.apache.abdera.factory
 

Methods in org.apache.abdera.factory that return Collection
 Collection Factory.newCollection()
          Create a new Collection element.
 Collection Factory.newCollection(Element parent)
          Create a new Collection element as a child of the given Element.
 

Uses of Collection in org.apache.abdera.model
 

Methods in org.apache.abdera.model that return Collection
 Collection Collection.addAccepts(String... mediaRanges)
          Adds new accept elements to the collection
 Collection Collection.addAccepts(String mediaRange)
          Adds a new accept element to the collection
 Collection Collection.addAcceptsEntry()
          Same as setAcceptsEntry except the existing accepts are not discarded
 Collection Collection.addCategories(Categories categories)
          Add the app:categories element to the collection
 Collection Workspace.addCollection(String title, String href)
          Adds an individual collection to this workspace
 Collection Workspace.addMultipartCollection(String title, String href)
          Adds a multipart collection to this workspace
 Collection Source.getCollection()
          Return an app:collection element associatd with this atom:source.
 Collection Workspace.getCollection(String title)
          Returns the named collection
 Collection Service.getCollection(String workspace, String collection)
          Returns the named collection
 Collection Workspace.getCollectionThatAccepts(javax.activation.MimeType... type)
          Returns a collection that accepts the specified media types
 Collection Service.getCollectionThatAccepts(javax.activation.MimeType... type)
          Returns a collection that accepts the specified media types
 Collection Workspace.getCollectionThatAccepts(String... type)
          Returns a collection that accepts the specified media types
 Collection Service.getCollectionThatAccepts(String... type)
          Returns a collection that accepts the specified media types
 Collection Collection.setAccept(String... mediaRanges)
          Set the listing of media-ranges allowed for this collection.
 Collection Collection.setAcceptsEntry()
          Sets the appropriate accept element to indicate that entries are accepted (equivalent to calling setAccept("application/atom+xml;type=entry");)
 Collection Collection.setAcceptsNothing()
          Sets the collection so that nothing is accepted (equivalent to calling setAccept(""); )
 Collection Collection.setHref(String href)
          Set the value of the href attribute
 

Methods in org.apache.abdera.model that return types with arguments of type Collection
 List<Collection> Workspace.getCollections()
          Returns the full set of collections in this workspace
 List<Collection> Workspace.getCollectionsThatAccept(javax.activation.MimeType... type)
          Returns collections that accept the specified media types
 List<Collection> Service.getCollectionsThatAccept(javax.activation.MimeType... type)
          Returns collections that accept the specified media types
 List<Collection> Workspace.getCollectionsThatAccept(String... type)
          Returns collections that accept the specified media types
 List<Collection> Service.getCollectionsThatAccept(String... type)
          Returns collections that accept the specified media types
 

Methods in org.apache.abdera.model with parameters of type Collection
 Workspace Workspace.addCollection(Collection collection)
          Adds an individual collection to this workspace
<T extends Source>
T
Source.setCollection(Collection collection)
          Set the app:collection element
 

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

Classes in org.apache.abdera.parser.stax that implement Collection
 class FOMCollection
           
 class FOMMultipartCollection
           
 

Methods in org.apache.abdera.parser.stax that return Collection
 Collection FOMMultipartCollection.addAccepts(Map<String,String> mediaRanges)
           
 Collection FOMCollection.addAccepts(String... mediaRanges)
           
 Collection FOMCollection.addAccepts(String mediaRange)
           
 Collection FOMMultipartCollection.addAccepts(String mediaRange, String alternate)
           
 Collection FOMCollection.addAcceptsEntry()
           
 Collection FOMCollection.addCategories(Categories categories)
           
 Collection FOMWorkspace.addCollection(String title, String href)
           
 Collection FOMWorkspace.addMultipartCollection(String title, String href)
           
 Collection FOMSource.getCollection()
           
 Collection FOMWorkspace.getCollection(String title)
           
 Collection FOMService.getCollection(String workspace, String collection)
           
 Collection FOMService.getCollectionThatAccepts(javax.activation.MimeType... types)
           
 Collection FOMWorkspace.getCollectionThatAccepts(javax.activation.MimeType... types)
           
 Collection FOMService.getCollectionThatAccepts(String... types)
           
 Collection FOMWorkspace.getCollectionThatAccepts(String... types)
           
 Collection FOMFactory.newCollection()
           
 Collection FOMFactory.newCollection(Element parent)
           
 Collection FOMFactory.newCollection(QName qname, org.apache.axiom.om.OMContainer parent, org.apache.axiom.om.OMXMLParserWrapper parserWrapper)
           
 Collection FOMFactory.newMultipartCollection(Element parent)
           
 Collection FOMMultipartCollection.setAccept(Map<String,String> mediaRanges)
           
 Collection FOMCollection.setAccept(String... mediaRanges)
           
 Collection FOMCollection.setAccept(String mediaRange)
           
 Collection FOMMultipartCollection.setAccept(String mediaRange, String alternate)
           
 Collection FOMCollection.setAcceptsEntry()
           
 Collection FOMCollection.setAcceptsNothing()
           
 Collection FOMCollection.setHref(String href)
           
 

Methods in org.apache.abdera.parser.stax that return types with arguments of type Collection
 List<Collection> FOMWorkspace.getCollections()
           
 List<Collection> FOMService.getCollectionsThatAccept(javax.activation.MimeType... types)
           
 List<Collection> FOMWorkspace.getCollectionsThatAccept(javax.activation.MimeType... types)
           
 List<Collection> FOMService.getCollectionsThatAccept(String... types)
           
 List<Collection> FOMWorkspace.getCollectionsThatAccept(String... types)
           
 

Methods in org.apache.abdera.parser.stax with parameters of type Collection
 Workspace FOMWorkspace.addCollection(Collection collection)
           
<T extends Source>
T
FOMSource.setCollection(Collection collection)
           
 

Uses of Collection in org.apache.abdera.protocol.server
 

Methods in org.apache.abdera.protocol.server that return Collection
 Collection CollectionInfo.asCollectionElement(RequestContext request)
          Converts this to an instance of the FOM Collection interface
 

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

Methods in org.apache.abdera.protocol.server.impl that return Collection
 Collection AbstractCollectionAdapter.asCollectionElement(RequestContext request)
           
 Collection SimpleCollectionInfo.asCollectionElement(RequestContext request)
           
 

Uses of Collection in org.apache.abdera.protocol.server.provider.managed
 

Methods in org.apache.abdera.protocol.server.provider.managed that return Collection
 Collection FeedConfiguration.asCollectionElement(RequestContext request)
           
 



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