Package org.jenkinsci.plugins.deployment
Class DeploymentFacetListener
- java.lang.Object
-
- org.jenkinsci.plugins.deployment.DeploymentFacetListener
-
- All Implemented Interfaces:
ExtensionPoint
- Direct Known Subclasses:
DeploymentPromotionCondition.ListenerImpl
,DeploymentTrigger.ListenerImpl
,WorkflowListenerImpl
public abstract class DeploymentFacetListener extends Object implements ExtensionPoint
Listens to the addition of newHostRecord
.- Author:
- Kohsuke Kawaguchi
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description DeploymentFacetListener()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static ExtensionList<DeploymentFacetListener>
all()
abstract void
onChange(DeploymentFacet facet, HostRecord newRecord)
Called whenDeploymentFacet
gets a newHostRecord
.
-
-
-
Method Detail
-
onChange
public abstract void onChange(DeploymentFacet facet, HostRecord newRecord)
Called whenDeploymentFacet
gets a newHostRecord
.
-
all
public static ExtensionList<DeploymentFacetListener> all()
-
-