- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 14 Sep 2009 12:12:08 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/response In directory hutz:/tmp/cvs-serv30866/src/org/w3c/unicorn/response Modified Files: Response.java Error.java Log Message: added levels to erros + changed checkedby by callingUri Index: Error.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/response/Error.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Error.java 28 Aug 2009 12:40:01 -0000 1.2 +++ Error.java 14 Sep 2009 12:12:06 -0000 1.3 @@ -48,9 +48,9 @@ protected BigInteger column; - protected String errortype; - protected String context; + + protected Integer level; protected List<LocalizedString> message; @@ -99,47 +99,47 @@ } /** - * Gets the value of the errortype property. + * Gets the value of the context property. * * @return possible object is {@link String } * */ - public String getErrortype() { - return errortype; + public String getContext() { + return context; } /** - * Sets the value of the errortype property. + * Sets the value of the context property. * * @param value * allowed object is {@link String } * */ - public void setErrortype(String value) { - this.errortype = value; + public void setContext(String value) { + this.context = value; } /** - * Gets the value of the context property. + * Gets the value of the level property. * - * @return possible object is {@link String } + * @return possible object is {@link int } * */ - public String getContext() { - return context; + public Integer getLevel() { + return level; } /** - * Sets the value of the context property. + * Sets the value of the level property. * * @param value - * allowed object is {@link String } + * allowed object is {@link int } * */ - public void setContext(String value) { - this.context = value; + public void setLevel(Integer value) { + this.level = value; } - + /** * Gets the value of the message property. * Index: Response.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/response/Response.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Response.java 9 Sep 2009 12:09:38 -0000 1.3 +++ Response.java 14 Sep 2009 12:12:06 -0000 1.4 @@ -10,7 +10,7 @@ public class Response { protected String uri; - protected String checkedby; + protected String callingUri; protected String version; @@ -50,24 +50,24 @@ } /** - * Gets the value of the checkedby property. + * Gets the value of the callingUri property. * * @return possible object is {@link String } * */ - public String getCheckedby() { - return checkedby; + public String getCallingUri() { + return callingUri; } /** - * Sets the value of the checkedby property. + * Sets the value of the callingUri property. * * @param value * allowed object is {@link String } * */ - public void setCheckedby(String value) { - this.checkedby = value; + public void setCallingUri(String value) { + this.callingUri = value; } /**
Received on Monday, 14 September 2009 12:12:16 UTC