]> source.dussan.org Git - vaadin-framework.git/commitdiff
Minor refactorings and opening api for customized communication implementations
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 18 Jan 2011 13:38:46 +0000 (13:38 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 18 Jan 2011 13:38:46 +0000 (13:38 +0000)
svn changeset:16928/svn branch:6.5

src/com/vaadin/terminal/gwt/client/ApplicationConnection.java

index 624f3beee70d467d50c9a3d994ccf342ac63f37c..5cb50e1f1e4850420e8ecb06baae70f16b707532 100755 (executable)
@@ -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<String, String> resourcesMap = new HashMap<String, String>();
 
@@ -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.