Class NoopEvaluationStrategy
- java.lang.Object
-
- org.jboss.windup.config.condition.NoopEvaluationStrategy
-
- All Implemented Interfaces:
EvaluationStrategy
public class NoopEvaluationStrategy extends Object implements EvaluationStrategy
This is often used with existing value stores as we are simply matching against existing values.
-
-
Constructor Summary
Constructors Constructor Description NoopEvaluationStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidmodelMatched()Indicates that we have potentially found a match.voidmodelSubmissionRejected()Indicates that the match has been rejected, and we should reject any variables stored in theParameterValueStorefrom this match.voidmodelSubmitted(org.jboss.windup.graph.model.WindupVertexFrame model)Adds the model to the list matched by this set of parameter values.
-
-
-
Method Detail
-
modelMatched
public void modelMatched()
Description copied from interface:EvaluationStrategyIndicates that we have potentially found a match.- Specified by:
modelMatchedin interfaceEvaluationStrategy
-
modelSubmissionRejected
public void modelSubmissionRejected()
Description copied from interface:EvaluationStrategyIndicates that the match has been rejected, and we should reject any variables stored in theParameterValueStorefrom this match.- Specified by:
modelSubmissionRejectedin interfaceEvaluationStrategy
-
modelSubmitted
public void modelSubmitted(org.jboss.windup.graph.model.WindupVertexFrame model)
Description copied from interface:EvaluationStrategyAdds the model to the list matched by this set of parameter values.- Specified by:
modelSubmittedin interfaceEvaluationStrategy
-
-