Interface IHttpProcessingContext

All Superinterfaces:
IProcessingContext, IRequestProcessingContext
All Known Subinterfaces:
IBusinessLogicProcessingContext, IWebProcessingContext
All Known Implementing Classes:
RestrictedBusinessLogicProcessingContext

@Scriptable public interface IHttpProcessingContext extends IRequestProcessingContext
  • Method Summary

    Modifier and Type
    Method
    Description
    de.uplanet.lucy.server.connector.IServerBridgeResponse
    Get the Web response.
    de.uplanet.lucy.server.engine.http.IViewData
    Get a class that contains the values posted by the client.
    boolean
    Determine if this processing context contains a view object.
    void
    setViewData(de.uplanet.lucy.server.engine.http.IViewData p_view)
    Set a class map that contains the values posted by the client for use in the BL.

    Methods inherited from interface de.uplanet.lucy.server.IProcessingContext

    getApplicationContext, getContextValueProvider

    Methods inherited from interface de.uplanet.lucy.server.connector.IRequestProcessingContext

    getRequest
  • Method Details

    • getResponse

      de.uplanet.lucy.server.connector.IServerBridgeResponse getResponse()
      Get the Web response.
      Returns:
      The Web response object.
    • hasView

      boolean hasView()
      Determine if this processing context contains a view object.
      Returns:
      true if the processing context contains a view, or false otherwise.
    • getViewData

      de.uplanet.lucy.server.engine.http.IViewData getViewData()
      Get a class that contains the values posted by the client. Used in the BL to get values by the field guid, control name, control guid.
      Returns:
      The values that were posted by the client, or null if no view was restored on the server.
    • setViewData

      void setViewData(de.uplanet.lucy.server.engine.http.IViewData p_view)
      Set a class map that contains the values posted by the client for use in the BL.