Class PluginGenericFormProcessingRetVal
- java.lang.Object
-
- de.xima.fc.plugin.models.retval.form.PluginGenericFormProcessingRetVal
-
- All Implemented Interfaces:
IPluginReturnValue
,IPluginFormPrePersistRetVal
,IPluginFormPreProcessRetVal
,IPluginFormPreRespondRetVal
,Serializable
public class PluginGenericFormProcessingRetVal extends Object implements IPluginFormPrePersistRetVal, IPluginFormPreProcessRetVal, IPluginFormPreRespondRetVal
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PluginGenericFormProcessingRetVal(boolean continueProcessing)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
getContinueProcessing()
Map<String,Serializable>
getSessionAttributeMap()
A map of key-value pairs with session attributes that are written to theHttpSession
.Map<String,Serializable>
getSessionAttributes()
Deprecated.void
setSessionAttributes(Map<String,Serializable> sessionAttributes)
-
-
-
Method Detail
-
getContinueProcessing
public boolean getContinueProcessing()
- Specified by:
getContinueProcessing
in interfaceIPluginFormPrePersistRetVal
- Specified by:
getContinueProcessing
in interfaceIPluginFormPreProcessRetVal
- Specified by:
getContinueProcessing
in interfaceIPluginFormPreRespondRetVal
- Returns:
true
to continue as usual,false
to prevent the form submission and discard the submitted form data.
-
getSessionAttributes
@Deprecated public Map<String,Serializable> getSessionAttributes()
Deprecated.Description copied from interface:IPluginFormPreRespondRetVal
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.- Specified by:
getSessionAttributes
in interfaceIPluginFormPreRespondRetVal
- Returns:
- A
Map
with session attributes to set on theHttpSession
.
-
getSessionAttributeMap
public Map<String,Serializable> getSessionAttributeMap()
Description copied from interface:IPluginFormPrePersistRetVal
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.- Specified by:
getSessionAttributeMap
in interfaceIPluginFormPrePersistRetVal
- Specified by:
getSessionAttributeMap
in interfaceIPluginFormPreProcessRetVal
- Specified by:
getSessionAttributeMap
in interfaceIPluginFormPreRespondRetVal
- Returns:
- A
Map
with session attributes to set on theHttpSession
.
-
setSessionAttributes
public void setSessionAttributes(Map<String,Serializable> sessionAttributes)
-
-