sessionScope"

From Documentation
Line 1: Line 1:
 
== sessionScope - java.util.Map ==
 
== sessionScope - java.util.Map ==
A map of custom attributes associated with the session. It is the same as the <tt>getAttributes</tt> method in the <javadoc>org.zkoss.zk.ui.Session</javadoc> interface.
+
A map of custom attributes associated with the session. It is the same as the <tt>getAttributes</tt> method in the <javadoc type="interface">org.zkoss.zk.ui.Session</javadoc> interface.
  
 
If the client is based on HTTP, such as a Web browser, this is the same map of attributes stored in <tt>javax.servlet.http.HttpSession</tt>. In other words, you could use it communicate with other servlets, such as JSF.
 
If the client is based on HTTP, such as a Web browser, this is the same map of attributes stored in <tt>javax.servlet.http.HttpSession</tt>. In other words, you could use it communicate with other servlets, such as JSF.

Revision as of 07:04, 8 July 2010

sessionScope - java.util.Map

A map of custom attributes associated with the session. It is the same as the getAttributes method in the Session interface.

If the client is based on HTTP, such as a Web browser, this is the same map of attributes stored in javax.servlet.http.HttpSession. In other words, you could use it communicate with other servlets, such as JSF.