Esempio n. 1
0
 /** Gets the inSession meta val, or the default if not set */
 public Boolean metaGetInSession() {
   if (!Meta.containsKey(IN_SESSION_META_KEY)) {
     return false;
   } else {
     return (Boolean) Meta.get(IN_SESSION_META_KEY);
   }
 }