|
static< E > E | get (String key, Supplier< E > supplier) |
|
static< E > E | get (HttpServletRequest request, HttpServletResponse response, String key, Supplier< E > supplier) |
|
static< E > E | get (IConstructor constructor, String key, Supplier< E > supplier) |
|
static void | remove (String key) |
|
static void | remove (HttpServletRequest request, HttpServletResponse response, String key) |
|
static void | remove (IConstructor constructor, String key) |
|
◆ get() [1/3]
◆ get() [2/3]
Definition at line 41 of file AbstractSessionObject.java.
42 if(constructor !=
null && !constructor.isHeadless()) {
43 E
object = (E) constructor.getSessionAttribute(key);
45 object = supplier.get();
46 constructor.setSessionAttribute(key,
object);
50 return supplier.get();
◆ get() [3/3]
◆ remove() [1/3]
◆ remove() [2/3]
Definition at line 61 of file AbstractSessionObject.java.
62 if(constructor !=
null && !constructor.isHeadless()) {
63 constructor.removeSessionAttribute(key);
◆ remove() [3/3]
The documentation for this class was generated from the following file: