This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch wicket-9.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-9.x by this push:
new 177a014 Fix spelling in user guide
177a014 is described below
commit 177a01468a6af992829696830f0169210c86f16c
Author: Filipe Roque <[email protected]>
AuthorDate: Mon Nov 22 13:50:21 2021 +0000
Fix spelling in user guide
(cherry picked from commit 79f74d574b96c624f81f9c1ba791c5eca04cbd36)
---
wicket-user-guide/src/main/asciidoc/modelsforms/modelsforms_7.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wicket-user-guide/src/main/asciidoc/modelsforms/modelsforms_7.adoc
b/wicket-user-guide/src/main/asciidoc/modelsforms/modelsforms_7.adoc
index 44d34e9..16c8920 100644
--- a/wicket-user-guide/src/main/asciidoc/modelsforms/modelsforms_7.adoc
+++ b/wicket-user-guide/src/main/asciidoc/modelsforms/modelsforms_7.adoc
@@ -14,7 +14,7 @@ image::../img/detachable-models.png[]
This interface provides a method called detach() which is invoked by Wicket at
the end of web request processing when data model is no more needed but before
serialization occurs. Overriding this method we can clean any reference to data
object keeping just the information needed to retrieve it later (for example
the id of the table row where our data are stored). In this way we can avoid
the serialization of the object wrapped into the model overcoming both the
problem with non-serializ [...]
Since IModel inherits from IDetachable, every model of Wicket is “detachable”,
although not all of them implement a detaching policy (like the Model class).
-Usually detaching operations are strictly dependent on the persistence
technology adopted for model objects (like a relational db, a NoSQL db, a
queue, etc), so it's not unusual to write a custom detachable model suited for
the persistence technology chosen for a given project. To ease this task Wicket
provides abstract model LoadableDetachableModel. This class internally holds a
transient reference to a model object which is initialized the first time
getObject()is called to precess a r [...]
+Usually detaching operations are strictly dependent on the persistence
technology adopted for model objects (like a relational db, a NoSQL db, a
queue, etc), so it's not unusual to write a custom detachable model suited for
the persistence technology chosen for a given project. To ease this task Wicket
provides abstract model LoadableDetachableModel. This class internally holds a
transient reference to a model object which is initialized the first time
getObject() is called to process a [...]
The following class diagram summarizes the methods defined inside
LoadableDetachableModel.