Package jenkins.model
Class GlobalConfigurationCategory
java.lang.Object
jenkins.model.GlobalConfigurationCategory
- All Implemented Interfaces:
ExtensionPoint
,ModelObject
- Direct Known Subclasses:
AppearanceCategory
,GlobalConfigurationCategory.Security
,GlobalConfigurationCategory.Unclassified
,ToolConfigurationCategory
public abstract class GlobalConfigurationCategory
extends Object
implements ExtensionPoint, ModelObject
Grouping of related
GlobalConfiguration
s.
To facilitate the separation of the global configuration into multiple pages, tabs, and so on,
GlobalConfiguration
s are classified into categories (such as "security", "tools", as well
as the catch all "unclassified".) Categories themselves are extensible — plugins may introduce
its own category as well, although that should only happen if you are creating a big enough subsystem.
The primary purpose of this is to enable future UIs to split the global configurations to smaller pieces that can be individually looked at and updated.
- Since:
- 1.494
- Author:
- Kohsuke Kawaguchi
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Security related configurations.static class
This category represents the catch-all I-dont-know-what-category-it-is instance, used for thoseGlobalConfiguration
s that don't really deserve/need a separate category.Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionall()
Returns all the registeredGlobalConfiguration
descriptors.static <T extends GlobalConfigurationCategory>
Tabstract String
One-line plain text message that explains what this category is about.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface hudson.model.ModelObject
getDisplayName
-
Constructor Details
-
GlobalConfigurationCategory
public GlobalConfigurationCategory()
-
-
Method Details
-
getShortDescription
One-line plain text message that explains what this category is about. This can be used in the UI to help the user pick the right category. The text should be longer thanModelObject.getDisplayName()
-
all
Returns all the registeredGlobalConfiguration
descriptors. -
get
-