diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-03-24 16:06:38 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2011-03-24 16:06:38 +0000 |
commit | 8ac824d4891b3db91ab3be14507e68a03a82eeea (patch) | |
tree | bdc24de5716593486957aae0b8643d822e5cab3d | |
parent | 14c1b2f7fbd28ca45a1418cbcbac94f3eeaf5906 (diff) | |
download | vaadin-framework-8ac824d4891b3db91ab3be14507e68a03a82eeea.tar.gz vaadin-framework-8ac824d4891b3db91ab3be14507e68a03a82eeea.zip |
fixes #6687, opened critical terminal notifications for extension
svn changeset:17919/svn branch:6.6
-rw-r--r-- | src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java b/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java index 5f06285b1f..36dd30e364 100644 --- a/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java +++ b/src/com/vaadin/terminal/gwt/server/AbstractApplicationServlet.java @@ -625,7 +625,7 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements * @throws IOException * if the writing failed due to input/output error. */ - protected final void criticalNotification(HttpServletRequest request, + protected void criticalNotification(HttpServletRequest request, HttpServletResponse response, String caption, String message, String details, String url) throws IOException { @@ -692,7 +692,7 @@ public abstract class AbstractApplicationServlet extends HttpServlet implements * Output to write (UTF-8 encoded) * @throws IOException */ - private void writeResponse(HttpServletResponse response, + protected static final void writeResponse(HttpServletResponse response, String contentType, String output) throws IOException { response.setContentType(contentType); final ServletOutputStream out = response.getOutputStream(); |