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 booleangetContinueProcessing()Map<String,Serializable>getSessionAttributeMap()A map of key-value pairs with session attributes that are written to theHttpSession.Map<String,Serializable>getSessionAttributes()Deprecated.voidsetSessionAttributes(Map<String,Serializable> sessionAttributes)
-
-
-
Method Detail
-
getContinueProcessing
public boolean getContinueProcessing()
- Specified by:
getContinueProcessingin interfaceIPluginFormPrePersistRetVal- Specified by:
getContinueProcessingin interfaceIPluginFormPreProcessRetVal- Specified by:
getContinueProcessingin interfaceIPluginFormPreRespondRetVal- Returns:
trueto continue as usual,falseto prevent the form submission and discard the submitted form data.
-
getSessionAttributes
@Deprecated public Map<String,Serializable> getSessionAttributes()
Deprecated.Description copied from interface:IPluginFormPreRespondRetValA 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:
getSessionAttributesin interfaceIPluginFormPreRespondRetVal- Returns:
- A
Mapwith session attributes to set on theHttpSession.
-
getSessionAttributeMap
public Map<String,Serializable> getSessionAttributeMap()
Description copied from interface:IPluginFormPrePersistRetValA 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:
getSessionAttributeMapin interfaceIPluginFormPrePersistRetVal- Specified by:
getSessionAttributeMapin interfaceIPluginFormPreProcessRetVal- Specified by:
getSessionAttributeMapin interfaceIPluginFormPreRespondRetVal- Returns:
- A
Mapwith session attributes to set on theHttpSession.
-
setSessionAttributes
public void setSessionAttributes(Map<String,Serializable> sessionAttributes)
-
-