Uses of Class
hudson.model.Result

Packages that use Result
hudson.cli Server-side CLI commands for Hudson. 
hudson.matrix Matrix project 
hudson.maven Maven support. 
hudson.maven.reporters   
hudson.model Core object model that are bound to URLs via stapler, rooted at Hudson
hudson.tasks Built-in Builders and Publishers that perform the actual heavy-lifting of a build. 
hudson.tasks.test Defines contracts that need to be implemented by a test reporting action (such as the built-in JUnit one). 
org.jvnet.hudson.test Test harness for Jenkins and its plugins. 
 

Uses of Result in hudson.cli
 

Fields in hudson.cli declared as Result
 Result SetBuildResultCommand.result
           
 

Uses of Result in hudson.matrix
 

Methods in hudson.matrix that return Result
protected  Result MatrixBuild.MatrixBuildExecution.doRun(BuildListener listener)
           
 Result DefaultMatrixExecutionStrategyImpl.getTouchStoneResultCondition()
           
 Result MatrixProject.getTouchStoneResultCondition()
          Deprecated. as of 1.456 Use DefaultMatrixExecutionStrategyImpl.getTouchStoneResultCondition(). This method tries to emulate the previous behavior the best it can, but will return null if the current MatrixExecutionStrategy is not the default one.
 Result DefaultMatrixExecutionStrategyImpl.run(MatrixBuild.MatrixBuildExecution execution)
           
 Result MatrixExecutionStrategy.run(MatrixBuild.MatrixBuildExecution execution)
           
 Result MatrixExecutionStrategy.run(MatrixBuild build, List<MatrixAggregator> aggregators, BuildListener listener)
          Deprecated. Override #run(MatrixBuildExecution)
 

Methods in hudson.matrix with parameters of type Result
 void DefaultMatrixExecutionStrategyImpl.setTouchStoneResultCondition(Result touchStoneResultCondition)
           
 void MatrixProject.setTouchStoneResultCondition(Result touchStoneResultCondition)
          Deprecated. as of 1.456 Use DefaultMatrixExecutionStrategyImpl.setTouchStoneResultCondition(Result). This method tries to emulate the previous behavior the best it can, but will fall back to no-op if the current MatrixExecutionStrategy is not the default one.
 

Constructors in hudson.matrix with parameters of type Result
DefaultMatrixExecutionStrategyImpl(Boolean runSequentially, boolean hasTouchStoneCombinationFilter, String touchStoneCombinationFilter, Result touchStoneResultCondition, MatrixConfigurationSorter sorter)
           
DefaultMatrixExecutionStrategyImpl(boolean runSequentially, String touchStoneCombinationFilter, Result touchStoneResultCondition, MatrixConfigurationSorter sorter)
           
 

Uses of Result in hudson.maven
 

Methods in hudson.maven that return Result
 Result MavenBuilder.call()
          This code is executed inside the maven jail process.
 Result Maven3Builder.call()
           
 Result MavenModuleSetBuild.getResult()
          Displays the combined status of all modules.
 Result MavenModuleSet.getRunPostStepsIfResult()
          MavenModuleSet.postbuilders are run if the result is better or equal to this threshold.
protected  Result RedeployPublisher.getTreshold()
           
protected  Result AbstractMavenBuilder.waitForAsynchronousExecutions()
          Waits until all asynchronous executions are finished.
 

Methods in hudson.maven with parameters of type Result
 void MavenBuildProxy.setResult(Result result)
           
 void MavenBuildProxy.Filter.setResult(Result result)
           
 void MavenModuleSet.setRunPostStepsIfResult(Result v)
           
 

Uses of Result in hudson.maven.reporters
 

Methods in hudson.maven.reporters that return Result
 Result MavenAbstractArtifactRecord.Record.getResult()
          Result of the deployment.
 

Uses of Result in hudson.model
 

