- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 09 Sep 2009 12:09:40 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/response In directory hutz:/tmp/cvs-serv6242/src/org/w3c/unicorn/response Modified Files: Response.java Log Message: added requestUri to object Response Index: Response.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/response/Response.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Response.java 28 Aug 2009 12:40:00 -0000 1.2 +++ Response.java 9 Sep 2009 12:09:38 -0000 1.3 @@ -19,6 +19,8 @@ protected Boolean passed; protected StringBuilder xml; // the xml version of the response + + protected String requestUri; /** * Result aResult = @@ -278,4 +280,14 @@ public StringBuilder getXml() { return this.xml; } + + public String getRequestUri() { + return requestUri; + } + + public void setRequestUri(String requestUri) { + this.requestUri = requestUri; + } + + }
Received on Wednesday, 9 September 2009 12:09:50 UTC