Interface IPluginFormPrePersistRetVal
-
- All Superinterfaces:
IPluginReturnValue
,Serializable
- All Known Implementing Classes:
PluginGenericFormProcessingRetVal
public interface IPluginFormPrePersistRetVal extends IPluginReturnValue, Serializable
Interface for the return value of form pre-persist plugins.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description boolean
getContinueProcessing()
default Map<Serializable,Serializable>
getFrqSessionAttributeMap()
A map of key-value pairs with FRQ session attributes that are written to theFRQSession
.default Map<String,Serializable>
getSessionAttributeMap()
A map of key-value pairs with session attributes that are written to theHttpSession
.
-
-
-
Method Detail
-
getContinueProcessing
boolean getContinueProcessing()
- Returns:
true
to continue as usual,false
to prevent the form submission and discard the submitted form data.
-
getSessionAttributeMap
default Map<String,Serializable> getSessionAttributeMap()
A map of key-value pairs with session attributes that are written to theHttpSession
. When the session already contains a value for a parameter, it is overwritten.- Returns:
- A
Map
with session attributes to set on theHttpSession
. - Since:
- 6.1
-
getFrqSessionAttributeMap
default Map<Serializable,Serializable> getFrqSessionAttributeMap()
A map of key-value pairs with FRQ session attributes that are written to theFRQSession
. When the session already contains a value for a parameter, it is overwritten.- Returns:
- A
Map
with FRQ session attributes to set on theFRQSession
. - Since:
- 7.4.0
-
-