Interface IPluginFormReplacerParams
-
- All Superinterfaces:
IPluginGenericReplacerParams
,IPluginParameters
- All Known Implementing Classes:
PluginFormReplacerParams
public interface IPluginFormReplacerParams extends IPluginGenericReplacerParams
Interface that encapsulates the parameters for a form replacer plugin.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description IFormDataAdapter
getFormDataAdapter()
FormVersion
getFormversion()
default boolean
isEncodeForHTML()
Deprecated.-
Methods inherited from interface de.xima.fc.interfaces.plugin.param.replacer.IPluginGenericReplacerParams
getEntityContext, getEscaper, getPlaceholder, getPlaceholderContent
-
-
-
-
Method Detail
-
getFormversion
FormVersion getFormversion()
- Returns:
- The current
FormVersion
for which the replacement is being performed.
-
getFormDataAdapter
IFormDataAdapter getFormDataAdapter()
- Returns:
- The
IFormDataAdapter
that you can use to access the form data of the currentFormEingang
.
-
isEncodeForHTML
@Deprecated default boolean isEncodeForHTML()
Deprecated.- Returns:
- Whether the replaced placeholder value must be escaped for HTML, eg. by replacing
&
with&
etc.
-
-