Package org.sonar.server.computation.db

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

Related Classes of org.sonar.server.computation.db.AnalysisReportDao

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.