Uses of Class
hudson.model.TopLevelItemDescriptor
-
Packages that use TopLevelItemDescriptor Package Description hudson.model Core object model that are bound to URLs via stapler, rooted atJenkins
.hudson.security Security-related code.jenkins.model jenkins.model.item_category -
-
Uses of TopLevelItemDescriptor in hudson.model
Subclasses of TopLevelItemDescriptor in hudson.model Modifier and Type Class Description static class
AbstractProject.AbstractProjectDescriptor
AbstractProject
subtypes should implement this base class as a descriptor.static class
FreeStyleProject.DescriptorImpl
Fields in hudson.model with type parameters of type TopLevelItemDescriptor Modifier and Type Field Description static List<TopLevelItemDescriptor>
Items. LIST
Deprecated.as of 1.286 UseItems.all()
for read access andExtension
for registration.Methods in hudson.model that return TopLevelItemDescriptor Modifier and Type Method Description static TopLevelItemDescriptor
Items. getDescriptor(String fqcn)
Deprecated.Underspecified what the parameter is.TopLevelItemDescriptor
TopLevelItem. getDescriptor()
Methods in hudson.model that return types with arguments of type TopLevelItemDescriptor Modifier and Type Method Description static DescriptorExtensionList<TopLevelItem,TopLevelItemDescriptor>
Items. all()
Returns all the registeredTopLevelItemDescriptor
s.static List<TopLevelItemDescriptor>
Items. all(ItemGroup c)
Returns all the registeredTopLevelItemDescriptor
s that the current security principal is allowed to create within the specified item group.static List<TopLevelItemDescriptor>
Items. all(Authentication a, ItemGroup c)
Deprecated.static ExtensionList<TopLevelItemDescriptor>
TopLevelItemDescriptor. all()
Returns all the registeredTopLevelItem
descriptors.static List<TopLevelItemDescriptor>
Items. all2(org.springframework.security.core.Authentication a, ItemGroup c)
Returns all the registeredTopLevelItemDescriptor
s that the specified security principal is allowed to create within the specified item group.Methods in hudson.model with parameters of type TopLevelItemDescriptor Modifier and Type Method Description TopLevelItem
ItemGroupMixIn. createProject(TopLevelItemDescriptor type, String name, boolean notify)
-
Uses of TopLevelItemDescriptor in hudson.security
Methods in hudson.security with parameters of type TopLevelItemDescriptor Modifier and Type Method Description void
ACL. checkCreatePermission(ItemGroup c, TopLevelItemDescriptor d)
Checks if the current security principal has the permission to create top level items within the specified item group.boolean
ACL. hasCreatePermission(Authentication a, ItemGroup c, TopLevelItemDescriptor d)
boolean
ACL. hasCreatePermission2(org.springframework.security.core.Authentication a, ItemGroup c, TopLevelItemDescriptor d)
Checks if the given principal has the permission to create top level items within the specified item group. -
Uses of TopLevelItemDescriptor in jenkins.model
Methods in jenkins.model that return TopLevelItemDescriptor Modifier and Type Method Description TopLevelItemDescriptor
AbstractTopLevelItem. getDescriptor()
Methods in jenkins.model with parameters of type TopLevelItemDescriptor Modifier and Type Method Description TopLevelItem
Jenkins. createProject(TopLevelItemDescriptor type, String name)
TopLevelItem
Jenkins. createProject(TopLevelItemDescriptor type, String name, boolean notify)
TopLevelItem
ModifiableTopLevelItemGroup. createProject(TopLevelItemDescriptor type, String name, boolean notify)
Creates a new job. -
Uses of TopLevelItemDescriptor in jenkins.model.item_category
Methods in jenkins.model.item_category with parameters of type TopLevelItemDescriptor Modifier and Type Method Description static ItemCategory
ItemCategory. getCategory(TopLevelItemDescriptor descriptor)
AItemCategory
associated to thisTopLevelItemDescriptor
.
-