Spring Social Facebook

org.springframework.social.facebook.api
Class Page

java.lang.Object
  extended by org.springframework.social.facebook.api.Page

public class Page
extends java.lang.Object

Model class representing a Facebook page. A Facebook page could represent any number of things, including businesses, government agencies, people, organizations, etc. A page may even represent a place that a user may check into using Facebook Places, if the page has location data. The data available for a page will vary depending on the category it belongs to and what data the page administrator has entered.

Author:
Craig Walls

Constructor Summary
Page(java.lang.String id, java.lang.String name, java.lang.String link, java.lang.String category)
           
 
Method Summary
 java.lang.String getAbout()
           
 java.lang.String getAffiliation()
           
 java.lang.String getCategory()
           
 int getCheckins()
           
 java.lang.String getCompanyOverview()
           
 java.lang.String getDescription()
           
 int getFanCount()
           
 java.lang.String getId()
           
 int getLikes()
           
 java.lang.String getLink()
           
 Location getLocation()
           
 java.lang.String getName()
           
 java.lang.String getPhone()
           
 java.lang.String getPicture()
          Deprecated. This method will be replaced in Spring 1.1.0 with a new version that returns an object with more details about the picture.
 java.lang.String getWebsite()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Page

public Page(java.lang.String id,
            java.lang.String name,
            java.lang.String link,
            java.lang.String category)
Method Detail

getId

public java.lang.String getId()

getName

public java.lang.String getName()

getLink

public java.lang.String getLink()

getCategory

public java.lang.String getCategory()

getDescription

public java.lang.String getDescription()

getAbout

public java.lang.String getAbout()

getLocation

public Location getLocation()

getWebsite

public java.lang.String getWebsite()

getPicture

@Deprecated
public java.lang.String getPicture()
Deprecated. This method will be replaced in Spring 1.1.0 with a new version that returns an object with more details about the picture.

The page's picture.


getPhone

public java.lang.String getPhone()

getAffiliation

public java.lang.String getAffiliation()

getCompanyOverview

public java.lang.String getCompanyOverview()

getFanCount

public int getFanCount()

getLikes

public int getLikes()

getCheckins

public int getCheckins()

Spring Social Facebook