Java Code Examples for hudson.tasks.BuildStepMonitor#NONE

The following examples show how to use hudson.tasks.BuildStepMonitor#NONE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TrueFalsePublisher.java    From jenkins-test-harness with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() { return BuildStepMonitor.NONE; }
 
Example 2
Source File: AWSCodeDeployPublisher.java    From aws-codedeploy-plugin with Apache License 2.0 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 3
Source File: SecretBuildWrapperTest.java    From credentials-binding-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 4
Source File: PackerPublisher.java    From packer-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 5
Source File: LambdaEventSourceBuildStep.java    From aws-lambda-jenkins-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 6
Source File: RSpecTestReportPublisher.java    From bootstraped-multi-test-results-report with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 7
Source File: TestNotifier.java    From jenkins-test-harness with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 8
Source File: MergeRequestNotifier.java    From gitlab-plugin with GNU General Public License v2.0 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 9
Source File: AWSCodePipelinePublisher.java    From aws-codepipeline-plugin-for-jenkins with Apache License 2.0 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 10
Source File: MattermostNotifier.java    From jenkins-mattermost-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
  return BuildStepMonitor.NONE;
}
 
Example 11
Source File: AppCenterRecorder.java    From appcenter-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 12
Source File: JiraExtPublisherStep.java    From jira-ext-plugin with Apache License 2.0 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService()
{
    return BuildStepMonitor.NONE;
}
 
Example 13
Source File: BitbucketBuildStatusNotifier.java    From bitbucket-build-status-notifier-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 14
Source File: GitHubPRAbstractPublisher.java    From github-integration-plugin with MIT License 4 votes vote down vote up
public final BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 15
Source File: AnsiblePlaybookBuilder.java    From ansible-plugin with Apache License 2.0 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 16
Source File: TrivialTestResultRecorder.java    From junit-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 17
Source File: SignArtifactPlugin.java    From jenkins-android-signing with Apache License 2.0 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 18
Source File: TelegramBotPublisher.java    From telegram-notifications-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 19
Source File: ZulipNotifier.java    From zulip-plugin with MIT License 4 votes vote down vote up
@Override
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}
 
Example 20
Source File: AggregatedTestResultPublisher.java    From junit-plugin with MIT License 4 votes vote down vote up
public BuildStepMonitor getRequiredMonitorService() {
    return BuildStepMonitor.NONE;
}