Class OnPropertyListCondition
java.lang.Object
org.springframework.boot.autoconfigure.condition.SpringBootCondition
org.springframework.boot.autoconfigure.condition.OnPropertyListCondition
- All Implemented Interfaces:
Condition
Condition
that checks if a property whose value is a list is defined in the
environment.- Since:
- 2.0.5
- Author:
- Eneias Silva, Stephane Nicoll
-
Constructor Summary
ModifierConstructorDescriptionprotected
OnPropertyListCondition
(String propertyName, Supplier<ConditionMessage.Builder> messageBuilder) Create a new instance with the property to check and the message builder to use. -
Method Summary
Modifier and TypeMethodDescriptiongetMatchOutcome
(ConditionContext context, AnnotatedTypeMetadata metadata) Determine the outcome of the match along with suitable log output.Methods inherited from class org.springframework.boot.autoconfigure.condition.SpringBootCondition
anyMatches, logOutcome, matches, matches
-
Constructor Details
-
OnPropertyListCondition
protected OnPropertyListCondition(String propertyName, Supplier<ConditionMessage.Builder> messageBuilder) Create a new instance with the property to check and the message builder to use.- Parameters:
propertyName
- the name of the propertymessageBuilder
- a message builder supplier that should provide a fresh instance on each call
-
-
Method Details
-
getMatchOutcome
Description copied from class:SpringBootCondition
Determine the outcome of the match along with suitable log output.- Specified by:
getMatchOutcome
in classSpringBootCondition
- Parameters:
context
- the condition contextmetadata
- the annotation metadata- Returns:
- the condition outcome
-