Class JSONObjectEventResultProcessor
- java.lang.Object
-
- org.apache.tapestry5.internal.services.JSONObjectEventResultProcessor
-
- All Implemented Interfaces:
ComponentEventResultProcessor<JSONObject>
public class JSONObjectEventResultProcessor extends Object implements ComponentEventResultProcessor<JSONObject>
Implementation ofComponentEventResultProcessor
forJSONObject
, allowing a component event handler to return a JSONObject that will be sent directly to the client as the reply. This is often used with custom components that need a custom JSON response.
-
-
Constructor Summary
Constructors Constructor Description JSONObjectEventResultProcessor(AjaxPartialResponseRenderer ajaxPartialResponseRenderer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
processResultValue(JSONObject value)
For a given, non-null return value from a component event method, construct and send a response.
-
-
-
Constructor Detail
-
JSONObjectEventResultProcessor
public JSONObjectEventResultProcessor(AjaxPartialResponseRenderer ajaxPartialResponseRenderer)
-
-
Method Detail
-
processResultValue
public void processResultValue(JSONObject value) throws IOException
Description copied from interface:ComponentEventResultProcessor
For a given, non-null return value from a component event method, construct and send a response. Starting in release 5.4, it is recommended that for any response that involves Tapestry pages or components, the implementation should create anIOOperation
to do the rendering, and add the operation to theRequest
as attributeTapestryConstants.RESPONSE_RENDERER
. This avoids a number of issues related to theEnvironment
.- Specified by:
processResultValue
in interfaceComponentEventResultProcessor<JSONObject>
- Parameters:
value
- the value returned from a method- Throws:
IOException
-
-