Search in sources :

Example 1 with RepostsTimeLineByIdDao

use of org.qii.weiciyuan.dao.timeline.RepostsTimeLineByIdDao in project weiciyuan by qii.

the class RepostByIdMsgLoader method loadData.

public RepostListBean loadData() throws WeiboException {
    RepostsTimeLineByIdDao dao = new RepostsTimeLineByIdDao(token, id);
    dao.setSince_id(sinceId);
    dao.setMax_id(maxId);
    RepostListBean result = null;
    lock.lock();
    try {
        result = dao.getGSONMsgList();
    } finally {
        lock.unlock();
    }
    return result;
}
Also used : RepostListBean(org.qii.weiciyuan.bean.RepostListBean) RepostsTimeLineByIdDao(org.qii.weiciyuan.dao.timeline.RepostsTimeLineByIdDao)

Aggregations

RepostListBean (org.qii.weiciyuan.bean.RepostListBean)1 RepostsTimeLineByIdDao (org.qii.weiciyuan.dao.timeline.RepostsTimeLineByIdDao)1