implemented global skin to be rendered after request is executed
This commit is contained in:
parent
0a2cbec8f7
commit
ffe720105c
1 changed files with 5 additions and 0 deletions
|
@ -39,6 +39,9 @@ public class ResponseTrans implements Serializable {
|
||||||
// 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;
|
||||||
|
|
||||||
|
// name of the skin to be rendered after completion, if any
|
||||||
|
public transient String mainSkin = null;
|
||||||
|
|
||||||
|
|
||||||
public ResponseTrans () {
|
public ResponseTrans () {
|
||||||
super ();
|
super ();
|
||||||
|
@ -49,6 +52,8 @@ public class ResponseTrans implements Serializable {
|
||||||
if (buffer != null)
|
if (buffer != null)
|
||||||
buffer.setLength (0);
|
buffer.setLength (0);
|
||||||
redirect = null;
|
redirect = null;
|
||||||
|
mainSkin = null;
|
||||||
|
title = head = body = message = error = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue