Package com.appspot.piment.dao

Examples of com.appspot.piment.dao.AuthTokenDao


  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


    job.setStatus(JobStatus.RUNNING);
    PMF.saveEntity(job);
    log.info("job's status:" + job);

    // トークン情報の削除
    AuthTokenDao authTokenDao = new AuthTokenDao();
    authTokenDao.clearTempToken(Integer.valueOf(this.configMap.get("app.piment.temptoken.lifetime")));

    UserMapDao userMapDao = new UserMapDao();
    List<UserMap> allUserMap = userMapDao.getAllUserMaps();

    // メッセージ履歴の掃除
View Full Code Here

  private TqqMessageSync tqqMessageSync = null;

  public JobServiceController() {
  super();

  this.authTokenDao = new AuthTokenDao();

  this.userMapDao = new UserMapDao();

  ConfigItemDao configItemDao = new ConfigItemDao();
  this.configMap = configItemDao.getValues();
View Full Code Here

  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.AuthTokenDao

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.