Uses of Interface
org.blojsom.blog.Pingback

Packages that use Pingback
org.blojsom.blog Defines the classes and interfaces for the blojsom artifacts  
org.blojsom.blog.database Defines the classes and interfaces for the blojsom database artifacts  
org.blojsom.extension.xmlrpc.handler Defines the classes and interfaces for blojsom XML-RPC handlers  
org.blojsom.fetcher Defines the classes and interfaces for blojsom fetchers  
org.blojsom.fetcher.database Defines the classes and interfaces for the blojsom database fetcher  
org.blojsom.plugin.pingback.event Defines the classes and interfaces for the blojsom pingback plugin events  
 

Uses of Pingback in org.blojsom.blog
 

Methods in org.blojsom.blog that return Pingback
 Pingback[] Entry.getPingbacksAsArray()
          Get the pingbacks as an array of Pingbacks objects
 

Uses of Pingback in org.blojsom.blog.database
 

Classes in org.blojsom.blog.database that implement Pingback
 class DatabasePingback
          DatabasePingback
 

Methods in org.blojsom.blog.database that return Pingback
 Pingback[] DatabaseEntry.getPingbacksAsArray()
          Get the pingbacks as an array of Pingbacks objects
 

Uses of Pingback in org.blojsom.extension.xmlrpc.handler
 

Methods in org.blojsom.extension.xmlrpc.handler with parameters of type Pingback
protected  java.lang.Integer PingbackHandler.addPingback(java.lang.String title, java.lang.String excerpt, java.lang.String url, java.lang.String blogName, java.util.Map pingbackMetaData, Pingback pingback)
          Add a pingback for a given blog ID
 

Uses of Pingback in org.blojsom.fetcher
 

Methods in org.blojsom.fetcher that return Pingback
 Pingback Fetcher.newPingback()
          Return a new Pingback instance
 Pingback Fetcher.loadPingback(Blog blog, java.lang.String sourceURI, java.lang.String targetURI)
          Load a pingback given the source URI and target URI
 

Methods in org.blojsom.fetcher with parameters of type Pingback
 void Fetcher.savePingback(Blog blog, Pingback pingback)
          Save a given Pingback
 void Fetcher.loadPingback(Blog blog, Pingback pingback)
          Load a given Pingback
 void Fetcher.deletePingback(Blog blog, Pingback pingback)
          Delete a given Pingback
 

Uses of Pingback in org.blojsom.fetcher.database
 

Methods in org.blojsom.fetcher.database that return Pingback
 Pingback DatabaseFetcher.newPingback()
          Return a new Pingback instance
 Pingback DatabaseFetcher.loadPingback(Blog blog, java.lang.String sourceURI, java.lang.String targetURI)
          Load a pingback given the source URI and target URI
 

Methods in org.blojsom.fetcher.database with parameters of type Pingback
 void DatabaseFetcher.savePingback(Blog blog, Pingback pingback)
          Save a given Pingback
 void DatabaseFetcher.loadPingback(Blog blog, Pingback pingback)
          Load a given Pingback
 void DatabaseFetcher.deletePingback(Blog blog, Pingback pingback)
          Delete a given Pingback
 

Uses of Pingback in org.blojsom.plugin.pingback.event
 

Fields in org.blojsom.plugin.pingback.event declared as Pingback
protected  Pingback PingbackEvent._pingback
           
 

Methods in org.blojsom.plugin.pingback.event that return Pingback
 Pingback PingbackEvent.getPingback()
          Retrieve the Pingback associated with the event
 

Constructors in org.blojsom.plugin.pingback.event with parameters of type Pingback
PingbackUnmarkedSpamEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating a Pingback has been unmarked as spam in the system.
PingbackUnapprovedEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating a Pingback has been unapproved in the system.
PingbackMarkedSpamEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating a Pingback has been marked as spam in the system.
PingbackEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating something happened with a Pingback in the system.
PingbackDeletedEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating a Pingback has been deleted from the system.
PingbackApprovedEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating a Pingback has been approved in the system.
PingbackAddedEvent(java.lang.Object source, java.util.Date timestamp, Pingback pingback, Blog blog)
          Create a new event indicating a Pingback has been added to the system.