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<Serializable,Serializable>getFrqSessionAttributeMap()A map of key-value pairs with FRQ session attributes that are written to theFRQSession.Map<String,Serializable>getSessionAttributeMap()A map of key-value pairs with session attributes that are written to theHttpSession.Map<String,Serializable>getSessionAttributes()Deprecated.voidsetFrqSessionAttributes(Map<Serializable,Serializable> frqSessionAttributes)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)
 
- 
getFrqSessionAttributeMap
public Map<Serializable,Serializable> getFrqSessionAttributeMap()
Description copied from interface:IPluginFormPrePersistRetValA 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.- Specified by:
 getFrqSessionAttributeMapin interfaceIPluginFormPrePersistRetVal- Specified by:
 getFrqSessionAttributeMapin interfaceIPluginFormPreProcessRetVal- Specified by:
 getFrqSessionAttributeMapin interfaceIPluginFormPreRespondRetVal- Returns:
 - A 
Mapwith FRQ session attributes to set on theFRQSession. 
 
- 
setFrqSessionAttributes
public void setFrqSessionAttributes(Map<Serializable,Serializable> frqSessionAttributes)
 
 - 
 
 -