summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2011-01-18 14:54:19 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2011-01-18 14:54:19 +0000
commit4645c6b7f166611f878b6abeb9a2f2578d312f43 (patch)
treeef61ab0cf1f2e3822ae06a910cc40b1f374526d0 /src/com
parent1827aa73c0cfa0b50c103ee90e8a9cd15f36aff5 (diff)
downloadvaadin-framework-4645c6b7f166611f878b6abeb9a2f2578d312f43.tar.gz
vaadin-framework-4645c6b7f166611f878b6abeb9a2f2578d312f43.zip
opening api for customized communication implementations
svn changeset:16935/svn branch:6.5
Diffstat (limited to 'src/com')
-rwxr-xr-xsrc/com/vaadin/terminal/gwt/client/ApplicationConnection.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
index 5cb50e1f1e..a8b1909dab 100755
--- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
+++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java
@@ -550,7 +550,7 @@ public class ApplicationConnection {
* @param details
* Optional details for debugging.
*/
- private void showCommunicationError(String details) {
+ protected void showCommunicationError(String details) {
VConsole.error("Communication error: " + details);
showError(details, configuration.getCommunicationErrorCaption(),
configuration.getCommunicationErrorMessage(),
@@ -563,7 +563,7 @@ public class ApplicationConnection {
* @param details
* Optional details for debugging.
*/
- private void showAuthenticationError(String details) {
+ protected void showAuthenticationError(String details) {
VConsole.error("Authentication error: " + details);
showError(details, configuration.getAuthorizationErrorCaption(),
configuration.getAuthorizationErrorMessage(),