use of org.qii.weiciyuan.dao.shorturl.ShareShortUrlTimeLineDao in project weiciyuan by qii.
the class BrowserShareMsgLoader method loadData.
public ShareListBean loadData() throws WeiboException {
ShareShortUrlTimeLineDao dao = new ShareShortUrlTimeLineDao(token, url);
dao.setMaxId(maxId);
ShareListBean result = null;
lock.lock();
try {
result = dao.getGSONMsgList();
} finally {
lock.unlock();
}
return result;
}
Aggregations