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

Packages that use Person
org.apache.abdera.examples.appserver.employee   
org.apache.abdera.ext.opensearch.server.impl   
org.apache.abdera.ext.rss   
org.apache.abdera.ext.tombstones   
org.apache.abdera.factory   
org.apache.abdera.model   
org.apache.abdera.parser.stax   
org.apache.abdera.protocol.server.adapters.jcr   
org.apache.abdera.protocol.server.impl   
 

Uses of Person in org.apache.abdera.examples.appserver.employee
 

Methods in org.apache.abdera.examples.appserver.employee that return types with arguments of type Person
 List<Person> EmployeeCollectionAdapter.getAuthors(Employee entry, RequestContext request)
           
 

Method parameters in org.apache.abdera.examples.appserver.employee with type arguments of type Person
 Employee EmployeeCollectionAdapter.postEntry(String title, IRI id, String summary, Date updated, List<Person> authors, Content content, RequestContext request)
           
 void EmployeeCollectionAdapter.putEntry(Employee employee, String title, Date updated, List<Person> authors, String summary, Content content, RequestContext request)
           
 

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

Methods in org.apache.abdera.ext.opensearch.server.impl that return Person
protected abstract  Person AbstractOpenSearchUrlAdapter.getOpenSearchFeedAuthor(RequestContext request)
          Get the author of the feed containing this search results.
 

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

Classes in org.apache.abdera.ext.rss that implement Person
 class RssPerson
           
 

Methods in org.apache.abdera.ext.rss that return Person
 Person RssItem.addAuthor(String name)
           
 Person RssChannel.addAuthor(String name)
           
 Person RssFeed.addAuthor(String name)
           
 Person RssSource.addAuthor(String name)
           
 Person RssItem.addAuthor(String name, String email, String uri)
           
 Person RssChannel.addAuthor(String name, String email, String iri)
           
 Person RssFeed.addAuthor(String name, String email, String iri)
           
 Person RssSource.addAuthor(String name, String email, String iri)
           
 Person RssItem.addContributor(String name)
           
 Person RssFeed.addContributor(String name)
           
 Person RssSource.addContributor(String name)
           
 Person RssItem.addContributor(String name, String email, String uri)
           
 Person RssFeed.addContributor(String name, String email, String iri)
           
 Person RssSource.addContributor(String name, String email, String iri)
           
 Person RssItem.getAuthor()
           
 Person RssChannel.getAuthor()
           
 Person RssFeed.getAuthor()
           
 Person RssSource.getAuthor()
           
 Person RssPerson.setEmailElement(Element element)
           
 Person RssPerson.setNameElement(Element element)
           
 Person RssPerson.setUriElement(IRIElement element)
           
 

Methods in org.apache.abdera.ext.rss that return types with arguments of type Person
 List<Person> RssItem.getAuthors()
           
 List<Person> RssChannel.getAuthors()
           
 List<Person> RssFeed.getAuthors()
           
 List<Person> RssSource.getAuthors()
           
 List<Person> RssItem.getContributors()
           
 List<Person> RssChannel.getContributors()
           
 List<Person> RssFeed.getContributors()
           
 List<Person> RssSource.getContributors()
           
 

Methods in org.apache.abdera.ext.rss with parameters of type Person
 Entry RssItem.addAuthor(Person person)
           
 void RssChannel.addAuthor(Person person)
           
<T extends Source>
T
RssFeed.addAuthor(Person person)
           
<T extends Source>
T
RssSource.addAuthor(Person person)
           
 Entry RssItem.addContributor(Person person)
           
<T extends Source>
T
RssFeed.addContributor(Person person)
           
<T extends Source>
T
RssSource.addContributor(Person person)
           
 

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

Methods in org.apache.abdera.ext.tombstones that return Person
 Person Tombstone.getBy()
           
 Person Tombstone.setBy(String name)
           
 Person Tombstone.setBy(String name, String email, String uri)
           
 

Methods in org.apache.abdera.ext.tombstones with parameters of type Person
 Tombstone Tombstone.setBy(Person person)
           
 

Uses of Person in org.apache.abdera.factory
 

Methods in org.apache.abdera.factory that return Person
 Person Factory.newAuthor()
          Create a new author element.
 Person Factory.newAuthor(Element parent)
          Create a new author element as a child of the given Element.
 Person Factory.newContributor()
          Create a new contributor element.
 Person Factory.newContributor(Element parent)
          Create a new contributor element as a child of the given Element.
 Person Factory.newPerson(QName qname, Element parent)
          Create a new Person element with the given QName as a child of the given Element.
 

Uses of Person in org.apache.abdera.model
 

Classes in org.apache.abdera.model that implement Person
 class PersonWrapper
          ElementWrapper implementation that implements the Person interface.
 

