added skinpath field to set skin resolution path from properties
or from application code.
This commit is contained in:
parent
b76447298b
commit
f3ea5d79a2
1 changed files with 7 additions and 4 deletions
|
@ -35,10 +35,10 @@ public class ResponseTrans implements Externalizable {
|
||||||
*/
|
*/
|
||||||
public int status = 0;
|
public int status = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used for HTTP authentication
|
* Used for HTTP authentication
|
||||||
*/
|
*/
|
||||||
public String realm;
|
public String realm;
|
||||||
|
|
||||||
// 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;
|
||||||
|
@ -60,6 +60,9 @@ public class ResponseTrans implements Externalizable {
|
||||||
// these are used to implement the _as_string variants for Hop templates.
|
// these are used to implement the _as_string variants for Hop templates.
|
||||||
private transient Stack buffers;
|
private transient Stack buffers;
|
||||||
|
|
||||||
|
// the path used to resolve skin names
|
||||||
|
public transient String skinpath = null;
|
||||||
|
|
||||||
static final long serialVersionUID = -8627370766119740844L;
|
static final long serialVersionUID = -8627370766119740844L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue