OPENJPA-1932: Sun -> Oracle, update copyright year, make LOB term consistent in case, fix typos.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1067730 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Milosz Tylenda 2011-02-06 19:03:15 +00:00
parent 90a95d4ee9
commit cdfb5c79c5
8 changed files with 17 additions and 16 deletions

View File

@ -35,8 +35,8 @@
JPA
</primary>
</indexterm>
The Java Persistence API (JPA) is a specification from
Sun Microsystems for the persistence of Java objects to any relational
The Java Persistence API (JPA) is a specification
for the persistence of Java objects to any relational
datastore. JPA requires J2SE 1.5 (also referred to as "Java 5") or
higher, as it makes heavy use of new Java language features such as annotations
and generics. This document provides an overview of JPA. Unless

View File

@ -2531,7 +2531,7 @@ HAVING</literal> clause.
</para>
<para>
State-fields that are mapped in serialized form or as
lobs may not be portably used in conditional expressions. <note><para> The
LOBs may not be portably used in conditional expressions. <note><para> The
implementation is not expected to perform such query operations involving such
fields in memory rather than in the database.
</para>
@ -3614,7 +3614,7 @@ the groups, null values are treated as the same for grouping purposes.
<para>
Grouping
by an entity is permitted. In this case, the entity must contain no serialized
state fields or lob-valued state fields that are eagerly fetched.
state fields or LOB-valued state fields that are eagerly fetched.
</para>
<para>
Grouping by embeddables is not supported.

View File

@ -27,7 +27,7 @@
</primary>
</indexterm>
<para>
OpenJPA is Apache's implementation of Sun's Java Persistence 2.0 API
OpenJPA is Apache's implementation of Java Persistence 2.0 API
(JSR-317 JPA 2.0) specification for the transparent persistence of Java objects.
This document provides an overview of the JPA standard and technical
details on the use of OpenJPA.

View File

@ -93,12 +93,10 @@ The openjpa-all aggregate JAR includes software developed by the:
<section id="openjpa_legal_copyright_apache">
<title>Apache</title>
<para>
Copyright (C) 2006,2010 The Apache Software Foundation.
Copyright (C) 2006,2011 The Apache Software Foundation.
</para>
<para>
Apache, OpenJPA and the Apache feather logo are trademarks of Apache Software Foundation.
Java and all Java-based trademarks and logos are trademarks of Sun Microsystems, Inc. in the United States, other countries, or both.
Other names may be trademarks of their respective owners.
</para>
</section>
<section id="openjpa_legal_copyright_serp">
@ -139,6 +137,10 @@ OpenJPA includes software written by Miroslav Nachev.
<para>
OpenJPA uses test code written by Charles Tillman.
</para>
<para>
Oracle and Java are registered trademarks of Oracle and/or its affiliates.
Other names may be trademarks of their respective owners.
</para>
</section>
</section>
</chapter>

View File

@ -123,7 +123,7 @@ or deletes.
Manipulating various parameters of the Java Virtual Machine (such as hotspot
compilation modes and the maximum memory) can result in performance
improvements. For more details about optimizing the JVM execution environment,
please see <ulink url="http://java.sun.com/docs/hotspot/HotSpotFAQ.html"/>.
please see <ulink url="http://www.oracle.com/technetwork/java/hotspotfaq-138619.html"/>.
</entry>
</row>
<row>

View File

@ -386,7 +386,7 @@ java -javaagent:/home/dev/openjpa/lib/openjpa.jar=addDefaultConstructor=false co
</title>
<para>
If a javaagent is not provided via the command line and
OpenJPA is running on the Sun 1.6 SDK or IBM 1.6 JDK (SR8+), OpenJPA
OpenJPA is running on the Oracle 1.6 SDK or IBM 1.6 JDK (SR8+), OpenJPA
will attempt to dynamically load the Enhancer that was
mentioned in the previous section. This support is
provided as an ease of use feature and it is not recommended

View File

@ -136,11 +136,11 @@
<para>
To confine queries to a subset of slices via setting query hints can be considered
intrusive to existing application. The alternative means of targeting queries is to
a configure a <emphasis>Query Target Policy</emphasis>. This policy is configured
configure a <emphasis>Query Target Policy</emphasis>. This policy is configured
via plug-in property <classname>openjpa.slice.QueryTargetPolicy</classname>. The
plug-in property is fully-qualified class name an implementation
plug-in property is fully-qualified class name of an implementation
for <classname>org.apache.openjpa.slice.QueryTargetPolicy</classname> interface.
This interface contract allows an user application to target a query select a subset
This interface contract allows a user application to target a query to a subset
of slices based on the query and its bound parameters. The query target policy is consulted
only when no explicit target hint is set on the query. By default, the policy
executes a query on all available slices.
@ -152,7 +152,6 @@
by primary key. This finder target policy is consulted
only when no explicit target hint is set on the current fetch plan. By default, the policy
executes a query on all available slices to find an instance by its primary key.
To confine queries to a subset of slices via setting query hints can be considered
</para>
</section>

View File

@ -715,8 +715,8 @@ See DB2 for z/OS documentation for additional information.
<listitem>
<para>
When using LOBs with persistent attributes of a streaming data type (e.g.
<literal>java.io.InputStream</literal>) in the case of very large lob, DB2 JCC
driver will automatically use progressive streaming to retrieve the Lob data.
<literal>java.io.InputStream</literal>) in the case of very large LOB, DB2 JCC
driver will automatically use progressive streaming to retrieve the LOB data.
With progressiveStreaming, the inputStream retrieved must be fully materialized
before the next iteration of call to rs.next(). By default
this will result in a LobClosedException when OpenJPA processes the InputStream.