public class TriggersExclusion extends AbstractExclusion
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ID |
LOG| Constructor and Description |
|---|
TriggersExclusion() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDisabledText()
Default implementation assumes the Exclusion's
AbstractExclusion.getId() is the plugin id so just checks to see
if it is currently installed. |
void |
postClone(EzContext context,
hudson.model.AbstractProject implementationProject)
Restore content we kept - usually via reflection to prevent infinite save recursion.
|
void |
preClone(EzContext context,
hudson.model.AbstractProject implementationProject)
Capture content we want to keep.
|
getDescription, getId, toStringpublic static final java.lang.String ID
public java.lang.String getDisabledText()
AbstractExclusionAbstractExclusion.getId() is the plugin id so just checks to see
if it is currently installed.getDisabledText in interface ExclusiongetDisabledText in class AbstractExclusionpublic void preClone(EzContext context, hudson.model.AbstractProject implementationProject)
Exclusioncontext - Templating execution, Exclusions must check if they are selected in this execution!implementationProject - The child project before and any processing.public void postClone(EzContext context, hudson.model.AbstractProject implementationProject)
Exclusioncontext - Templating execution, Exclusions must check if they are selected in this execution!implementationProject - The child project immediately after it has been XML-cloned from its template.
Note it will be amended by successive Exclusions so the overall state is
indeterminate although each individual Exclusion can presume its personal
view of the Job currently looks exactly like the template.EzReflectionUtils