Examples of maxLiveDateOfClosedIssues()


Examples of org.sonar.core.purge.PurgeConfiguration.maxLiveDateOfClosedIssues()

    Settings settings = projectSettingsFactory.newProjectSettings(projectId, session);
    PurgeConfiguration purgeConfiguration = newDefaultPurgeConfiguration(projectId, settings);

    purgeTask.purge(session, purgeConfiguration, settings);

    if (purgeConfiguration.maxLiveDateOfClosedIssues() != null) {
      issueIndex.deleteClosedIssuesOfProjectBefore(project.uuid(), purgeConfiguration.maxLiveDateOfClosedIssues());
    }
  }

  @Override
View Full Code Here

Examples of org.sonar.core.purge.PurgeConfiguration.maxLiveDateOfClosedIssues()

    PurgeConfiguration purgeConfiguration = newDefaultPurgeConfiguration(projectId, settings);

    purgeTask.purge(session, purgeConfiguration, settings);

    if (purgeConfiguration.maxLiveDateOfClosedIssues() != null) {
      issueIndex.deleteClosedIssuesOfProjectBefore(project.uuid(), purgeConfiguration.maxLiveDateOfClosedIssues());
    }
  }

  @Override
  public String getDescription() {
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.