]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix javadoc for CustomizedSystemMessages (#9970)
authorMichael Benz <michael.benz@foconis.de>
Tue, 12 Sep 2017 10:29:12 +0000 (12:29 +0200)
committerHenri Sara <henri.sara@gmail.com>
Tue, 12 Sep 2017 10:29:12 +0000 (13:29 +0300)
Fixed two typos in the CustomizedSystemMessages Javadoc.
Added the two missing situations: (although AuthenticationError seems not to be used in the server workspace)

Authentication error: the client received a 401 (Unauthorized) response from the server.
Cookies disabled: the browser does not support cookies
reference in documentation:
https://vaadin.com/vaadin-documentation-portlet/framework/application/application-errors.html

server/src/main/java/com/vaadin/server/CustomizedSystemMessages.java

index 2ff1c3d4e86895bd209aeeca609515d66a432e68..c8f9781f672a0d6f2afac9aa0c75e62c54022365 100644 (file)
@@ -31,7 +31,7 @@ import java.io.Serializable;
  * </p>
  * <p>
  * The default behavior is to show a notification, and restart the application
- * the the user clicks the message. <br/>
+ * if the user clicks the message. <br/>
  * Instead of restarting the application, you can set a specific URL that the
  * user is taken to.<br/>
  * Setting both caption and message to null will restart the application (or go
@@ -42,10 +42,13 @@ import java.io.Serializable;
  * The situations are:
  * <li>Session expired: the user session has expired, usually due to inactivity.
  * </li>
+ * <li>Authentication error: the client received a 401 (Unauthorized) response
+ * from the server.</li>
  * <li>Communication error: the client failed to contact the server, or the
- * server returned and invalid response.</li>
+ * server returned an invalid response.</li>
  * <li>Internal error: unhandled critical server error (e.g out of memory,
  * database crash)
+ * <li>Cookies disabled: the browser does not support cookies</li>
  * </p>
  */