Interface PullRequestRetrievalProblems
-
public interface PullRequestRetrievalProblems
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
clearProblems(BuildTypeSettings buildType, String featureId)
void
markSuccess(BuildTypeSettings buildType, String featureId)
void
reportProblem(String featureId, BuildTypeSettings buildType, String message, Throwable exception, Logger logger, boolean clearProblems)
Reports system problem and logs a warning.void
reportProblem(BuildTypeSettings buildType, String message, Throwable exception, Logger logger, boolean clearProblems)
Deprecated.
-
-
-
Method Detail
-
reportProblem
@Deprecated void reportProblem(@NotNull BuildTypeSettings buildType, @NotNull String message, @Nullable Throwable exception, @NotNull Logger logger, boolean clearProblems)
Deprecated.
-
reportProblem
void reportProblem(@Nullable String featureId, @NotNull BuildTypeSettings buildType, @NotNull String message, @Nullable Throwable exception, @NotNull Logger logger, boolean clearProblems)
Reports system problem and logs a warning. If the featureId is null, then only logging is done
-
clearProblems
void clearProblems(@NotNull BuildTypeSettings buildType, @NotNull String featureId)
-
markSuccess
void markSuccess(@NotNull BuildTypeSettings buildType, @NotNull String featureId)
-
-