Class PluginServletActionRetVal

java.lang.Object
de.xima.fc.plugin.models.retval.servlet.PluginServletActionRetVal
All Implemented Interfaces:
IPluginReturnValue, IPluginServletActionRetVal, Serializable

public class PluginServletActionRetVal extends Object implements IPluginServletActionRetVal
POJO implementation of IPluginServletActionRetVal.
Author:
XIMA MEDIA GmbH
See Also:
  • Constructor Details

    • PluginServletActionRetVal

      public PluginServletActionRetVal(IServletResponse result)
      Creates a new POJO with the given servlet response.
      Parameters:
      result - Servlet response that should be returned to the client.
    • PluginServletActionRetVal

      public PluginServletActionRetVal(IServletResponse result, int statusCode)
      Creates a new POJO with the given servlet response.
      Parameters:
      result - Servlet response that should be returned to the client.
      statusCode - Status code to use for the HTTP response.
    • PluginServletActionRetVal

      public PluginServletActionRetVal(IServletResponse result, int statusCode, Map<String,Serializable> sessionAttributes, Map<String,Serializable> frqAttributes)
      Creates a new POJO with the given servlet response.
      Parameters:
      result - Servlet response that should be returned to the client.
      statusCode - Status code to use for the HTTP response.
      sessionAttributes - Map with session attributes that should be added to the current session.
      frqAttributes - Map with FRQSession attributes that should be added to the current FRQ session.
    • PluginServletActionRetVal

      public PluginServletActionRetVal(IServletResponse result, Map<String,Serializable> sessionAttributes, Map<String,Serializable> frqAttributes)
      Creates a new POJO with the given servlet response.
      Parameters:
      result - Servlet response that should be returned to the client.
      sessionAttributes - Map with session attributes that should be added to the current session.
      frqAttributes - Map with FRQSession attributes that should be added to the current FRQ session.
  • Method Details