diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-01-19 14:48:57 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-01-19 14:48:57 +0000 |
commit | 2b3608fe37002c3e25807a30d73c13facf356530 (patch) | |
tree | 3dcb995ee49b9530510d1fe32ac9d1fb31b138bd /src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java | |
parent | 6c0ff7452815dcc2efab394099ca36c3f26e68c9 (diff) | |
download | vaadin-framework-2b3608fe37002c3e25807a30d73c13facf356530.tar.gz vaadin-framework-2b3608fe37002c3e25807a30d73c13facf356530.zip |
opening the servlet implementation for customized communication ( e.g. jsonp, websockets)
* WebApplicationContext implementation can now be overridden in servlets via getApplicationContext method. Deprecated createCommunicationManager method as it is now obsolete (introduced earlier in 6.5 branch, dontpush is the only known user).
* opened getApplicationUrl for special implementations
svn changeset:16950/svn branch:6.5
Diffstat (limited to 'src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java b/src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java index 5f8e59e056..86dbd910d5 100644 --- a/src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java +++ b/src/com/vaadin/terminal/gwt/server/GAEApplicationServlet.java @@ -320,7 +320,7 @@ public class GAEApplicationServlet extends ApplicationServlet { } } // will create new context if the above did not - return WebApplicationContext.getApplicationContext(session); + return getApplicationContext(session); } |