Class MuteWebUtil
- java.lang.Object
-
- jetbrains.buildServer.web.functions.MuteWebUtil
-
public abstract class MuteWebUtil extends Object
- Author:
- Maxim Podkolzine (maxim.podkolzine@jetbrains.com)
-
-
Constructor Summary
Constructors Constructor Description MuteWebUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanshouldShowCurrentMuteInfo(CurrentMuteInfo currentMuteInfo, Boolean ignoreMuteScope, SBuildType currentScope)Returns true if current mute info should be shown on a page with specified build type scope.static booleanshouldShowCurrentMuteInfo(BuildProblem problem, Boolean ignoreMuteScope, SBuildType currentScope)Returns true if current mute info from the specific problem should be shown on a page with specified build type scope.
-
-
-
Method Detail
-
shouldShowCurrentMuteInfo
public static boolean shouldShowCurrentMuteInfo(@Nullable CurrentMuteInfo currentMuteInfo, @Nullable Boolean ignoreMuteScope, @Nullable SBuildType currentScope)Returns true if current mute info should be shown on a page with specified build type scope.- Parameters:
currentMuteInfo- current mute infoignoreMuteScope- if specified the scope will not be taken into accountcurrentScope- current scope- Returns:
- see above
-
shouldShowCurrentMuteInfo
public static boolean shouldShowCurrentMuteInfo(@Nullable BuildProblem problem, @Nullable Boolean ignoreMuteScope, @Nullable SBuildType currentScope)Returns true if current mute info from the specific problem should be shown on a page with specified build type scope.- Parameters:
problem- - build problemignoreMuteScope- if specified the scope will not be taken into accountcurrentScope- current scope- Returns:
- see above
- See Also:
shouldShowCurrentMuteInfo(CurrentMuteInfo, Boolean, SBuildType)
-
-