/**
* Gets the date at which the current session will expire or null if no session
* has been created.
*
* @return the date at which the current session will expire
*/
protected final Date getExpirationDate() {
if (sessionTracker != null) {
Session currentSession = sessionTracker.getOpenSession();
return (currentSession != null) ? currentSession.getExpirationDate() : null;
}
return null;
}
FacebookFragment.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:AndroidBackendlessChat
作者:
评论列表
文章目录