Package jenkins.model.item_category
Class Category
- java.lang.Object
-
- jenkins.model.item_category.Category
-
- All Implemented Interfaces:
Serializable
@ExportedBean @Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) public class Category extends Object implements Serializable
Represents anItemCategory
and itsTopLevelItem
s. This class is not thread-safe.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getId()
List<Map<String,Serializable>>
getItems()
int
getMinToShow()
String
getName()
int
getOrder()
-
-
-
Method Detail
-
getId
@Exported public String getId()
-
getName
@Exported public String getName()
-
getDescription
@Exported public String getDescription()
-
getOrder
@Exported public int getOrder()
-
getMinToShow
@Exported public int getMinToShow()
-
getItems
@Exported public List<Map<String,Serializable>> getItems()
-
-