Examples of QualityProfileDto


Examples of org.sonar.core.qualityprofile.db.QualityProfileDto

    this.db = db;
    this.index = index;
  }

  void backup(String key, Writer writer) {
    QualityProfileDto profile;
    DbSession dbSession = db.openSession(false);
    try {
      profile = db.qualityProfileDao().getNonNullByKey(dbSession, key);
    } finally {
      dbSession.close();
    }
    List<ActiveRule> activeRules = index.get(ActiveRuleIndex.class).findByProfile(profile.getKey());
    writeXml(writer, profile, activeRules);
  }
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.