HttpSession class

Implements:

Constructors

HttpSession ( )

Instance Properties

id String
read-only
onTimeout
write-only
isNew bool
read-only
isEmpty bool Inherited
read-only
keys Iterable Inherited
read-only
values Iterable Inherited
read-only
isNotEmpty bool Inherited
read-only
length int Inherited
read-only

Instance Methods

destroy ( ) → void
Destroys the session. This will terminate the session and any further connections with this id will be given a new id and session.
containsValue Inherited ( Object value ) → bool
Returns true if this map contains the given value.
remove Inherited ( Object key ) → dynamic
Removes key and its associated value, if present, from the map.
clear Inherited ( ) → void
Removes all pairs from the map.
containsKey Inherited ( Object key ) → bool
Returns true if this map contains the given key.
addAll Inherited ( Map other ) → void
Adds all key-value pairs of other to this map.
forEach Inherited ( void f(K key, V value) ) → void
Applies f to each key-value pair of the map.
putIfAbsent Inherited ( key, V ifAbsent() ) → dynamic
Look up the value of key, or add a new value if it isn't there.

Operators

operator []= Inherited ( key, value ) → void
Associates the key with the given value.
operator [] Inherited ( Object key ) → dynamic
Returns the value for the given key or null if key is not in the map.