org.springframework.social.facebook.web
Class RealTimeUpdate

java.lang.Object
  extended by org.springframework.social.facebook.web.RealTimeUpdate

public class RealTimeUpdate
extends Object

Represents a real-time update from Facebook. Note that per Facebook's Real-Time Update API, only essential information on what changed is given; no actual changed data is provided.


Nested Class Summary
static class RealTimeUpdate.Entry
          Represents a single change entry.
 
Constructor Summary
RealTimeUpdate()
           
 
Method Summary
 List<RealTimeUpdate.Entry> getEntries()
          Entries that changed.
 String getObject()
          The object type that changed (e.g., "user", "page", etc).
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RealTimeUpdate

public RealTimeUpdate()
Method Detail

getObject

public String getObject()
The object type that changed (e.g., "user", "page", etc).


getEntries

public List<RealTimeUpdate.Entry> getEntries()
Entries that changed. Multiple change entries for multiple objects may be given in a single update.