Package hudson.cli
Class EnablePluginCommand
java.lang.Object
hudson.cli.CLICommand
hudson.cli.EnablePluginCommand
- All Implemented Interfaces:
- ExtensionPoint,- Cloneable
Enables one or more installed plugins. The listed plugins must already be installed along with its dependencies.
 Any listed plugin with disabled dependencies will have its dependencies enabled transitively. Note that enabling an
 already enabled plugin does nothing.
- Since:
- 2.136
- 
Nested Class SummaryNested classes/interfaces inherited from interface hudson.ExtensionPointExtensionPoint.LegacyInstancesAreScopedToHudson
- 
Field SummaryFields inherited from class hudson.cli.CLICommandALLOW_AT_SYNTAX, channel, locale, stderr, stdin, stdout
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionGets the quick summary of what this command does.protected intrun()Executes the command, and return the exit code.Methods inherited from class hudson.cli.CLICommandall, checkChannel, clone, createClone, getClientCharset, getClientEnvironmentVariable, getClientSystemProperty, getCmdLineParser, getCurrent, getLongDescription, getName, getSingleLineSummary, getTransportAuthentication, getTransportAuthentication2, getUsage, handleException, main, printUsage, printUsageSummary, setClientCharset, setTransportAuth, setTransportAuth2
- 
Constructor Details- 
EnablePluginCommandpublic EnablePluginCommand()
 
- 
- 
Method Details- 
getShortDescriptionDescription copied from class:CLICommandGets the quick summary of what this command does. Used by the help command to generate the list of commands.- Specified by:
- getShortDescriptionin class- CLICommand
 
- 
runDescription copied from class:CLICommandExecutes the command, and return the exit code.This is an internal contract between CLICommandand its subtype. To execute CLI method from outside, useCLICommand.main(List, Locale, InputStream, PrintStream, PrintStream)- Specified by:
- runin class- CLICommand
- 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 occurred
 
 
-