Module tapestry.persist
Back to master index

[public] Configuration Point tapestry.persist.PersistenceStrategyOccurs: unbounded
Defines the different strategies for persisting page properties between requests. The names match against the persist attribute of the property element.
Schema
Element <strategy>
Attribute name (required) (unique) Translator: string
A unique name for the strategy.
Attribute object (required) Translator: object
The object implementing PropertyPersistenceStrategy.
Conversion Rules
<conversion class="PropertyPersistenceStrategyContribution" >
  • <map attribute="object" property="strategy" />
</conversion>
Contribution from module tapestry.persist
<strategy name="session" object="service:SessionPropertyPersistenceStrategy" />
<strategy name="client" object="service:PageClientPropertyPersistenceStrategy" />
<strategy name="client:page" object="service:PageClientPropertyPersistenceStrategy" />
<strategy name="client:app" object="service:AppClientPropertyPersistenceStrategy" />

Module tapestry.persist
Back to master index