Esempio n. 1
0
 /**
  * Put object to map in our own request context. Note, this is not mapped to a framework request
  * context, such as an HttpRequest. It is internal.
  */
 public static void put(String key, Object value) {
   ContextManager.getCurrentRequestContext().getMap().put(key, value);
 }
Esempio n. 2
0
 /**
  * Get object from map in our own request context. Note, this is not mapped to a framework request
  * context, such as an HttpRequest. It is internal.
  */
 public static Object get(String key) {
   return ContextManager.getCurrentRequestContext().getMap().get(key);
 }