Uses of Class
hudson.Plugin
-
Packages that use Plugin Package Description hudson jenkins.model -
-
Uses of Plugin in hudson
Subclasses of Plugin in hudson Modifier and Type Class Description static class
Plugin.DummyImpl
Dummy instance ofPlugin
to be used when a plugin didn't supply one on its own.Methods in hudson that return Plugin Modifier and Type Method Description Plugin
PluginWrapper. getPlugin()
Gets the instance ofPlugin
contributed by this plugin.Plugin
PluginWrapper. getPluginOrFail()
Gets the instance ofPlugin
contributed by this plugin.Methods in hudson with parameters of type Plugin Modifier and Type Method Description void
PluginWrapper. setPlugin(Plugin plugin)
Method parameters in hudson with type arguments of type Plugin Modifier and Type Method Description PluginWrapper
PluginManager. getPlugin(Class<? extends Plugin> pluginClazz)
Get the plugin instance that implements a specific class, use to find your plugin singleton.List<PluginWrapper>
PluginManager. getPlugins(Class<? extends Plugin> pluginSuperclass)
Get the plugin instances that extend a specific class, use to find similar plugins. -
Uses of Plugin in jenkins.model
Methods in jenkins.model with type parameters of type Plugin Modifier and Type Method Description <P extends Plugin>
PJenkins. getPlugin(Class<P> clazz)
Gets the plugin object from its class.<P extends Plugin>
List<P>Jenkins. getPlugins(Class<P> clazz)
Gets the plugin objects from their super-class.Methods in jenkins.model that return Plugin Modifier and Type Method Description Plugin
Jenkins. getPlugin(String shortName)
Gets the plugin object from its short name.
-