OPENJPA-1406 Split up DetachedStateField into two sections

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@926124 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Donald Woods 2010-03-22 15:20:38 +00:00
parent 773eefc313
commit 7c613e69d1
1 changed files with 91 additions and 76 deletions

View File

@ -224,8 +224,22 @@ When detached objects lose their association with the OpenJPA runtime, they also
lose the ability to load additional state from the datastore. It is important,
therefore, to populate objects with all the persistent state you will need
before detaching them. While you are free to do this manually, OpenJPA includes
facilities for automatically populating objects when they detach. The
<link linkend="openjpa.DetachState"><literal>openjpa.DetachState</literal>
facilities for automatically populating objects when they detach.
</para>
<section id="ref_guide_detach_state">
<title>
Detached State
</title>
<indexterm zone="ref_guide_detach_state">
<primary>
detachment
</primary>
<secondary>
detached state
</secondary>
</indexterm>
<para>
The <link linkend="openjpa.DetachState"><literal>openjpa.DetachState</literal>
</link> configuration property determines which fields and relations are
detached by default. All settings are recursive. They are:
</para>
@ -382,6 +396,7 @@ enum DetachStateType {
ALL
}
</programlisting>
</section>
<section id="ref_guide_detach_field">
<title>
Detached State Field