You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by dw...@apache.org on 2010/02/24 21:51:59 UTC

svn commit: r915975 - in /openjpa/trunk: openjpa-project/src/doc/manual/ref_guide_slice.xml pom.xml

Author: dwoods
Date: Wed Feb 24 20:51:59 2010
New Revision: 915975

URL: http://svn.apache.org/viewvc?rev=915975&view=rev
Log:
OPENJPA-1520 revert some refs back to Java SE 5 docs

Modified:
    openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml
    openjpa/trunk/pom.xml

Modified: openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml?rev=915975&r1=915974&r2=915975&view=diff
==============================================================================
--- openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml (original)
+++ openjpa/trunk/openjpa-project/src/doc/manual/ref_guide_slice.xml Wed Feb 24 20:51:59 2010
@@ -534,7 +534,7 @@
         for database operations such as query or flush on individual slices. 
         The value of the property is a 
         fully-qualified class name that implements 
-        <ulink url="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html">
+        <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ExecutorService.html">
         <classname>java.util.concurrent.ExecutorService</classname>
         </ulink> interface.  
         Two pre-defined pools can be chosen via their aliases namely 
@@ -542,7 +542,7 @@
         </para>
         <para>
         The pre-defined alias <classname>cached</classname> activates a 
-        <ulink url="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Executors.html#newCachedThreadPool()">cached thread pool</ulink>. 
+        <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Executors.html#newCachedThreadPool()">cached thread pool</ulink>. 
         A cached thread pool creates new threads as needed, but will reuse 
         previously constructed threads when they are available. This pool 
         is suitable in scenarios that execute many short-lived asynchronous tasks.
@@ -552,23 +552,23 @@
         </para>
         <para>
         The <classname>fixed</classname> alias activates a 
-        <ulink url="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Executors.html#newFixedThreadPool(int)">fixed thread pool</ulink>.
+        <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/Executors.html#newFixedThreadPool(int)">fixed thread pool</ulink>.
         The fixed thread pool can be further parameterized with 
         <classname>CorePoolSize</classname>, <classname>MaximumPoolSize</classname>, 
         <classname>KeepAliveTime</classname> and <classname>RejectedExecutionHandler</classname>. 
         The meaning of these parameters are described in 
-        <ulink url="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html">JavaDoc</ulink>.
+        <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ThreadPoolExecutor.html">JavaDoc</ulink>.
         The users can exercise finer control on thread pool behavior via these
         parameters.
         By default, the core pool size is <classname>10</classname>, maximum pool size is
         also <classname>10</classname>, keep alive time is <classname>60</classname> seconds and 
         rejected execution is 
-        <ulink url="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.AbortPolicy.html">aborted</ulink>.
+        <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ThreadPoolExecutor.AbortPolicy.html">aborted</ulink>.
         </para>
         <para>
         Both of the pre-defined aliases can be parameterized with a fully-qualified
         class name that implements 
-        <ulink url="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadFactory.html">
+        <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/util/concurrent/ThreadFactory.html">
         <classname>java.util.concurrent.ThreadFactory</classname>
         </ulink> interface.
         </para>
@@ -633,4 +633,4 @@
   </section>
 
 </chapter>
-  
\ No newline at end of file
+  

Modified: openjpa/trunk/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/pom.xml?rev=915975&r1=915974&r2=915975&view=diff
==============================================================================
--- openjpa/trunk/pom.xml (original)
+++ openjpa/trunk/pom.xml Wed Feb 24 20:51:59 2010
@@ -223,7 +223,7 @@
                                     <verbose>false</verbose>
                                     <maxmemory>512m</maxmemory>
                                     <links>
-                                        <link>http://java.sun.com/javase/6/docs/api</link>
+                                        <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
                                         <link>http://java.sun.com/javaee/6/docs/api</link>
                                         <link>http://jakarta.apache.org/commons/collections/api-release</link>
                                     </links>
@@ -393,7 +393,7 @@
                                     <!-- <linksource>true</linksource> -->
                                     <maxmemory>512m</maxmemory>
                                     <links>
-                                        <link>http://java.sun.com/javase/6/docs/api</link>
+                                        <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
                                         <link>http://java.sun.com/javaee/6/docs/api</link>
                                         <link>http://jakarta.apache.org/commons/collections/api-release</link>
                                     </links>