Interface IPluginServletActionRetVal

All Superinterfaces:
IPluginReturnValue, Serializable
All Known Implementing Classes:
PluginServletActionRetVal

public interface IPluginServletActionRetVal extends IPluginReturnValue, Serializable
Interface for the return value of a servlet action plugin.
Author:
XIMA MEDIA GmbH
  • Method Details

    • getResponse

      IServletResponse getResponse()
      Returns:
      The IServletResponse that is to be returned to the client in response to the HTTP request.
    • getSessionAttributeMap

      default Map<String,Serializable> getSessionAttributeMap()
      A map of key-value pairs with session attributes that are written to the HttpSession. When the session already contains a value for a parameter, it is overwritten.
      Returns:
      A Map with session attributes to set on the HttpSession.
      Since:
      7.0.13
    • getFrqSessionAttributeMap

      default Map<String,Serializable> getFrqSessionAttributeMap()
      A map of key-value pairs with FRQ session attributes that are written to the FRQSession. When the session already contains a value for a parameter, it is overwritten.
      Returns:
      A Map with FRQ session attributes to set on the FRQSession.
      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.