Interface IPluginFormPreRespondRetVal
- All Superinterfaces:
IPluginReturnValue
,Serializable
- All Known Implementing Classes:
PluginGenericFormProcessingRetVal
Interface for the return value of form pre-respond plugins.
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionboolean
default Map<Serializable,
Serializable> A map of key-value pairs with FRQ session attributes that are written to theFRQSession
.default Map<String,
Serializable> A map of key-value pairs with session attributes that are written to theHttpSession
.Deprecated.
-
Method Details
-
getContinueProcessing
boolean getContinueProcessing()- Returns:
true
to send the response as usual,false
to prevent the response from being sent to the browser and display a generic error page.
-
getSessionAttributes
Map<String,Serializable> getSessionAttributes()Deprecated.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.0
-
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
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
-
getSessionAttributeMap()