From f5c8e2fe9d8461705b6dbba368bdbf30dd57b063 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Tue, 18 Jan 2011 13:38:46 +0000 Subject: [PATCH] Minor refactorings and opening api for customized communication implementations svn changeset:16928/svn branch:6.5 --- .../terminal/gwt/client/ApplicationConnection.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 624f3beee7..5cb50e1f1e 100755 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -91,7 +91,7 @@ public class ApplicationConnection { public static final String ATTRIBUTE_ERROR = "error"; // will hold the UIDL security key (for XSS protection) once received - private String uidl_security_key = "init"; + private String uidlSecurityKey = "init"; private final HashMap resourcesMap = new HashMap(); @@ -391,7 +391,7 @@ public class ApplicationConnection { final String extraParams, final boolean forceSync) { startRequest(); // Security: double cookie submission pattern - final String rd = uidl_security_key + VAR_BURST_SEPARATOR + requestData; + final String rd = uidlSecurityKey + VAR_BURST_SEPARATOR + requestData; VConsole.log("Making UIDL Request with params: " + rd); String uri; if (configuration.usePortletURLs()) { @@ -795,7 +795,7 @@ public class ApplicationConnection { // Get security key if (json.containsKey(UIDL_SECURITY_TOKEN_ID)) { - uidl_security_key = json.getString(UIDL_SECURITY_TOKEN_ID); + uidlSecurityKey = json.getString(UIDL_SECURITY_TOKEN_ID); } if (json.containsKey("resources")) { @@ -2288,6 +2288,14 @@ public class ApplicationConnection { windowName = newName; } + protected String getWindowName() { + return windowName; + } + + protected String getUidlSecurityKey() { + return uidlSecurityKey; + } + /** * Use to notify that the given component's caption has changed; layouts may * have to be recalculated. -- 2.39.5