Class AnyNestedCondition
java.lang.Object
org.springframework.boot.autoconfigure.condition.SpringBootCondition
org.springframework.boot.autoconfigure.condition.AbstractNestedCondition
org.springframework.boot.autoconfigure.condition.AnyNestedCondition
- All Implemented Interfaces:
Condition
,ConfigurationCondition
Condition
that will match when any nested class condition matches. Can be used
to create composite conditions, for example:
static class OnJndiOrProperty extends AnyNestedCondition { OnJndiOrProperty() { super(ConfigurationPhase.PARSE_CONFIGURATION); } @ConditionalOnJndi() static class OnJndi { } @ConditionalOnProperty("something") static class OnProperty { } }
The
ConfigurationPhase
should be specified according to the conditions that are defined.
In the example above, all conditions are static and can be evaluated early so
PARSE_CONFIGURATION
is a right fit.
- Since:
- 1.2.0
- Author:
- Phillip Webb
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.boot.autoconfigure.condition.AbstractNestedCondition
AbstractNestedCondition.MemberMatchOutcomes
Nested classes/interfaces inherited from interface org.springframework.context.annotation.ConfigurationCondition
ConfigurationCondition.ConfigurationPhase
-
Constructor Summary
ConstructorDescriptionAnyNestedCondition
(ConfigurationCondition.ConfigurationPhase configurationPhase) -
Method Summary
Modifier and TypeMethodDescriptionprotected ConditionOutcome
getFinalMatchOutcome
(AbstractNestedCondition.MemberMatchOutcomes memberOutcomes) Methods inherited from class org.springframework.boot.autoconfigure.condition.AbstractNestedCondition
getConfigurationPhase, getMatchOutcome
Methods inherited from class org.springframework.boot.autoconfigure.condition.SpringBootCondition
anyMatches, logOutcome, matches, matches
-
Constructor Details
-
AnyNestedCondition
-
-
Method Details
-
getFinalMatchOutcome
protected ConditionOutcome getFinalMatchOutcome(AbstractNestedCondition.MemberMatchOutcomes memberOutcomes) - Specified by:
getFinalMatchOutcome
in classAbstractNestedCondition
-