com.mitchellbosecke.pebble.spring4.extension.function.bindingresult.BaseBindingResultFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pebble-spring4 Show documentation
Show all versions of pebble-spring4 Show documentation
Pebble Integration with Spring 4.x
/*
* Copyright (c) 2013 by Mitchell Bösecke
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
package com.mitchellbosecke.pebble.spring4.extension.function.bindingresult;
import com.mitchellbosecke.pebble.extension.Function;
import com.mitchellbosecke.pebble.template.EvaluationContext;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.springframework.validation.BindingResult;
/**
* Base class of the function interacting with the BindingResult
*
* @author Eric Bussieres
*/
public abstract class BaseBindingResultFunction implements Function {
protected static final String PARAM_FIELD_NAME = "fieldName";
protected static final String PARAM_FORM_NAME = "formName";
private final List argumentNames = new ArrayList<>();
protected BaseBindingResultFunction(String... argumentsName) {
Collections.addAll(this.argumentNames, argumentsName);
}
@Override
public List getArgumentNames() {
return this.argumentNames;
}
protected BindingResult getBindingResult(String formName, EvaluationContext context) {
String attribute = BindingResult.MODEL_KEY_PREFIX + formName;
return (BindingResult) context.getVariable(attribute);
}
}