Interface IPluginServletActionRetVal
- All Superinterfaces:
IPluginReturnValue
,Serializable
- All Known Implementing Classes:
PluginServletActionRetVal
Interface for the return value of a servlet action plugin.
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptiondefault Map<String,
Serializable> A map of key-value pairs with FRQ session attributes that are written to theFRQSession
.default int
default Map<String,
Serializable> A map of key-value pairs with session attributes that are written to theHttpSession
.
-
Method Details
-
getResponse
IServletResponse getResponse()- Returns:
- The
IServletResponse
that is to be returned to the client in response to the HTTP request.
-
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:
- 7.0.13
-
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.0.13
-
getHttpStatusCode
default int getHttpStatusCode()- Returns:
- The HTTP status code that is to be returned to the client in response to the HTTP request.
-