Print vaadin session attributes

How can i print all attributes of a Vaadin Session

Something like

for (String key : VaadinSession)
	System.out.println("My Key: " key);

Hi,

you can’t. The attributes map is private and there’s no way to access its keyset. You can only call getAttribute to read a specific attribute.

-Olli

ok, thanks