included data field that holds a generic object, much like the

request object already does.
This commit is contained in:
hns 2001-11-20 15:31:18 +00:00
parent 63d69b6d43
commit fbe9f40631

View file

@ -29,6 +29,11 @@ public class ResponseTrans implements Externalizable {
// transient, response must be constructed before this is serialized
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
public transient String skin = null;