diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-24 20:58:40 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-24 20:58:40 +0300 |
commit | 43636e2bfe227cfaadeb63d0069c92917eca9c8b (patch) | |
tree | 64f2fbd353a55affb57ee1142e656f9ffc4b2074 | |
parent | ea6c9e771c2385a97aa1fb069d4886ae5ea958a8 (diff) | |
download | vaadin-framework-43636e2bfe227cfaadeb63d0069c92917eca9c8b.tar.gz vaadin-framework-43636e2bfe227cfaadeb63d0069c92917eca9c8b.zip |
Deprecated LoginForm as it no longer works in most supported browsers (#8405)
-rw-r--r-- | server/src/com/vaadin/ui/LoginForm.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/LoginForm.java b/server/src/com/vaadin/ui/LoginForm.java index b65d1cfa06..a748d8d4c5 100644 --- a/server/src/com/vaadin/ui/LoginForm.java +++ b/server/src/com/vaadin/ui/LoginForm.java @@ -27,9 +27,9 @@ import java.util.Map; import com.vaadin.server.ConnectorResource; import com.vaadin.server.DownloadStream; import com.vaadin.server.RequestHandler; -import com.vaadin.server.VaadinSession; import com.vaadin.server.VaadinRequest; import com.vaadin.server.VaadinResponse; +import com.vaadin.server.VaadinSession; import com.vaadin.shared.ApplicationConstants; /** @@ -49,7 +49,11 @@ import com.vaadin.shared.ApplicationConstants; * default component tries to guess the right place for theme css. * * @since 5.3 + * @deprecated as of Vaadin 7.0. This component no longer fulfills its duty + * reliably in the supported browsers and a {@link VerticalLayout} + * with two {@link TextField}s can be used instead. */ +@Deprecated public class LoginForm extends CustomComponent { private String usernameCaption = "Username"; |