included data field that holds a generic object, much like the
request object already does.
This commit is contained in:
parent
63d69b6d43
commit
fbe9f40631
1 changed files with 5 additions and 0 deletions
|
@ -29,6 +29,11 @@ public class ResponseTrans implements Externalizable {
|
||||||
// transient, response must be constructed before this is serialized
|
// transient, response must be constructed before this is serialized
|
||||||
public transient String title, head, body, message, error;
|
public transient String title, head, body, message, error;
|
||||||
|
|
||||||
|
// Generic container for response data items. This is used to
|
||||||
|
// pass response fragments to skins, which can assemble them
|
||||||
|
// through the <% response.xxx %> macro.
|
||||||
|
public transient Object data;
|
||||||
|
|
||||||
// name of the skin to be rendered after completion, if any
|
// name of the skin to be rendered after completion, if any
|
||||||
public transient String skin = null;
|
public transient String skin = null;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue