Examples of AnalysisReportDao


Examples of org.sonar.server.computation.db.AnalysisReportDao

  }

  @Override
  public void start() {
    DbSession session = dbClient.openSession(false);
    AnalysisReportDao dao = dbClient.analysisReportDao();

    try {
      if (serverUpgradeStatus.isUpgraded()) {
        dao.cleanWithTruncate(session);
      } else {
        dao.cleanWithUpdateAllToPendingStatus(session);
      }

      session.commit();
    } finally {
      MyBatis.closeQuietly(session);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.