- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 18 Sep 2009 17:15:32 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/response
In directory hutz:/tmp/cvs-serv18130/src/org/w3c/unicorn/response
Modified Files:
Response.java
Log Message:
-callingUri
+observerId
Index: Response.java
===================================================================
RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/response/Response.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Response.java 18 Sep 2009 15:44:12 -0000 1.6
+++ Response.java 18 Sep 2009 17:15:30 -0000 1.7
@@ -9,8 +9,8 @@
public class Response {
protected String uri;
-
- protected String callingUri;
+
+ protected String requestUri;
protected String version;
@@ -20,9 +20,9 @@
protected StringBuilder xml; // the xml version of the response
- protected String requestUri;
-
protected Integer rating;
+
+ protected String observerId;
/**
* Result aResult =
@@ -52,27 +52,6 @@
}
/**
- * Gets the value of the callingUri property.
- *
- * @return possible object is {@link String }
- *
- */
- public String getCallingUri() {
- return callingUri;
- }
-
- /**
- * Sets the value of the callingUri property.
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setCallingUri(String value) {
- this.callingUri = value;
- }
-
- /**
* Gets the value of the version property.
*
* @return possible object is {@link String }
@@ -298,5 +277,13 @@
public void setRating(Integer rating) {
this.rating = rating;
}
+
+ public String getObserverId() {
+ return observerId;
+ }
+
+ public void setObserverId(String observerId) {
+ this.observerId = observerId;
+ }
}
Received on Friday, 18 September 2009 17:15:46 UTC