added skinpath field to set skin resolution path from properties

or from application code.
This commit is contained in:
hns 2002-03-19 19:14:09 +00:00
parent b76447298b
commit f3ea5d79a2

View file

@ -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;
/** /**