mirror of https://github.com/apache/openjpa.git
OPENJPA-1510: Correct broken links, remove link to non-existing locally mirrored JPA spec.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@922946 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8f236c2aeb
commit
f05db49642
|
@ -515,7 +515,7 @@ public void lock(Object entity, LockModeType mode);
|
||||||
</seealso>
|
</seealso>
|
||||||
</indexterm>
|
</indexterm>
|
||||||
This method locks the given entity using the named mode. The
|
This method locks the given entity using the named mode. The
|
||||||
<ulink url="http://java.sun.com/javaee/6/docs/api/javax/persistence/LockmodeType.html">
|
<ulink url="http://java.sun.com/javaee/6/docs/api/javax/persistence/LockModeType.html">
|
||||||
<classname>javax.persistence.LockModeType</classname></ulink> enum defines two
|
<classname>javax.persistence.LockModeType</classname></ulink> enum defines two
|
||||||
modes:
|
modes:
|
||||||
</para>
|
</para>
|
||||||
|
|
|
@ -44,10 +44,5 @@ javax.persistence Javadoc</ulink>
|
||||||
<ulink url="../javadoc/index.html">OpenJPA Javadoc</ulink>
|
<ulink url="../javadoc/index.html">OpenJPA Javadoc</ulink>
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
<ulink url="Persistence.pdf">Locally mirrored JPA specification</ulink>
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</appendix>
|
</appendix>
|
||||||
|
|
|
@ -131,7 +131,7 @@ configuration resource to use, and to override any property.
|
||||||
<para>
|
<para>
|
||||||
Internally, the OpenJPA runtime environment and development
|
Internally, the OpenJPA runtime environment and development
|
||||||
tools manipulate property settings through a general
|
tools manipulate property settings through a general
|
||||||
<ulink url="../javadoc/ResultObjectProvider/lib/conf/Configuration.html">
|
<ulink url="../javadoc/org/apache/openjpa/lib/conf/Configuration.html">
|
||||||
<classname>Configuration</classname></ulink> interface, and in particular its
|
<classname>Configuration</classname></ulink> interface, and in particular its
|
||||||
<ulink url="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html">
|
<ulink url="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html">
|
||||||
<classname>OpenJPAConfiguration</classname></ulink> and
|
<classname>OpenJPAConfiguration</classname></ulink> and
|
||||||
|
@ -1874,8 +1874,8 @@ runtime. See <xref linkend="ref_guide_dbsetup_lrs"/> for details.
|
||||||
<para>
|
<para>
|
||||||
<emphasis role="bold">Description:</emphasis> A plugin list string (see
|
<emphasis role="bold">Description:</emphasis> A plugin list string (see
|
||||||
<xref linkend="ref_guide_conf_plugins"/>) describing the
|
<xref linkend="ref_guide_conf_plugins"/>) describing the
|
||||||
<ulink url="../javadoc/org/apache/openjpa/lib/EncryptionProvider.html"><classname>
|
<ulink url="../javadoc/org/apache/openjpa/lib/encryption/EncryptionProvider.html"><classname>
|
||||||
org.apache.openjpa.lib.EncryptionProvider</classname></ulink>s to use for connection password
|
org.apache.openjpa.lib.encryption.EncryptionProvider</classname></ulink>s to use for connection password
|
||||||
encryption. See <xref linkend="ref_guide_encryption"/> for details.
|
encryption. See <xref linkend="ref_guide_encryption"/> for details.
|
||||||
</para>
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -388,8 +388,8 @@ log4j.appender.console=org.apache.log4j.ConsoleAppender
|
||||||
</indexterm>
|
</indexterm>
|
||||||
<para>
|
<para>
|
||||||
Set the <literal>openjpa.Log</literal> property to <literal>commons</literal> to
|
Set the <literal>openjpa.Log</literal> property to <literal>commons</literal> to
|
||||||
use the <ulink url="http://jakarta.apache.org/commons/logging.html"> Apache
|
use the <ulink url="http://commons.apache.org/logging/"> Apache
|
||||||
Jakarta Commons Logging</ulink> thin library for issuing log messages. The
|
Commons Logging</ulink> thin library for issuing log messages. The
|
||||||
Commons Logging libraries act as a wrapper around a number of popular logging
|
Commons Logging libraries act as a wrapper around a number of popular logging
|
||||||
APIs, including the
|
APIs, including the
|
||||||
<ulink url="http://jakarta.apache.org/log4j/docs/index.html"> Jakarta Log4J
|
<ulink url="http://jakarta.apache.org/log4j/docs/index.html"> Jakarta Log4J
|
||||||
|
|
|
@ -3093,8 +3093,8 @@ openjpa.jdbc.SubclassFetchMode</literal></link> property. Set the JPA
|
||||||
<ulink url="../javadoc/org/apache/openjpa/persistence/jdbc/SubclassFetchMode.html">
|
<ulink url="../javadoc/org/apache/openjpa/persistence/jdbc/SubclassFetchMode.html">
|
||||||
<classname>org.apache.openjpa.persistence.jdbc.SubclassFetchMode</classname>
|
<classname>org.apache.openjpa.persistence.jdbc.SubclassFetchMode</classname>
|
||||||
</ulink> annotation to a value from the
|
</ulink> annotation to a value from the
|
||||||
<ulink url="../javadoc/org/apache/openjpa/persistence/jdbc/EagerFetchType.html">
|
<ulink url="../javadoc/org/apache/openjpa/persistence/jdbc/FetchMode.html">
|
||||||
<classname>org.apache.openjpa.persistence.jdbc.EagerFetchType</classname>
|
<classname>org.apache.openjpa.persistence.jdbc.FetchMode</classname>
|
||||||
</ulink> enum: <literal>JOIN</literal>, <literal>PARALLEL</literal>, or
|
</ulink> enum: <literal>JOIN</literal>, <literal>PARALLEL</literal>, or
|
||||||
<literal>NONE</literal>. See <xref linkend="ref_guide_perfpack_eager"/>
|
<literal>NONE</literal>. See <xref linkend="ref_guide_perfpack_eager"/>
|
||||||
for a discussion of eager fetching.
|
for a discussion of eager fetching.
|
||||||
|
|
|
@ -1814,7 +1814,7 @@ and remove listeners. These methods are outside the bounds of the published Open
|
||||||
<para>
|
<para>
|
||||||
For details on the transaction framework, see the <literal>
|
For details on the transaction framework, see the <literal>
|
||||||
org.apache.openjpa.event</literal> package
|
org.apache.openjpa.event</literal> package
|
||||||
<ulink url="../javadoc/org/apache/openjpa/event/package.html">Javadoc</ulink>.
|
<ulink url="../javadoc/org/apache/openjpa/event/package-summary.html">Javadoc</ulink>.
|
||||||
Also see <xref linkend="ref_guide_event"/> for a description of OpenJPA's
|
Also see <xref linkend="ref_guide_event"/> for a description of OpenJPA's
|
||||||
remote event support.
|
remote event support.
|
||||||
</para>
|
</para>
|
||||||
|
|
Loading…
Reference in New Issue