コード例 #1
0
 public static Object get(Key key) {
   return VaadinSession.getCurrent().getAttribute(key.toString());
 }
コード例 #2
0
 public static void set(Key key, Object object) {
   VaadinSession.getCurrent().setAttribute(key.toString(), object);
 }