Fields in hudson.model declared as Result
static Result Result.ABORTED
          The build was manually aborted.
static Result Result.FAILURE
          The build had a fatal error.
static Result Result.NOT_BUILT
          The module was not built.
protected  Result Run.result
          The build result.
static Result Result.SUCCESS
          The build had no errors.
static Result Result.UNSTABLE
          The build had some errors but they were not fatal.
 

Methods in hudson.model that return Result
 Result Executor.abortResult()
           
 Result Result.combine(Result that)
          Combines two Results and returns the worse one.
protected abstract  Result AbstractBuild.AbstractBuildExecution.doRun(BuildListener listener)
          The portion of a build that is specific to a subclass of AbstractBuild goes here.
protected  Result Build.BuildExecution.doRun(BuildListener listener)
           
static Result Result.fromString(String s)
           
 Result Run.getResult()
          Returns the build result.
 Result AbstractBuild.AbstractBuildExecution.run(BuildListener listener)
           
abstract  Result Run.RunExecution.run(BuildListener listener)
          Performs the main build and returns the status code.
 

Methods in hudson.model with parameters of type Result
 Result Result.combine(Result that)
          Combines two Results and returns the worse one.
 void StreamBuildListener.finished(Result result)
           
 void BuildListener.finished(Result result)
          Called when a build is finished.
 List<RunT> Job.getLastBuildsOverThreshold(int numberOfBuilds, Result threshold)
          Returns the last 'numberOfBuilds' builds with a build result >= 'threshold'
 List<RunT> Run.getPreviousBuildsOverThreshold(int numberOfBuilds, Result threshold)
          Returns the last 'numberOfBuilds' builds with a build result >= 'threshold'.
 void Executor.interrupt(Result result)
          Interrupt the execution, but instead of marking the build as aborted, mark it as specified result.
 void Executor.interrupt(Result result, CauseOfInterruption... causes)
          Interrupt the execution.
 boolean Result.isBetterOrEqualTo(Result that)
           
 boolean Result.isBetterThan(Result that)
           
 boolean Result.isWorseOrEqualTo(Result that)
           
 boolean Result.isWorseThan(Result that)
           
 void Run.setResult(Result r)
           
 

Constructor parameters in hudson.model with type arguments of type Result
Result.OptionHandlerImpl(org.kohsuke.args4j.CmdLineParser parser, org.kohsuke.args4j.OptionDef option, org.kohsuke.args4j.spi.Setter<? super Result> setter)
           
 

Uses of Result in hudson.tasks
 

Methods in hudson.tasks that return Result
 Result BuildTrigger.getThreshold()
           
 

Constructors in hudson.tasks with parameters of type Result
BuildTrigger(Collection<? extends AbstractProject> childProjects, Result threshold)
           
BuildTrigger(List<AbstractProject> childProjects, Result threshold)
           
BuildTrigger(String childProjects, Result threshold)
           
 

Uses of Result in hudson.tasks.test
 

Methods in hudson.tasks.test that return Result
 Result TestResult.getBuildResult()
          Mark a build as unstable if there are failures.
 

Uses of Result in org.jvnet.hudson.test
 

Fields in org.jvnet.hudson.test declared as Result
 Result JenkinsRule.TestBuildWrapper.buildResultInTearDown
           
 Result HudsonTestCase.TestBuildWrapper.buildResultInTearDown
           
 Result MockBuilder.result
           
 

Methods in org.jvnet.hudson.test with parameters of type Result
<R extends Run>
R
JenkinsRule.assertBuildStatus(Result status, R r)
          Asserts that the outcome of the build is a specific outcome.
<R extends Run>
R
HudsonTestCase.assertBuildStatus(Result status, R r)
          Asserts that the outcome of the build is a specific outcome.
 

Constructors in org.jvnet.hudson.test with parameters of type Result
MockBuilder(Result result)
           
 



Copyright © 2004-2013. All Rights Reserved.