use of com.day.cq.wcm.foundation.forms.FormsHandlingServletHelper in project aem-core-wcm-components by Adobe-Marketing-Cloud.
the class CoreFormHandlingServlet method activate.
@Activate
protected void activate(Configuration configuration) {
dataNameWhitelist = PropertiesUtil.toStringArray(configuration.name_whitelist());
allowExpressions = PropertiesUtil.toBoolean(configuration.allow_expressions(), PROP_ALLOW_EXPRESSION_DEFAULT);
formsHandlingServletHelper = new FormsHandlingServletHelper(dataNameWhitelist, validator, FormConstants.RT_ALL_CORE_FORM_CONTAINER, allowExpressions, formStructureHelperFactory);
}
Aggregations