Package jenkins.branch
Class OrganizationChildHealthMetricsProperty
java.lang.Object
hudson.model.AbstractDescribableImpl<com.cloudbees.hudson.plugins.folder.AbstractFolderProperty<?>>
com.cloudbees.hudson.plugins.folder.AbstractFolderProperty<C>
jenkins.branch.OrganizationFolderProperty<OrganizationFolder>
jenkins.branch.OrganizationChildHealthMetricsProperty
- All Implemented Interfaces:
ExtensionPoint
,Describable<com.cloudbees.hudson.plugins.folder.AbstractFolderProperty<?>>
,ReconfigurableDescribable<com.cloudbees.hudson.plugins.folder.AbstractFolderProperty<?>>
public class OrganizationChildHealthMetricsProperty
extends OrganizationFolderProperty<OrganizationFolder>
A property that sets the health metrics for immediate children of an
OrganizationFolder
.- Since:
- 2.4.0
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Our descriptor.Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Field Summary
Fields inherited from class com.cloudbees.hudson.plugins.folder.AbstractFolderProperty
owner
-
Constructor Summary
ConstructorDescriptionOrganizationChildHealthMetricsProperty
(List<com.cloudbees.hudson.plugins.folder.health.FolderHealthMetric> templates) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
decorate
(MultiBranchProject<?, ?> child, TaskListener listener) SPI for performing an idempotent application of this property's decoration to the supplied child.List<com.cloudbees.hudson.plugins.folder.health.FolderHealthMetric>
Gets the current template metrics.Methods inherited from class jenkins.branch.OrganizationFolderProperty
applyDecoration, getDescriptor
Methods inherited from class com.cloudbees.hudson.plugins.folder.AbstractFolderProperty
getHealthMetrics, getHealthReports, getItemContainerOverrides, getOwner, reconfigure, setOwner
-
Constructor Details
-
OrganizationChildHealthMetricsProperty
@DataBoundConstructor public OrganizationChildHealthMetricsProperty(List<com.cloudbees.hudson.plugins.folder.health.FolderHealthMetric> templates) Constructor.- Parameters:
templates
- the folder health metrics.
-
-
Method Details
-
getTemplates
Gets the current template metrics.- Returns:
- the current template metrics.
-
decorate
protected void decorate(@NonNull MultiBranchProject<?, ?> child, @NonNull TaskListener listener) throws IOExceptionSPI for performing an idempotent application of this property's decoration to the supplied child. If the child is already correctly decorated then the child must be unchanged.- Specified by:
decorate
in classOrganizationFolderProperty<OrganizationFolder>
- Parameters:
child
- the child to decorate.listener
- a listener to log any commentary to.- Throws:
IOException
- as a convenience to implementations as some of the expected changes may call methods that could throw this but shouldn't because of the API's requirement that aBulkChange
contains the child.
-