Package com.appspot.piment.dao

Examples of com.appspot.piment.dao.CommentMapDao


  this.tqqRobotWeiboApi = new TqqWeiboApi(this.configMap);
  this.tqqTempWeiboApi = new TqqWeiboApi(this.configMap);
  this.tqqWeiboApi = new TqqWeiboApi(this.configMap);
  this.sinaWeiboApi = new SinaWeiboApi(this.configMap);
  this.weiboMapDao = new WeiboMapDao();
  this.commentMapDao = new CommentMapDao();
  this.userMapDao = new UserMapDao();
  this.authTokenDao = new AuthTokenDao();
  }
View Full Code Here


    // メッセージ履歴の掃除
    WeiboMapDao weiboMapDao = new WeiboMapDao();
    weiboMapDao.removeOlder(allUserMap, Integer.valueOf(this.configMap.get("app.piment.weibomap.lifetime")));

    // コメント履歴の掃除
    CommentMapDao commentMapDao = new CommentMapDao();
    commentMapDao.removeOlder(allUserMap, Integer.valueOf(this.configMap.get("app.piment.weibomap.lifetime")));

    // ジョブ状態変更
    job.setStatus(JobStatus.SUCCESSED);

  } catch (Exception e) {
View Full Code Here

  this.sinaRobotWeiboApi = new SinaWeiboApi(this.configMap);
  this.sinaTempWeiboApi = new SinaWeiboApi(this.configMap);
  this.sinaWeiboApi = new SinaWeiboApi(this.configMap);
  this.tqqWeiboApi = new TqqWeiboApi(this.configMap);
  this.weiboMapDao = new WeiboMapDao();
  this.commentMapDao = new CommentMapDao();
  this.userMapDao = new UserMapDao();
  this.authTokenDao = new AuthTokenDao();
  }
View Full Code Here

TOP

Related Classes of com.appspot.piment.dao.CommentMapDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.