Package hudson.cli
Class AbstractBuildRangeCommand
- java.lang.Object
-
- hudson.cli.CLICommand
-
- hudson.cli.AbstractBuildRangeCommand
-
- All Implemented Interfaces:
ExtensionPoint
,Cloneable
@Deprecated public abstract class AbstractBuildRangeCommand extends CLICommand
Deprecated.rather useRunRangeCommand
CLICommand
that acts on a series ofAbstractBuild
s.- Author:
- Kohsuke Kawaguchi
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Field Summary
Fields Modifier and Type Field Description AbstractProject<?,?>
job
Deprecated.String
range
Deprecated.
-
Constructor Summary
Constructors Constructor Description AbstractBuildRangeCommand()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected abstract int
act(List<AbstractBuild<?,?>> builds)
Deprecated.protected int
run()
Deprecated.Executes the command, and return the exit code.-
Methods inherited from class hudson.cli.CLICommand
all, checkChannel, clone, createClone, getClientCharset, getClientEnvironmentVariable, getClientSystemProperty, getCmdLineParser, getCurrent, getLongDescription, getName, getShortDescription, getSingleLineSummary, getTransportAuthentication, getTransportAuthentication2, getUsage, main, printUsage, printUsageSummary, registerOptionHandlers, setClientCharset, setTransportAuth, setTransportAuth2
-
-
-
-
Field Detail
-
job
public AbstractProject<?,?> job
Deprecated.
-
range
public String range
Deprecated.
-
-
Method Detail
-
run
protected int run() throws Exception
Deprecated.Description copied from class:CLICommand
Executes the command, and return the exit code.This is an internal contract between
CLICommand
and its subtype. To execute CLI method from outside, useCLICommand.main(List, Locale, InputStream, PrintStream, PrintStream)
- Specified by:
run
in classCLICommand
- Returns:
- 0 to indicate a success, otherwise a custom error code.
Error codes 1-15 shouldn;t be used in
CLICommand.run()
as a custom error code. - Throws:
Exception
- If a further unspecified exception is thrown; means: Unknown and/or unexpected issue occurredorg.kohsuke.args4j.CmdLineException
- If a wrong parameter specified, input value can't be decoded etc.IllegalArgumentException
- If the execution can't continue due to wrong input parameter (job doesn't exist etc.)IllegalStateException
- If the execution can't continue due to an incorrect state of Jenkins, job, build etc.AbortException
- If the execution can't continue due to an other (rare, but foreseeable) issueorg.springframework.security.access.AccessDeniedException
- If the caller doesn't have sufficient rights for requested actionorg.springframework.security.authentication.BadCredentialsException
- If bad credentials were provided to CLI
-
act
protected abstract int act(List<AbstractBuild<?,?>> builds) throws IOException
Deprecated.- Throws:
IOException
-
-