Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/migration_considerations.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/migration_considerations.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/migration_considerations.html
Thu Jun 28 09:26:41 2018
@@ -172,7 +172,7 @@
</p>
<p>
In addition, a new method has been provided on the
- <a class="ulink"
href="../javadoc/org/apache/openjpa/persistence/OpenJPAEntityManager.html"
target="_top">
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/persistence/OpenJPAEntityManager.html"
target="_top">
<code class="classname">OpenJPAEntityManager</code></a>
interface to return a copy of the entity:
</p><pre class="programlisting">
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_cache_querycomp.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_cache_querycomp.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_cache_querycomp.html
Thu Jun 28 09:26:41 2018
@@ -31,7 +31,7 @@ their parsed form. This property accept
<code class="literal">org.apache.openjpa.util.CacheMap</code>
</td><td align="left">
The default option. Uses a
-<a class="ulink" href="../javadoc/org/apache/openjpa/util/CacheMap.html"
target="_top">
+<a class="ulink" href="../../apidocs/org/apache/openjpa/util/CacheMap.html"
target="_top">
<code class="literal">CacheMap</code></a> to store compilation data.
<code class="literal">CacheMap</code> maintains a fixed number of cache
entries, and an
optional soft reference map for entries that are moved out of the LRU space.
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_cache_querysql.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_cache_querysql.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_cache_querysql.html
Thu Jun 28 09:26:41 2018
@@ -32,7 +32,7 @@ optionally collected as
</p><pre class="programlisting">
<property name="openjpa.jdbc.QuerySQLCache"
value="true(EnableStatistics=true)">
</pre><p>
-The <a class="ulink"
href="../javadoc/org/apache/openjpa/kernel/QueryStatistics.html" target="_top">
+The <a class="ulink"
href="../../apidocs/org/apache/openjpa/kernel/QueryStatistics.html"
target="_top">
<code class="code">QueryStatistics</code></a> can be accessed via <code
class="code">PreparedQueryCache.getStatistics()</code>.
</p>
@@ -46,7 +46,7 @@ The <a class="ulink" href="../javadoc/or
<code class="literal">org.apache.openjpa.util.CacheMap</code>
</td><td align="left">
The default option. Uses a
-<a class="ulink" href="../javadoc/org/apache/openjpa/util/CacheMap.html"
target="_top">
+<a class="ulink" href="../../apidocs/org/apache/openjpa/util/CacheMap.html"
target="_top">
<code class="literal">CacheMap</code></a> to store SQL string.
<code class="literal">CacheMap</code> maintains a fixed number of cache
entries, and an
optional soft reference map for entries that are moved out of the LRU space.
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_caching.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_caching.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_caching.html
Thu Jun 28 09:26:41 2018
@@ -260,7 +260,7 @@ public class Employee {
</p>
</div></div><br class="example-break">
<p>
-See the <a class="ulink"
href="../javadoc/org/apache/openjpa/persistence/DataCache.html" target="_top">
+See the <a class="ulink"
href="../../apidocs/org/apache/openjpa/persistence/DataCache.html"
target="_top">
<code class="classname">org.apache.openjpa.persistence.DataCache</code></a>
Javadoc
for more information on the <code class="classname">DataCache</code>
annotation.
</p>
@@ -437,7 +437,7 @@ is defaulted to <code class="literal">co
<p>
The <code class="literal">org.apache.openjpa.datacache</code> package defines
OpenJPA's
data caching framework. While you may use this framework directly (see its
-<a class="ulink"
href="../javadoc/org/apache/openjpa/datacache/package-summary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/datacache/package-summary.html"
target="_top">
Javadoc</a> for details), its APIs are meant primarily for service
providers. In fact, <a class="xref"
href="ref_guide_caching.html#ref_guide_cache_extension" title="1.5. Cache
Extension">Section 1.5, “
Cache Extension
@@ -449,7 +449,7 @@ Rather than use the low-level <code clas
package APIs, JPA users should typically access the data cache through the JPA
standard <code class="classname">javax.persistence.Cache</code> interface, or
OpenJPA's
high-level
-<a class="ulink"
href="../javadoc/org/apache/openjpa/persistence/StoreCache.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/persistence/StoreCache.html"
target="_top">
<code class="classname">org.apache.openjpa.persistence.StoreCache</code></a>
facade.
</p>
<p>
@@ -572,7 +572,7 @@ cache.evict(Magazine.class, changedMag.g
</div></div><br class="example-break">
<p>
See the <code class="classname">StoreCache</code>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/persistence/StoreCache.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/persistence/StoreCache.html"
target="_top">
Javadoc</a> for information on additional functionality it provides. Also,
<a class="xref" href="ref_guide_runtime.html" title="Chapter 9.
Runtime Extensions">Chapter 9, <i>
Runtime Extensions
@@ -614,7 +614,7 @@ oem.evict(changedMag); // will evict fr
<p>
Number of requests to read and write requests and hit ratio of
the
data cache is available via
-<a class="ulink"
href="../javadoc/org/apache/openjpa/datacache/CacheStatistics.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/datacache/CacheStatistics.html"
target="_top">
<code
class="classname">org.apache.openjpa.datacache.CacheStatistics</code></a>
interface. The collection of cache statistics is disabled by default and needs
to be enabled on a per cache basis. By default
all counts returned from the CacheStatistics interface will return 0.
@@ -698,7 +698,7 @@ execution time is fully traversed.
</p>
<p>
OpenJPA exposes a high-level interface to the query cache through the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/persistence/QueryResultCache.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/persistence/QueryResultCache.html"
target="_top">
<code
class="classname">org.apache.openjpa.persistence.QueryResultCache</code></a>
class. You can access this class through the <code class="classname">
OpenJPAEntityManagerFactory</code>.
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_jdbc.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_jdbc.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_jdbc.html
Thu Jun 28 09:26:41 2018
@@ -62,7 +62,7 @@ openjpa.jdbc.ConnectionDecorators</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getConnectionDecorators()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getConnectionDecorators()"
target="_top">
<code class="methodname">
org.apache.openjpa.jdbc.conf.JDBCConfiguration.getConnectionDecorators
</code></a>
@@ -79,7 +79,7 @@ ConnectionDecorators</code>
strings (see <a class="xref" href="ref_guide_conf_plugins.html"
title="4. Plugin Configuration">Section 4, “
Plugin Configuration
”</a>) describing
-<a class="ulink"
href="../javadoc/org/apache/openjpa/lib/jdbc/ConnectionDecorator.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/jdbc/ConnectionDecorator.html"
target="_top">
<code
class="classname">org.apache.openjpa.lib.jdbc.ConnectionDecorator</code></a>
instances to install on the connection factory. These decorators can wrap
connections passed from the underlying <code
class="classname">DataSource</code> to add
@@ -101,7 +101,7 @@ openjpa.jdbc.DBDictionary</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getDBDictionary()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getDBDictionary()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getDBDictionary
</code></a>
</p>
@@ -120,7 +120,7 @@ openjpa.ConnectionDriverName</code></a>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/DBDictionary.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/DBDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.DBDictionary</code></a> to
use
for database interaction. OpenJPA typically auto-configures the dictionary
based
on the JDBC URL, but you may have to set this property explicitly if you are
@@ -144,7 +144,7 @@ openjpa.jdbc.DriverDataSource</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getDriverDataSource()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getDriverDataSource()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getDriverDataSource
</code></a>
</p>
@@ -162,7 +162,7 @@ DriverDataSource</code>
<p>
<span class="bold"><strong>Description:</strong></span> The alias or full
class name of
the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/schema/DriverDataSource.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/schema/DriverDataSource.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.schema.DriverDataSource</code></a>
implementation to use to wrap JDBC Driver classes with javax.sql.DataSource
instances. The <code
class="classname">org.apache.openjpa.jdbc.schema.AutoDriverDataSource</code>
implementation is the default and will select either the DBCPDriverDataSource
or SimpleDriverDataSource based on if Apache Commons DBCP is available
@@ -182,7 +182,7 @@ openjpa.jdbc.EagerFetchMode</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getEagerFetchMode()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getEagerFetchMode()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getEagerFetchMode
</code></a>
</p>
@@ -217,7 +217,7 @@ openjpa.jdbc.FetchDirection</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getFetchDirection()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getFetchDirection()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getFetchDirection
</code></a>
</p>
@@ -252,7 +252,7 @@ openjpa.jdbc.JDBCListeners</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getJDBCListeners()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getJDBCListeners()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getJDBCListeners
</code></a>
</p>
@@ -268,7 +268,7 @@ JDBCListeners</code>
strings (see <a class="xref" href="ref_guide_conf_plugins.html"
title="4. Plugin Configuration">Section 4, “
Plugin Configuration
”</a>) describing
-<a class="ulink"
href="../javadoc/org/apache/openjpa/lib/jdbc/JDBCListener.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/jdbc/JDBCListener.html"
target="_top">
<code class="classname">org.apache.openjpa.lib.jdbc.JDBCListener</code></a>
event
listeners to install. These listeners will be notified on various JDBC-related
events.
@@ -286,7 +286,7 @@ events.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getLRSSize()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getLRSSize()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getLRSSize
</code></a>
</p>
@@ -321,7 +321,7 @@ openjpa.jdbc.MappingDefaults</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getMappingDefaults()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getMappingDefaults()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getMappingDefaults
</code></a>
</p>
@@ -337,7 +337,7 @@ MappingDefaults</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/meta/MappingDefaults.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/meta/MappingDefaults.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.meta.MappingDefaults</code></a> to
use to define default column names, table names, and constraints for your
persistent classes. See <a class="xref" href="ref_guide_mapping_factory.html"
title="5. Mapping Factory">Section 5, “
@@ -358,7 +358,7 @@ openjpa.jdbc.MappingFactory</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getMappingFactory()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getMappingFactory()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getMappingFactory
</code></a>
</p>
@@ -374,7 +374,7 @@ MappingFactory</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/meta/MetaDataFactory.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/meta/MetaDataFactory.html" target="_top">
<code class="classname">org.apache.openjpa.meta.MetaDataFactory</code></a> to
use to
store and retrieve object-relational mapping information for your persistent
classes. See <a class="xref" href="ref_guide_mapping_factory.html"
title="5. Mapping Factory">Section 5, “
@@ -421,7 +421,7 @@ openjpa.jdbc.ResultSetType</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getResultSetType()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getResultSetType()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getResultSetType
</code></a>
</p>
@@ -455,7 +455,7 @@ when fetching result lists. This propert
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSchema()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSchema()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getSchema
</code></a>
</p>
@@ -486,7 +486,7 @@ openjpa.jdbc.SchemaFactory</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSchemaFactory()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSchemaFactory()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getSchemaFactory
</code></a>
</p>
@@ -507,7 +507,7 @@ others
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/schema/SchemaFactory.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/schema/SchemaFactory.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.schema.SchemaFactory</code></a> to
use to store and retrieve information about the database schema. See
<a class="xref"
href="ref_guide_schema_info.html#ref_guide_schema_info_factory"
title="12.2. Schema Factory">Section 12.2, “
@@ -526,7 +526,7 @@ use to store and retrieve information ab
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSchemas()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSchemas()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getSchemas
</code></a>
</p>
@@ -557,7 +557,7 @@ schemas and/or tables used for your pers
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSQLFactory()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSQLFactory()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getSQLFactory
</code></a>
</p>
@@ -573,7 +573,7 @@ SQLFactory</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink" href="../javadoc/org/apache/openjpa/jdbc/sql/SQLFactory.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/SQLFactory.html"
target="_top"><code class="classname">
org.apache.openjpa.jdbc.sql.SQLFactory</code></a> to use to abstract
common SQL constructs.
</p>
@@ -591,7 +591,7 @@ openjpa.jdbc.SubclassFetchMode</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSubclassFetchMode()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSubclassFetchMode()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getSubclassFetchMode
</code></a>
</p>
@@ -626,7 +626,7 @@ openjpa.jdbc.SynchronizeMappings</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSynchronizeMappings()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getSynchronizeMappings()"
target="_top">
<code class="methodname">
org.apache.openjpa.jdbc.conf.JDBCConfiguration.getSynchronizeMappings
</code></a>
@@ -660,7 +660,7 @@ openjpa.jdbc.TransactionIsolation</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getTransactionIsolation()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getTransactionIsolation()"
target="_top">
<code class="methodname">
org.apache.openjpa.jdbc.conf.JDBCConfiguration.getTransactionIsolation
</code></a>
@@ -698,7 +698,7 @@ openjpa.jdbc.UpdateManager</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getUpdateManager()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html#getUpdateManager()"
target="_top">
<code
class="methodname">org.apache.openjpa.jdbc.conf.JDBCConfiguration.getUpdateManager
</code></a>
</p>
@@ -716,11 +716,11 @@ batching-constraint</code>, <code class=
</p>
<p>
<span class="bold"><strong>Description:</strong></span> The full class name of
the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/kernel/UpdateManager.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/kernel/UpdateManager.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.kernel.UpdateManager</code></a> to
use to flush persistent object changes to the datastore. The provided default
implementation is
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/kernel/BatchingConstraintUpdateManager"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/kernel/BatchingConstraintUpdateManager"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.kernel.BatchingConstraintUpdateManager</code>
</a>.
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_openjpa.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_openjpa.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_openjpa.html
Thu Jun 28 09:26:41 2018
@@ -181,7 +181,7 @@ and their OpenJPA equivalent.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getAutoClear()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getAutoClear()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getAutoClear
</code></a>
</p>
@@ -214,7 +214,7 @@ transaction.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getAutoDetach()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getAutoDetach()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getAutoDetach
</code></a>
</p>
@@ -256,7 +256,7 @@ managed objects after the transaction an
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getBrokerFactory()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getBrokerFactory()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getBrokerFactory
</code></a>
</p>
@@ -276,7 +276,7 @@ BrokerFactory</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/kernel/BrokerFactory.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/kernel/BrokerFactory.html" target="_top">
<code class="classname">org.apache.openjpa.kernel.BrokerFactory</code></a>
type to
use.
</p>
@@ -293,7 +293,7 @@ use.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getBrokerImpl()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getBrokerImpl()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getBrokerImpl
</code></a>
</p>
@@ -309,7 +309,7 @@ BrokerImpl</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink" href="../javadoc/org/apache/openjpa/kernel/Broker.html"
target="_top"><code class="classname">
+<a class="ulink" href="../../apidocs/org/apache/openjpa/kernel/Broker.html"
target="_top"><code class="classname">
org.apache.openjpa.kernel.Broker</code></a> type to use at runtime. See
<a class="xref"
href="ref_guide_runtime.html#ref_guide_runtime_broker_extension"
title="1.2. Broker Customization and Eviction">Section 1.2, “
Broker Customization and Eviction
@@ -326,7 +326,7 @@ org.apache.openjpa.kernel.Broker</code><
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
- <a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getCallbackOptionsInstance()"
target="_top">
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getCallbackOptionsInstance()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getCallbackOptionsInstance</code></a>
</p>
<p>
@@ -369,7 +369,7 @@ properties related to callbacks. The plu
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getClassResolver()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getClassResolver()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getClassResolver
</code></a>
</p>
@@ -385,7 +385,7 @@ ClassResolver</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink" href="../javadoc/org/apache/openjpa/util/ClassResolver.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/util/ClassResolver.html"
target="_top"><code class="classname">
org.apache.openjpa.util.ClassResolver</code></a> implementation to use
for class name resolution. You may wish to plug in your own resolver if you
have
special classloading needs.
@@ -403,7 +403,7 @@ special classloading needs.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getCompatibility()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getCompatibility()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getCompatibility
</code></a>
</p>
@@ -431,7 +431,7 @@ openjpa.ConnectionDriverName</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionDriverName()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionDriverName()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionDriverName
</code></a>
@@ -464,7 +464,7 @@ openjpa.Connection2DriverName</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2DriverName()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2DriverName()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnection2DriverName
</code></a>
@@ -500,7 +500,7 @@ openjpa.ConnectionFactory</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactory
</code></a>
</p>
@@ -531,7 +531,7 @@ openjpa.ConnectionFactory2</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory2()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory2()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactory2
</code></a>
</p>
@@ -562,7 +562,7 @@ openjpa.ConnectionFactoryName</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactoryName()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactoryName()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactoryName
</code></a>
@@ -594,7 +594,7 @@ openjpa.ConnectionFactory2Name</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory2Name()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory2Name()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactory2Name
</code></a>
@@ -626,7 +626,7 @@ openjpa.ConnectionFactoryMode</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactoryMode()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactoryMode()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactoryMode
</code></a>
@@ -662,7 +662,7 @@ openjpa.ConnectionFactoryProperties</cod
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactoryProperties()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactoryProperties()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactoryProperties
</code></a>
@@ -697,7 +697,7 @@ openjpa.ConnectionFactory2Properties</co
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory2Properties()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionFactory2Properties()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionFactory2Properties
</code></a>
@@ -733,7 +733,7 @@ openjpa.ConnectionPassword</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionPassword()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionPassword()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionPassword
</code></a>
</p>
@@ -764,7 +764,7 @@ openjpa.Connection2Password</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2Password()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2Password()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnection2Password
</code></a>
</p>
@@ -799,7 +799,7 @@ openjpa.ConnectionProperties</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionProperties()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionProperties()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionProperties
</code></a>
@@ -834,7 +834,7 @@ openjpa.Connection2Properties</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2Properties()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2Properties()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnection2Properties
</code></a>
@@ -870,7 +870,7 @@ alternate connection factory used for un
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionURL()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionURL()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionURL
</code></a>
</p>
@@ -900,7 +900,7 @@ ConnectionURL</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2URL()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2URL()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnection2URL
</code></a>
</p>
@@ -935,7 +935,7 @@ openjpa.ConnectionUserName</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionUserName()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionUserName()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionUserName
</code></a>
</p>
@@ -966,7 +966,7 @@ openjpa.Connection2UserName</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2UserName()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnection2UserName()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getConnection2UserName
</code></a>
</p>
@@ -1001,7 +1001,7 @@ openjpa.ConnectionRetainMode</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionRetainMode()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getConnectionRetainMode()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getConnectionRetainMode
</code></a>
@@ -1033,7 +1033,7 @@ sessions. See <a class="xref" href="ref_
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCache()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCache()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getDataCache
</code></a>
</p>
@@ -1049,7 +1049,7 @@ DataCache</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink" href="../javadoc/org/apache/openjpa/datacache/DataCache.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/datacache/DataCache.html"
target="_top"><code class="classname">
org.apache.openjpa.datacache.DataCache</code></a>s to use for data
caching. See <a class="xref"
href="ref_guide_caching.html#ref_guide_cache_conf" title="1.1. Data Cache
Configuration">Section 1.1, “
Data Cache Configuration
@@ -1068,7 +1068,7 @@ openjpa.DataCacheManager</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCacheManager()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCacheManager()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getDataCacheManager
</code></a>
</p>
@@ -1084,7 +1084,7 @@ DataCacheManager</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/datacache/DataCacheManager.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/datacache/DataCacheManager.html"
target="_top">
<code class="classname">openjpa.datacache.DataCacheManager</code></a> that
manages
the system data caches. See <a class="xref"
href="ref_guide_caching.html#ref_guide_cache" title="1. Data
Cache">Section 1, “
Data Cache
@@ -1104,7 +1104,7 @@ openjpa.DataCacheMode</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCacheMode()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCacheMode()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getDataCacheMode
</code></a>
</p>
@@ -1116,7 +1116,7 @@ DataCacheMode</code>
<span class="bold"><strong>Default: </strong></span><code
class="literal">DataCacheMode.UNSPECIFIED (see javadoc for details)</code>
</p>
<p>
-<span class="bold"><strong>Description:</strong></span>Determines which
entities will be included in the DataCache. May be any of the values defined in
<a class="ulink"
href="../javadoc/org/apache/openjpa/datacache/DataCacheMode.html"
target="_top">../javadoc/org/apache/openjpa/datacache/DataCacheMode.html</a>.
+<span class="bold"><strong>Description:</strong></span>Determines which
entities will be included in the DataCache. May be any of the values defined in
<a class="ulink"
href="../../apidocs/org/apache/openjpa/datacache/DataCacheMode.html"
target="_top">../javadoc/org/apache/openjpa/datacache/DataCacheMode.html</a>.
</p>
</div>
@@ -1132,7 +1132,7 @@ openjpa.DataCacheTimeout</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCacheTimeout()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDataCacheTimeout()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getDataCacheTimeout
</code></a>
</p>
@@ -1165,7 +1165,7 @@ classes. See <a class="xref" href="ref_g
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfigurationImpl.html#getDetachState()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfigurationImpl.html#getDetachState()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfigurationImpl.getDetachState
</code></a>
</p>
@@ -1201,7 +1201,7 @@ openjpa.DynamicDataStructs</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDynamicDataStructs()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDynamicDataStructs()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getDynamicDataStructs
</code></a>
</p>
@@ -1233,7 +1233,7 @@ memory and speed optimization over time.
</p>
<p>
<span class="bold"><strong>Configuration API: </strong></span>
- <a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDynamicEnhancementAgent()"
target="_top">org.apache.openjpa.conf.OpenJPAConfiguration.getDynamicEnhancementAgent</a>
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getDynamicEnhancementAgent()"
target="_top">org.apache.openjpa.conf.OpenJPAConfiguration.getDynamicEnhancementAgent</a>
</p>
<p>
<span class="bold"><strong>Resource adaptor config
property:</strong></span>
@@ -1269,7 +1269,7 @@ memory and speed optimization over time.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getFetchBatchSize()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getFetchBatchSize()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getFetchBatchSize
</code></a>
</p>
@@ -1300,7 +1300,7 @@ runtime. See <a class="xref" href="ref_g
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
- <a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getEncryptionProvider()"
target="_top">
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getEncryptionProvider()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getEncryptionProvider</code>
</a>
</p>
@@ -1316,7 +1316,7 @@ runtime. See <a class="xref" href="ref_g
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/lib/encryption/EncryptionProvider.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/encryption/EncryptionProvider.html"
target="_top"><code class="classname">
org.apache.openjpa.lib.encryption.EncryptionProvider</code></a>s to use for
connection password
encryption. See <a class="xref" href="ref_guide_encryption.html"
title="Chapter 11. Encryption Provider">Chapter 11, <i>
Encryption Provider
@@ -1336,7 +1336,7 @@ encryption. See <a class="xref" href="re
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getFetchGroups()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getFetchGroups()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getFetchGroups
</code></a>
</p>
@@ -1374,7 +1374,7 @@ openjpa.FlushBeforeQueries</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getFlushBeforeQueries()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getFlushBeforeQueries()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getFlushBeforeQueries
</code></a>
</p>
@@ -1404,7 +1404,7 @@ query. See <a class="xref" href="ref_gui
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getIgnoreChanges()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getIgnoreChanges()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getIgnoreChanges
</code></a>
</p>
@@ -1459,7 +1459,7 @@ or flush before running it against the d
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#isInitializeEagerly()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#isInitializeEagerly()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.isInitializeEagerly
</code></a>
</p>
@@ -1497,7 +1497,7 @@ openjpa.Instrumentation</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getInstrumentation()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getInstrumentation()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getInstrumentation
</code></a>
@@ -1518,7 +1518,7 @@ Instrumentation</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing one or more instances of
-<a class="ulink"
href="../javadoc/org/apache/openjpa/lib/instrumentation/InstrumentationProvider.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/instrumentation/InstrumentationProvider.html"
target="_top">
<code
class="classname">org.apache.openjpa.lib.instrumentation.InstrumentationProvider</code></a>
and
specific instruments to enable. See <a class="xref"
href="ref_guide_instrumentation.html" title="Chapter 16.
Instrumentation">Chapter 16, <i>
Instrumentation
@@ -1538,7 +1538,7 @@ specific instruments to enable. See <a c
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getInverseManager()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getInverseManager()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getInverseManager
</code></a>
</p>
@@ -1558,7 +1558,7 @@ InverseManager</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing a
-<a class="ulink"
href="../javadoc/org/apache/openjpa/kernel/InverseManager.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/kernel/InverseManager.html"
target="_top">
<code class="classname">org.apache.openjpa.kernel.InverseManager</code></a> to
use
for managing bidirectional relations upon a flush. See
<a class="xref" href="ref_guide_inverses.html" title="5. Managed
Inverses">Section 5, “
@@ -1578,7 +1578,7 @@ for managing bidirectional relations upo
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getLockManager()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getLockManager()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getLockManager
</code></a>
</p>
@@ -1598,7 +1598,7 @@ LockManager</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing a
-<a class="ulink" href="../javadoc/org/apache/openjpa/kernel/LockManager.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/kernel/LockManager.html"
target="_top"><code class="classname">
org.apache.openjpa.kernel.LockManager</code></a> to use for acquiring
locks on persistent instances during transactions. See
<a class="xref" href="ref_guide_locking.html#ref_guide_locking_lockmgr"
title="3.4. Lock Manager">Section 3.4, “
@@ -1618,7 +1618,7 @@ locks on persistent instances during tra
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getLockTimeout()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getLockTimeout()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getLockTimeout
</code></a>
</p>
@@ -1648,7 +1648,7 @@ for an object lock before throwing an ex
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/lib/conf/Configuration.html#getLog()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/conf/Configuration.html#getLog()"
target="_top">
<code
class="methodname">org.apache.openjpa.lib.conf.Configuration.getLog</code>
</a>
</p>
@@ -1669,7 +1669,7 @@ for an object lock before throwing an ex
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing a
-<a class="ulink" href="../javadoc/org/apache/openjpa/lib/log/LogFactory.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/log/LogFactory.html"
target="_top"><code class="classname">
org.apache.openjpa.lib.log.LogFactory</code></a> to use for logging.
For details on logging, see <a class="xref" href="ref_guide_logging.html"
title="Chapter 3. Logging and Auditing">Chapter 3, <i>
Logging and Auditing
@@ -1688,7 +1688,7 @@ For details on logging, see <a class="xr
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getManagedRuntime()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getManagedRuntime()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getManagedRuntime
</code></a>
</p>
@@ -1704,7 +1704,7 @@ ManagedRuntime</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink" href="../javadoc/org/apache/openjpa/ee/ManagedRuntime.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/ee/ManagedRuntime.html"
target="_top"><code class="classname">
org.apache.openjpa.ee.ManagedRuntime</code></a> implementation to use
for obtaining a reference to the <code
class="classname">TransactionManager</code> in an
enterprise environment.
@@ -1721,7 +1721,7 @@ enterprise environment.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMapping()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMapping()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getMapping</code>
</a>
</p>
@@ -1749,7 +1749,7 @@ object-to-datastore mapping to use.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMaxFetchDepth()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMaxFetchDepth()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getMaxFetchDepth
</code></a>
</p>
@@ -1780,7 +1780,7 @@ traverse when eager fetching. Use -1 for
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMetaDataFactory()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMetaDataFactory()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getMetaDataFactory
</code></a>
</p>
@@ -1796,7 +1796,7 @@ MetaDataFactory</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/meta/MetaDataFactory.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/meta/MetaDataFactory.html" target="_top">
<code class="classname">openjpa.meta.MetaDataFactory</code></a> to use to
store and
retrieve metadata for your persistent classes. See
<a class="xref" href="ref_guide_meta.html#ref_guide_meta_factory"
title="1. Metadata Factory">Section 1, “
@@ -1817,7 +1817,7 @@ retrieve metadata for your persistent cl
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMetaDataRepository()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMetaDataRepository()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getMetaDataRepository
</code></a>
</p>
@@ -1833,7 +1833,7 @@ MetaDataRepository</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/meta/MetaDataRepository.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/meta/MetaDataRepository.html"
target="_top">
<code class="classname">openjpa.meta.MetaDataRepository</code></a> to use to
store and
retrieve metadata for your persistent classes. See
<a class="xref" href="ref_guide_meta_repository.html" title="2. Metadata
Repository">Section 2, “Metadata Repository”</a> for details.
@@ -1854,7 +1854,7 @@ retrieve metadata for your persistent cl
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMultithreaded()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getMultithreaded()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getMultithreaded
</code></a>
</p>
@@ -1883,7 +1883,7 @@ will be accessed by multiple threads at
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getOptimistic()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getOptimistic()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getOptimistic
</code></a>
</p>
@@ -1911,7 +1911,7 @@ pessimistic (datastore) transactional mo
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getOptimizeIdCopy()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getOptimizeIdCopy()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getOptimizeIdCopy
</code></a>
</p>
@@ -1949,7 +1949,7 @@ openjpa.OrphanedKeyAction</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getOrphanedKeyAction()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getOrphanedKeyAction()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getOrphanedKeyAction
</code></a>
</p>
@@ -1969,7 +1969,7 @@ OrphanedKeyAction</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing a
-<a class="ulink"
href="../javadoc/org/apache/openjpa/event/OrphanedKeyAction.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/event/OrphanedKeyAction.html"
target="_top">
<code class="classname">org.apache.openjpa.event.OrphanedKeyAction</code></a>
to
invoke when OpenJPA discovers an orphaned datastore key. See
<a class="xref" href="ref_guide_orphan.html" title="11. Orphaned
Keys">Section 11, “
@@ -1988,7 +1988,7 @@ openjpa.NontransactionalRead</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getNontransactionalRead()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getNontransactionalRead()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getNontransactionalRead
</code></a>
@@ -2016,7 +2016,7 @@ openjpa.NontransactionalWrite</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getNontransactionalWrite()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getNontransactionalWrite()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getNontransactionalWrite
</code></a>
@@ -2046,7 +2046,7 @@ will take effect on the next transaction
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getProxyManager()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getProxyManager()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getProxyManager
</code></a>
</p>
@@ -2062,7 +2062,7 @@ ProxyManager</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing a
-<a class="ulink" href="../javadoc/org/apache/openjpa/util/ProxyManager.html"
target="_top"><code class="classname">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/util/ProxyManager.html"
target="_top"><code class="classname">
org.apache.openjpa.util.ProxyManager</code></a> to use for proxying
mutable second class objects. See
<a class="xref" href="ref_guide_pc_scos.html#ref_guide_pc_scos_proxy_custom"
title="6.4.3. Custom Proxies">Section 6.4.3, “
@@ -2082,7 +2082,7 @@ mutable second class objects. See
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
- <a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getPostLoadOnMerge()"
target="_top">
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getPostLoadOnMerge()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getPostLoadOnMerge
</code></a>
@@ -2116,7 +2116,7 @@ mutable second class objects. See
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getQueryCache()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getQueryCache()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getQueryCache
</code></a>
</p>
@@ -2132,7 +2132,7 @@ QueryCache</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/datacache/QueryCache.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/datacache/QueryCache.html" target="_top">
<code class="classname">org.apache.openjpa.datacache.QueryCache</code></a>
implementation to use for caching of queries loaded from the data store. See
<a class="xref" href="ref_guide_caching.html#ref_guide_cache_query"
title="1.4. Query Cache">Section 1.4, “
@@ -2180,7 +2180,7 @@ query compilation. See <a class="xref"
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getReadLockLevel()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getReadLockLevel()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getReadLockLevel
</code></a>
</p>
@@ -2222,7 +2222,7 @@ openjpa.RemoteCommitProvider</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRemoteCommitProvider()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRemoteCommitProvider()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getRemoteCommitProvider
</code></a>
@@ -2239,7 +2239,7 @@ RemoteCommitProvider</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/event/RemoteCommitProvider.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/event/RemoteCommitProvider.html"
target="_top">
<code
class="classname">org.apache.openjpa.event.RemoteCommitProvider</code></a>
implementation to use for distributed event notification. See
<a class="xref" href="ref_guide_event.html#ref_guide_event_conf"
title="2.1. Remote Commit Provider Configuration">Section 2.1,
“
@@ -2258,7 +2258,7 @@ implementation to use for distributed ev
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRestoreState()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRestoreState()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getRestoreState
</code></a>
</p>
@@ -2289,7 +2289,7 @@ to their pre-transaction values when a r
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRetainState()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRetainState()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getRetainState
</code></a>
</p>
@@ -2317,7 +2317,7 @@ openjpa.RetryClassRegistration</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRetryClassRegistration()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRetryClassRegistration()"
target="_top">
<code class="methodname">
org.apache.openjpa.conf.OpenJPAConfiguration.getRetryClassRegistration
</code></a>
@@ -2346,7 +2346,7 @@ serious problems.
</p>
<p>
<span class="bold"><strong>Configuration API: </strong></span>
- <a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRuntimeUnenhancedClasses()"
target="_top">org.apache.openjpa.conf.OpenJPAConfiguration.getRuntimeUnenhancedClasses</a>
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getRuntimeUnenhancedClasses()"
target="_top">org.apache.openjpa.conf.OpenJPAConfiguration.getRuntimeUnenhancedClasses</a>
</p>
<p>
<span class="bold"><strong>Resource adaptor config
property:</strong></span>
@@ -2400,7 +2400,7 @@ openjpa.SavepointManager</code>
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getSavepointManager()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getSavepointManager()"
target="_top">
org.apache.openjpa.conf.OpenJPAConfiguration.getSavepointManager</a>
</p>
<p>
@@ -2419,7 +2419,7 @@ SavepointManager
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing a
-<a class="ulink"
href="../javadoc/org/apache/openjpa/kernel/SavepointManager.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/kernel/SavepointManager.html"
target="_top">
<code class="classname">org.apache.openjpa.kernel.SavepointManager</code></a>
to
use for managing transaction savepoints. See
<a class="xref" href="ref_guide_savepoints.html" title="4.
Savepoints">Section 4, “
@@ -2438,7 +2438,7 @@ use for managing transaction savepoints.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getSequence()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getSequence()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getSequence
</code></a>
</p>
@@ -2454,7 +2454,7 @@ Sequence</code>
<a class="xref" href="ref_guide_conf_plugins.html" title="4. Plugin
Configuration">Section 4, “
Plugin Configuration
”</a>) describing the
-<a class="ulink" href="../javadoc/org/apache/openjpa/kernel/Seq.html"
target="_top"><code class="classname">
+<a class="ulink" href="../../apidocs/org/apache/openjpa/kernel/Seq.html"
target="_top"><code class="classname">
org.apache.openjpa.kernel.Seq</code></a> implementation to use for the
system sequence. See <a class="xref" href="ref_guide_sequence.html"
title="6. Generators">Section 6, “
Generators
@@ -2473,7 +2473,7 @@ information.
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getSpecificationInstance()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getSpecificationInstance()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getSpecificationInstance
</code></a>
</p>
@@ -2507,7 +2507,7 @@ See <a class="xref" href="ref_guide_conf
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getTransactionMode()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getTransactionMode()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getTransactionMode
</code></a>
</p>
@@ -2539,7 +2539,7 @@ use. You can override this setting per-s
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
- <a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getUseTCCLinSelectNew()"
target="_top">
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getUseTCCLinSelectNew()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getUseTCCLinSelectNew
</code></a>
</p>
@@ -2575,7 +2575,7 @@ use. You can override this setting per-s
</p>
<p>
<span class="bold"><strong>Configuration API:</strong></span>
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html#getWriteLockLevel()"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html#getWriteLockLevel()"
target="_top">
<code
class="methodname">org.apache.openjpa.conf.OpenJPAConfiguration.getWriteLockLevel
</code></a>
</p>
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_specify.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_specify.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_conf_specify.html
Thu Jun 28 09:26:41 2018
@@ -73,14 +73,14 @@ configuration resource to use, and to ov
<p>
Internally, the OpenJPA runtime environment and development
tools manipulate property settings through a general
-<a class="ulink"
href="../javadoc/org/apache/openjpa/lib/conf/Configuration.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/conf/Configuration.html"
target="_top">
<code class="classname">Configuration</code></a> interface, and in particular
its
-<a class="ulink"
href="../javadoc/org/apache/openjpa/conf/OpenJPAConfiguration.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/conf/OpenJPAConfiguration.html"
target="_top">
<code class="classname">OpenJPAConfiguration</code></a> and
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/conf/JDBCConfiguration.html"
target="_top">
<code class="classname">JDBCConfiguration</code></a> subclasses. For advanced
customization, OpenJPA's extended runtime interfaces and its development tools
-allow you to access these interfaces directly. See the <a class="ulink"
href="../javadoc/" target="_top">
+allow you to access these interfaces directly. See the <a class="ulink"
href="../../apidocs/" target="_top">
Javadoc</a> for details.
</p>
</div>
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_dbsetup_dbsupport.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_dbsetup_dbsupport.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_dbsetup_dbsupport.html
Thu Jun 28 09:26:41 2018
@@ -37,7 +37,7 @@ configuration properties.
<p>
If OpenJPA cannot detect what type of database you are using, or if you are
using an unsupported database, you will have to tell OpenJPA what
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/DBDictionary.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/DBDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.DBDictionary</code></a> to
use.
The <code class="classname">DBDictionary</code> abstracts away the differences
between
databases. You can plug a dictionary into OpenJPA using the
@@ -51,7 +51,7 @@ below. If you are using an unsupported d
<a class="indexterm" name="d5e9782"></a>
<code class="literal">access</code>: Dictionary for Microsoft Access. This is
an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/AccessDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/AccessDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.AccessDictionary</code></a>
class.
</p>
@@ -59,7 +59,7 @@ class.
<p>
<a class="indexterm" name="d5e9789"></a>
<code class="literal">db2</code>: Dictionary for IBM's DB2 database. This is
an alias for
-the <a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/DB2Dictionary.html" target="_top">
+the <a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/DB2Dictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.DB2Dictionary</code></a>
class.
</p>
</li><li class="listitem">
@@ -67,7 +67,7 @@ the <a class="ulink" href="../javadoc/or
<a class="indexterm" name="d5e9796"></a>
<code class="literal">derby</code>: Dictionary for the Apache Derby database.
This is an
alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/DerbyDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/DerbyDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.DerbyDictionary</code>
class.
</a>
</p>
@@ -76,7 +76,7 @@ alias for the
<a class="indexterm" name="d5e9803"></a>
<code class="literal">empress</code>: Dictionary for Empress database This is
an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/EmpressDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/EmpressDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.EmpressDictionary</code></a>
class.
</p>
@@ -85,7 +85,7 @@ class.
<a class="indexterm" name="d5e9810"></a>
<code class="literal">foxpro</code>: Dictionary for Microsoft Visual FoxPro.
This is an
alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/FoxProDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/FoxProDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.FoxProDictionary</code></a>
class.
</p>
@@ -94,7 +94,7 @@ class.
<a class="indexterm" name="d5e9817"></a>
<code class="literal">h2</code>: Dictionary for the H2 Database Engine. This
is an
alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/H2Dictionary.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/H2Dictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.H2Dictionary</code></a>
class.
</p>
</li><li class="listitem">
@@ -102,7 +102,7 @@ alias for the
<a class="indexterm" name="d5e9824"></a>
<code class="literal">hsql</code>: Dictionary for the Hypersonic SQL database.
This is an
alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/HSQLDictionary.html" target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/HSQLDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.HSQLDictionary</code></a>
class.
</p>
</li><li class="listitem">
@@ -110,7 +110,7 @@ alias for the
<a class="indexterm" name="d5e9831"></a>
<code class="literal">informix</code>: Dictionary for the Informix database.
This is an
alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/InformixDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/InformixDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.InformixDictionary</code></a>
class.
</p>
@@ -118,7 +118,7 @@ class.
<p>
<a class="indexterm" name="d5e9838"></a>
<code class="literal">ingres</code>: Dictionary for Ingres. This is an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/IngresDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/IngresDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.IngresDictionary</code></a>
class.
</p>
@@ -127,7 +127,7 @@ class.
<a class="indexterm" name="d5e9845"></a>
<code class="literal">jdatastore</code>: Dictionary for Borland JDataStore.
This is an
alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/JDataStoreDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/JDataStoreDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.JDataStoreDictionary</code></a>
class.
</p>
@@ -136,7 +136,7 @@ class.
<a class="indexterm" name="d5e9852"></a>
<code class="literal">mariadb</code>: Dictionary for the MariaDB database.
This is an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/MariaDBDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/MariaDBDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.MariaDBDictionary</code></a>
class.
</p>
@@ -145,7 +145,7 @@ class.
<a class="indexterm" name="d5e9859"></a>
<code class="literal">mysql</code>: Dictionary for the MySQL database. This is
an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/MySQLDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/MySQLDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.MySQLDictionary</code></a>
class.
</p>
@@ -153,7 +153,7 @@ class.
<p>
<a class="indexterm" name="d5e9866"></a>
<code class="literal">oracle</code>: Dictionary for Oracle. This is an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/OracleDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/OracleDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.OracleDictionary</code></a>
class.
</p>
@@ -162,7 +162,7 @@ class.
<a class="indexterm" name="d5e9873"></a>
<code class="literal">pointbase</code>: Dictionary for Pointbase Embedded
database. This
is an alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/PointbaseDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/PointbaseDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.PointbaseDictionary</code></a>
class.
</p>
@@ -170,7 +170,7 @@ class.
<p>
<a class="indexterm" name="d5e9880"></a>
<code class="literal">postgres</code>: Dictionary for PostgreSQL. This is an
alias for
-the <a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/PostgresDictionary.html"
target="_top">
+the <a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/PostgresDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.PostgresDictionary</code></a>
class.
</p>
@@ -179,7 +179,7 @@ class.
<a class="indexterm" name="d5e9887"></a>
<code class="literal">soliddb</code>: Dictionary for IBM's SolidDB database.
This is an alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/SolidDBDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/SolidDBDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.SolidDBDictionary</code></a>
class.
</p>
@@ -188,7 +188,7 @@ class.
<a class="indexterm" name="d5e9894"></a>
<code class="literal">sqlserver</code>: Dictionary for Microsoft's SQL Server
database.
This is an alias for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/SQLServerDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/SQLServerDictionary.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.SQLServerDictionary</code></a>
class.
</p>
@@ -196,7 +196,7 @@ class.
<p>
<a class="indexterm" name="d5e9901"></a>
<code class="literal">sybase</code>: Dictionary for Sybase. This is an alias
for the
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/SybaseDictionary.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/SybaseDictionary.html"
target="_top">
<code class="classname">org.apache.openjpa.jdbc.sql.SybaseDictionary</code></a>
class.
</p>
@@ -313,7 +313,7 @@ generated by the <code class="literal">m
<code class="literal">BooleanRepresentation</code>:
The overridden default representation for <code
class="literal">java.lang.Boolean</code> or
<code class="literal">boolean</code> fields in JPA Entities. A
-<a class="ulink"
href="../javadoc/org/apache/openjpa/jdbc/sql/BooleanRepresentation.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/jdbc/sql/BooleanRepresentation.html"
target="_top">
<code
class="classname">org.apache.openjpa.jdbc.sql.BooleanRepresentation</code></a>
describes how Boolean values in entities get mapped into the database by
default.
Note that you additionally might need to define the <code
class="literal">BooleanTypeName</code>
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_deploy.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_deploy.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_deploy.html
Thu Jun 28 09:26:41 2018
@@ -51,7 +51,7 @@ The JPA Overview describes the <code cla
<code class="classname">Persistence</code> to add additional <code
class="classname">
EntityManagerFactory</code> creation methods. The <code class="classname">
org.apache.openjpa.persistence.OpenJPAPersistence</code> class
-<a class="ulink"
href="../javadoc/org/apache/openjpa/persistence/OpenJPAPersistence.html"
target="_top">
+<a class="ulink"
href="../../apidocs/org/apache/openjpa/persistence/OpenJPAPersistence.html"
target="_top">
Javadoc</a> details these extensions.
</p>
<p>
Modified:
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_encryption.html
==============================================================================
---
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_encryption.html
(original)
+++
websites/production/openjpa/content/builds/3.0.0/apache-openjpa/docs/ref_guide_encryption.html
Thu Jun 28 09:26:41 2018
@@ -10,7 +10,7 @@
OpenJPA provides an interface for a provider to implement
connection password encryption. Whenever a connection password
is needed, the <code class="methodname">decrypt(String)</code> method
will be invoked. See
- <a class="ulink"
href="../javadoc/org/apache/openjpa/lib/encryption/EncryptionProvider.html"
target="_top">
+ <a class="ulink"
href="../../apidocs/org/apache/openjpa/lib/encryption/EncryptionProvider.html"
target="_top">
<code
class="classname">org.apache.openjpa.lib.encryption.EncryptionProvider</code>
</a> for the detailed Javadoc.
</p>