Interface IHttpProcessingContext
-
- All Superinterfaces:
IProcessingContext
,IRequestProcessingContext
- All Known Subinterfaces:
IBusinessLogicProcessingContext
,IWebProcessingContext
- All Known Implementing Classes:
RestrictedBusinessLogicProcessingContext
@Scriptable public interface IHttpProcessingContext extends IRequestProcessingContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IServerBridgeResponse
getResponse()
Get the Web response.IViewData
getViewData()
Get a class that contains the values posted by the client.boolean
hasView()
Determine if this processing context contains a view object.void
setViewData(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 Detail
-
getResponse
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, orfalse
otherwise.
-
getViewData
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(IViewData p_view)
Set a class map that contains the values posted by the client for use in the BL.
-
-