aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Pomozov <anatol.pomozov@gmail.com>2010-11-09 18:47:22 -0800
committerAnatol Pomozov <anatol.pomozov@gmail.com>2010-11-09 18:47:22 -0800
commit0128fc48d33fd37e3ac3a5bfad22495d03b3c11c (patch)
treef128a535d527a567ae593636cf11e5a5d0798ae7
parent73104a5258c2a920694134d1695695ae1317fd74 (diff)
downloadgwtjsonrpc-0128fc48d33fd37e3ac3a5bfad22495d03b3c11c.tar.gz
Bump GWT version to 2.1.0
Change-Id: I35563e668a1e9814293754069868ba7f1e2395e0
-rw-r--r--pom.xml4
-rw-r--r--src/main/java/com/google/gwtjsonrpc/client/impl/AbstractJsonProxy.java5
2 files changed, 7 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 341b8b9..ea01c8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
<groupId>gwtjsonrpc</groupId>
<artifactId>gwtjsonrpc</artifactId>
<packaging>jar</packaging>
- <version>1.2.2</version>
+ <version>1.2.3-SNAPSHOT</version>
<name>gwtjsonrpc</name>
<description>JSON-RPC for Google Web Toolkit (GWT)</description>
<url>http://android.git.kernel.org/?p=tools/gwtjsonrpc.git</url>
@@ -253,7 +253,7 @@ limitations under the License.
</licenses>
<properties>
- <gwtVersion>2.0.0</gwtVersion>
+ <gwtVersion>2.1.0</gwtVersion>
</properties>
<build>
diff --git a/src/main/java/com/google/gwtjsonrpc/client/impl/AbstractJsonProxy.java b/src/main/java/com/google/gwtjsonrpc/client/impl/AbstractJsonProxy.java
index 2e7606d..7b8da10 100644
--- a/src/main/java/com/google/gwtjsonrpc/client/impl/AbstractJsonProxy.java
+++ b/src/main/java/com/google/gwtjsonrpc/client/impl/AbstractJsonProxy.java
@@ -43,6 +43,11 @@ public abstract class AbstractJsonProxy implements JsonDefTarget {
}
@Override
+ public String getSerializationPolicyName() {
+ return "jsonrpc";
+ }
+
+ @Override
public XsrfManager getXsrfManager() {
return xsrfManager;
}