Package org.dwcj.environment.namespace
Class SessionNamespace
java.lang.Object
org.dwcj.environment.namespace.SessionNamespace
- All Implemented Interfaces:
Namespace
A session namespace is a singleton that only exists within the current application server thread.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.dwcj.environment.namespace.Namespace
Namespace.NamespaceType -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Delete all variables in this namespaceretrieve a variable from the namespacekeySet()list all variables in this namespacevoidPut a variable in the namespacevoidremove a variable from the namespaceintsize()Get the variable count in this namespace.
-
Constructor Details
-
SessionNamespace
public SessionNamespace()
-
-
Method Details
-
put
Description copied from interface:NamespacePut a variable in the namespace -
get
Description copied from interface:Namespaceretrieve a variable from the namespace -
remove
Description copied from interface:Namespaceremove a variable from the namespace -
keySet
Description copied from interface:Namespacelist all variables in this namespace -
size
public int size()Description copied from interface:NamespaceGet the variable count in this namespace. -
clear
public void clear()Description copied from interface:NamespaceDelete all variables in this namespace
-