Class OrganizationChildTriggersProperty

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.OrganizationChildTriggersProperty
All Implemented Interfaces:
ExtensionPoint, Describable<com.cloudbees.hudson.plugins.folder.AbstractFolderProperty<?>>, ReconfigurableDescribable<com.cloudbees.hudson.plugins.folder.AbstractFolderProperty<?>>

public class OrganizationChildTriggersProperty extends OrganizationFolderProperty<OrganizationFolder>
Configures the Triggers for the MultiBranchProject children of an OrganizationFolder.
Since:
2.4.0
  • Constructor Details

    • OrganizationChildTriggersProperty

      @DataBoundConstructor public OrganizationChildTriggersProperty(List<Trigger<?>> templates)
      Our constructor.
      Parameters:
      templates - the templates.
    • OrganizationChildTriggersProperty

      public OrganizationChildTriggersProperty(Trigger<?>... templates)
      Our constructor.
      Parameters:
      templates - the templates.
  • Method Details

    • newDefaultInstance

      public static OrganizationChildTriggersProperty newDefaultInstance()
      Creates a new default instance of this property.
      Returns:
      a new default instance of this property.
    • getTemplates

      public List<Trigger<?>> getTemplates()
      Gets the current template triggers.
      Returns:
      the current template triggers.
    • decorate

      protected void decorate(@NonNull MultiBranchProject<?,?> child, @NonNull TaskListener listener) throws IOException
      SPI 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 class OrganizationFolderProperty<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 a BulkChange contains the child.