Interface FormLogicProviderService
-
public interface FormLogicProviderService
Java implementations of form logic providers should implement this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoutingResult
run(FormScope scope, Map<String,Object> parameters, Map<String,Object> languageLabels)
To be invoked by the form engine.
-
-
-
Method Detail
-
run
RoutingResult run(FormScope scope, Map<String,Object> parameters, Map<String,Object> languageLabels)
To be invoked by the form engine. Runs the form logic.- Parameters:
scope
- the scope in which to run the form logicparameters
- a Map containing the parameters as key,value-pairslanguageLabels
- a Map containing the configured languageLabels. The keys to this Map are the error codes.- Returns:
- not specified
-
-