Package com.atlassian.bamboo.trigger
Interface Triggerable
-
- All Superinterfaces:
BambooIdProvider
- All Known Subinterfaces:
Chain
,ChainBranch
,DecoratedEnvironment
,Environment
,EnvironmentStub
,ImmutableChain
,ImmutableChainBranch
,ImmutableTopLevelPlan
,InternalEnvironment
,MutableEnvironment
,TopLevelPlan
- All Known Implementing Classes:
AbstractChain
,AbstractImmutableChain
,ChainBranchImpl
,DecoratedEnvironmentImpl
,DefaultChain
,EnvironmentImpl
,EnvironmentStubDto
,EnvironmentStubImpl
,EnvironmentWithConfigCounts
,ImmutableChainBranchImpl
,ImmutableChainImpl
,InternalEnvironmentImpl
,InternalEnvironmentStubImpl
,MutableEnvironmentImpl
@ExperimentalApi public interface Triggerable extends BambooIdProvider
An entity that can start a process or task when triggered.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<TriggerDefinition>
getTriggerDefinitions()
boolean
isSuspended()
-
Methods inherited from interface com.atlassian.bamboo.core.BambooIdProvider
getId
-
-
-
-
Method Detail
-
isSuspended
boolean isSuspended()
- Returns:
- true if automatic triggering is switched off for this object
-
getTriggerDefinitions
@NotNull @NotNull List<TriggerDefinition> getTriggerDefinitions()
- Returns:
- immutable list of all triggers defined for this object
- Since:
- 5.8
-
-