Package org.pac4j.oauth.profile.facebook
Class FacebookInfo
- java.lang.Object
-
- org.pac4j.oauth.profile.facebook.FacebookInfo
-
- All Implemented Interfaces:
Serializable
public final class FacebookInfo extends Object implements Serializable
This class represents a Facebook info (id + name + category + created_time).- Since:
- 1.1.0
- Author:
- Jerome Leleu
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FacebookInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCategory()DategetCreatedTime()StringgetId()StringgetName()voidsetCategory(String category)voidsetCreatedTime(Date createdTime)voidsetId(String id)voidsetName(String name)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getCategory
public String getCategory()
-
setCategory
public void setCategory(String category)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getCreatedTime
public Date getCreatedTime()
-
setCreatedTime
public void setCreatedTime(Date createdTime)
-
-