[seam-commits] Seam SVN: r10363 - trunk/doc/Seam_Reference_Guide/en-US.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Wed Apr 8 19:06:01 EDT 2009
Author: dan.j.allen
Date: 2009-04-08 19:06:00 -0400 (Wed, 08 Apr 2009)
New Revision: 10363
Modified:
trunk/doc/Seam_Reference_Guide/en-US/Components.xml
Log:
add note about disconnecting check from session
Modified: trunk/doc/Seam_Reference_Guide/en-US/Components.xml
===================================================================
--- trunk/doc/Seam_Reference_Guide/en-US/Components.xml 2009-04-08 22:58:39 UTC (rev 10362)
+++ trunk/doc/Seam_Reference_Guide/en-US/Components.xml 2009-04-08 23:06:00 UTC (rev 10363)
@@ -196,14 +196,19 @@
<term><literal>org.jboss.seam.ui.renderStampStore</literal></term>
<listitem>
<para>
- A component (session-scoped by default) responsible for maintaining
- a collection of render stamps. A render stamp is an indicator as
- to whether a form which was rendered has been submitted. This store
- is useful when the client-side state saving method of JSF is being
- used because it puts the determination of whether a form has been
- posted in the control of the server rather than in the component tree
- which is maintained on the client.
+ A component (session-scoped by default) responsible for maintaining a
+ collection of render stamps. A render stamp is an indicator as to whether a
+ form which was rendered has been submitted. This store is useful when the
+ client-side state saving method of JSF is being used because it puts the
+ determination of whether a form has been posted in the control of the server
+ rather than in the component tree which is maintained on the client.
</para>
+ <para>
+ To unbind this check from the session (which is one of the main design goals
+ of client-side state saving) an implementation must be provided that stores
+ the render stamps in the application (valid as long as the application is
+ running) or the database (valid across server restarts).
+ </para>
<itemizedlist>
<listitem>
<para>
More information about the seam-commits
mailing list