Login form and my POJO class

How can i bind my POJO class to my loginForm. I don’t find any properties like setItemDataSource.

The LoginForm is a bit special, using an HTML form instead of one composed of Vaadin components to support user name and password completion by the browser.

You cannot easily set the initial values without overriding getLoginHTML(), and the only way to get the user given values is by listening to a LoginEvent and copying the values from that.

If you don’t need browser side autocompletion, you can use a normal Vaadin Form instead.