Methods in org.apache.abdera.model that return Person
 Person Entry.addAuthor(String name)
          Adds an author
 Person Source.addAuthor(String name)
          Adds an author
 Person Entry.addAuthor(String name, String email, String uri)
          Adds an author
 Person Source.addAuthor(String name, String email, String iri)
          Adds an author
 Person Entry.addContributor(String name)
          Adds a contributor
 Person Source.addContributor(String name)
          Adds a contributor
 Person Entry.addContributor(String name, String email, String uri)
          Adds an author
 Person Source.addContributor(String name, String email, String iri)
          Adds a contributor
 Person Entry.getAuthor()
          Returns the first author listed for the entry
 Person Source.getAuthor()
          Returns the first author listed for the entry
 Person PersonWrapper.setEmailElement(Element element)
           
 Person Person.setEmailElement(Element element)
          The "atom:email" element's content conveys an e-mail address associated with the person.
 Person PersonWrapper.setNameElement(Element element)
           
 Person Person.setNameElement(Element element)
          The "atom:name" element's content conveys a human-readable name for the person.
 Person PersonWrapper.setUriElement(IRIElement element)
           
 Person Person.setUriElement(IRIElement uri)
          The "atom:uri" element's content conveys an IRI associated with the person.
 

Methods in org.apache.abdera.model that return types with arguments of type Person
 List<Person> Entry.getAuthors()
          Returns the complete set of authors listed for the entry
 List<Person> Source.getAuthors()
          Returns the complete set of authors listed for the entry
 List<Person> Entry.getContributors()
          Lists the complete set of contributors for this entry
 List<Person> Source.getContributors()
          Lists the complete set of contributors for this entry
 

Methods in org.apache.abdera.model with parameters of type Person
 Entry Entry.addAuthor(Person person)
          Adds an individual author to the entry
<T extends Source>
T
Source.addAuthor(Person person)
          Adds an individual author to the entry
 Entry Entry.addContributor(Person person)
          Adds an individual contributor to this entry
<T extends Source>
T
Source.addContributor(Person person)
          Adds an individual contributor to this entry
 

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

Classes in org.apache.abdera.parser.stax that implement Person
 class FOMPerson
           
 

Methods in org.apache.abdera.parser.stax that return Person
 Person FOMEntry.addAuthor(String name)
           
 Person FOMSource.addAuthor(String name)
           
 Person FOMEntry.addAuthor(String name, String email, String uri)
           
 Person FOMSource.addAuthor(String name, String email, String uri)
           
 Person FOMEntry.addContributor(String name)
           
 Person FOMSource.addContributor(String name)
           
 Person FOMEntry.addContributor(String name, String email, String uri)
           
 Person FOMSource.addContributor(String name, String email, String uri)
           
 Person FOMEntry.getAuthor()
           
 Person FOMSource.getAuthor()
           
 Person FOMFactory.newAuthor()
           
 Person FOMFactory.newAuthor(Element parent)
           
 Person FOMFactory.newContributor()
           
 Person FOMFactory.newContributor(Element parent)
           
 Person FOMFactory.newPerson(QName qname, Element parent)
           
 Person FOMFactory.newPerson(QName qname, org.apache.axiom.om.OMContainer parent, org.apache.axiom.om.OMXMLParserWrapper parserWrapper)
           
 Person FOMPerson.setEmailElement(Element element)
           
 Person FOMPerson.setNameElement(Element element)
           
 Person FOMPerson.setUriElement(IRIElement uri)
           
 

Methods in org.apache.abdera.parser.stax that return types with arguments of type Person
 List<Person> FOMEntry.getAuthors()
           
 List<Person> FOMSource.getAuthors()
           
 List<Person> FOMEntry.getContributors()
           
 List<Person> FOMSource.getContributors()
           
 

Methods in org.apache.abdera.parser.stax with parameters of type Person
 Entry FOMEntry.addAuthor(Person person)
           
<T extends Source>
T
FOMSource.addAuthor(Person person)
           
 Entry FOMEntry.addContributor(Person person)
           
<T extends Source>
T
FOMSource.addContributor(Person person)
           
 

Uses of Person in org.apache.abdera.protocol.server.adapters.jcr
 

Methods in org.apache.abdera.protocol.server.adapters.jcr that return types with arguments of type Person
 List<Person> JcrCollectionAdapter.getAuthors(javax.jcr.Node entry, RequestContext request)
           
 

Method parameters in org.apache.abdera.protocol.server.adapters.jcr with type arguments of type Person
protected  javax.jcr.Node JcrCollectionAdapter.mapEntryToNode(javax.jcr.Node entry, String title, String summary, Date updated, List<Person> authors, Content content, javax.jcr.Session session)
           
 javax.jcr.Node JcrCollectionAdapter.postEntry(String title, IRI id, String summary, Date updated, List<Person> authors, Content content, RequestContext request)
           
protected  javax.jcr.Node JcrCollectionAdapter.postEntry(String title, String summary, Date updated, List<Person> authors, Content content, javax.jcr.Session session, javax.jcr.Node collectionNode, String resourceName, int num)
           
 void JcrCollectionAdapter.putEntry(javax.jcr.Node entry, String title, Date updated, List<Person> authors, String summary, Content content, RequestContext request)
           
 

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

Methods in org.apache.abdera.protocol.server.impl that return types with arguments of type Person
 List<Person> AbstractEntityCollectionAdapter.getAuthors(T entry, RequestContext request)
          Get the authors for an entry.
 

Method parameters in org.apache.abdera.protocol.server.impl with type arguments of type Person
abstract  T AbstractEntityCollectionAdapter.postEntry(String title, IRI id, String summary, Date updated, List<Person> authors, Content content, RequestContext request)
          Create a new entry
abstract  void AbstractEntityCollectionAdapter.putEntry(T entry, String title, Date updated, List<Person> authors, String summary, Content content, RequestContext request)
          Update an entry.
 



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