Interface IPluginFormPreRespondRetVal
- 
- All Superinterfaces:
 IPluginReturnValue,Serializable
- All Known Implementing Classes:
 PluginGenericFormProcessingRetVal
public interface IPluginFormPreRespondRetVal extends IPluginReturnValue, Serializable
Interface for the return value of form pre-respond plugins.- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description booleangetContinueProcessing()default Map<String,Serializable>getSessionAttributeMap()A map of key-value pairs with session attributes that are written to theHttpSession.Map<String,Serializable>getSessionAttributes()Deprecated. 
 - 
 
- 
- 
Method Detail
- 
getContinueProcessing
boolean getContinueProcessing()
- Returns:
 trueto send the response as usual,falseto 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 
Mapwith session attributes to set on theHttpSession. - Since:
 - 6.0
 
 
- 
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 
Mapwith session attributes to set on theHttpSession. - Since:
 - 6.1
 
 
 - 
 
 -