You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by fb...@apache.org on 2007/09/24 22:51:01 UTC

svn commit: r578961 - in /incubator/river/trunk/jtsk: ./ src/com/artima/lookup/util/ src/com/sun/jini/outrigger/ src/com/sun/jini/outrigger/logstore/ src/configentry/ src/manifest/

Author: fbarnaby
Date: Mon Sep 24 13:50:58 2007
New Revision: 578961

URL: http://svn.apache.org/viewvc?rev=578961&view=rev
Log:
Removed logstore support, added serviceui.jar target, and added serviceui info to NOTICE file.

Added:
    incubator/river/trunk/jtsk/src/com/artima/lookup/util/build.xml
Removed:
    incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/logstore/
    incubator/river/trunk/jtsk/src/manifest/outrigger-logstore.mf
Modified:
    incubator/river/trunk/jtsk/NOTICE
    incubator/river/trunk/jtsk/build.xml
    incubator/river/trunk/jtsk/build_common.xml
    incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/build.xml
    incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/package.html
    incubator/river/trunk/jtsk/src/configentry/outrigger-persistent
    incubator/river/trunk/jtsk/src/manifest/outrigger.mf

Modified: incubator/river/trunk/jtsk/NOTICE
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/NOTICE?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/NOTICE (original)
+++ incubator/river/trunk/jtsk/NOTICE Mon Sep 24 13:50:58 2007
@@ -13,3 +13,15 @@
 This product contains code derived from the Ant build script contributed 
 to the Jini Community by Geoffrey Arnold (http://www.geoffreyarnold.com).
 
+Copyright 2000-2005 Artima Software, Inc.
+Portions of this software were developed by Bill Venners of Artima, Inc., who
+led the ServiceUI project. The ServiceUI project, which was hosted at jini.org,
+was tasked with defining a "standard" approach to attaching UIs to Jini services.
+The ServiceUI specification and API represent the best amalgamation of the ideas
+contributed by all the people who participated in the serviceui project. 
+   
+The original two releases of the ServiceUI API, including specifications
+and code, are available from:
+   
+	http://www.artima.com/jini/serviceui/index.html
+

Modified: incubator/river/trunk/jtsk/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/build.xml?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/build.xml (original)
+++ incubator/river/trunk/jtsk/build.xml Mon Sep 24 13:50:58 2007
@@ -42,11 +42,10 @@
 
   <target name="all"
 	  description="Builds all sources."
-	  depends="copy-psepro-zip,
+	  depends="setup-all,
 		   configentry,
 		   compile,
 		   compile.local,
-		   build-psepro-classes,
 		   copy-resources,
 		   stubs,
 		   tools">

Modified: incubator/river/trunk/jtsk/build_common.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/build_common.xml?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/build_common.xml (original)
+++ incubator/river/trunk/jtsk/build_common.xml Mon Sep 24 13:50:58 2007
@@ -113,7 +113,6 @@
     </condition>
 
     <property name="build.classes"	location="${build}/classes"		/>
-    <property name="build.classes.pse"	location="${build}/classesPSE"		/>
     <property name="build.deps"         location="${build}/deps"		/>
     <property name="build.doc"          location="${build}/doc"			/>
     <property name="build.doc.api"      location="${build.doc}/api"		/>
@@ -194,36 +193,6 @@
 	      value="-out com.sun.jini.discovery -out net.jini.activation -out net.jini.config -out net.jini.constraint -out net.jini.core -out net.jini.export -out net.jini.id -out net.jini.iiop -out net.jini.io -out net.jini.jeri -out net.jini.jrmp -out net.jini.loader -out net.jini.security -out net.jini.url -skip net.jini.discovery.ConstrainableLookupLocator -skip net.jini.discovery.ConstrainableLookupLocatorTrustVerifier -skip com.sun.jini.config.ConfigUtil -skip com.sun.jini.config.KeyStores -skip com.sun.jini.logging.LogManager" />
 
     <!-- ##								-->
-    <!-- ## Uncomment the following lines, and set the pro-zip-home 	-->
-    <!-- ## variable if you have Progress Software's ObjectStore PSEPro	-->
-    <!-- ##								-->
-
-    <!-- property name="have-psepro"	value="true"/ -->
-
-    <!-- property name="pro-zip-home"	location=""/  -->
-
-    <!-- ##								-->
-    <!-- ## Set the PSEpro zip-file properties: 			-->
-    <!-- ##								-->
-
-    <condition property="pro-zip-home" value="${lib}">
-      <not> <isset property="pro-zip-home"/> </not>
-    </condition>
-
-    <condition property="psepro-zip" value="${pro-zip-home}/pro.zip">
-      <available file="${pro-zip-home}/pro.zip"/>
-    </condition>
-
-    <!-- ##								-->
-    <!-- ## If the PSEpro zip-file does not exist, we'll need to 	-->
-    <!-- ## exclude the logstore sources from the build:		-->
-    <!-- ##								-->
-
-    <condition property="logstore-excludes" value="**/logstore/**">
-      <not> <isset property="psepro-zip"/> </not>
-    </condition>
-
-    <!-- ##								-->
     <!-- ## Display some of our property settings:			-->
     <!-- ##								-->
 
@@ -269,7 +238,6 @@
 	    <include name="mercury.jar"			/>
 	    <include name="norm.jar"			/>
 	    <include name="outrigger.jar"		/>
-	    <include name="outrigger-logstore.jar"	/>
 	    <include name="phoenix.jar"			/>
 	    <include name="phoenix-group.jar"		/>
 	    <include name="phoenix-init.jar"		/>
@@ -316,7 +284,6 @@
 
     <mkdir dir="${build}"		/>
     <mkdir dir="${build.classes}"	/>
-    <mkdir dir="${build.classes.pse}"	/>
     <mkdir dir="${build.deps}"		/>
     <mkdir dir="${build.doc}"		/>
     <mkdir dir="${build.doc.api}"	/>
@@ -341,7 +308,6 @@
 
     <path id="path.jini">
       <pathelement path="${build.classes}" />
-      <pathelement location="${psepro-zip}"/>
     </path>
 
     <path id="path.tools">
@@ -519,8 +485,6 @@
          <classpath  refid="path.jini"/>
          <patternset refid="@{source.pat}"/>
 
-         <exclude name="${logstore-excludes}"/>
-
        </javac>
      </sequential>
 
@@ -622,7 +586,6 @@
       <package name="com.sun.jini.mercury"			/>
       <package name="com.sun.jini.norm"				/>
       <package name="com.sun.jini.outrigger"			/>
-      <package name="com.sun.jini.outrigger.logstore"		/>
       <package name="com.sun.jini.outrigger.snaplogstore"	/>
       <package name="com.sun.jini.phoenix"			/>
       <package name="com.sun.jini.proxy"			/>
@@ -833,50 +796,6 @@
 
   <!-- ################################################################ -->
   <!-- ##								-->
-  <!-- ## TARGET: build-psepro-classes					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="build-psepro-classes"
-	  if="have-psepro"
-          description="Build the classes that require PSEpro processing."
-          depends="setup-all">
-
-    <echo message="Running ant psepro-classes in ${src.jini}/com/sun/jini/outrigger/logstore/build.xml"/>
-
-    <ant target="psepro-classes"
-	 antfile="build.xml"
-	 dir="${src.jini}/com/sun/jini/outrigger/logstore"
-	 inheritall="false"
-         inheritrefs="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
-  <!-- ## TARGET: copy-psepro-zip					-->
-  <!-- ##								-->
-  <!-- ################################################################ -->
-
-  <target name="copy-psepro-zip"
-	  if="psepro-zip"
-          description=""
-          depends="setup-all">
-
-    <echo message="Running ant copy-pro-zip in ${src.jini}/com/sun/jini/outrigger/logstore/build.xml"/>
-
-    <ant target="copy-pro-zip"
-	 antfile="build.xml"
-	 dir="${src.jini}/com/sun/jini/outrigger/logstore"
-	 inheritall="false"
-         inheritrefs="true"/>
-
-  </target>
-
-
-  <!-- ################################################################ -->
-  <!-- ##								-->
   <!-- ## TARGET: install.policy					-->
   <!-- ##								-->
   <!-- ################################################################ -->
@@ -984,7 +903,6 @@
 		   clean.jre.ext">
 
     <delete dir="${build.classes}"	quiet="true"/>
-    <delete dir="${build.classes.pse}"	quiet="true"/>
     <delete dir="${build.deps}"		quiet="true"/>
     <delete dir="${build.doc.api}"	quiet="true"/>
     <delete dir="${entry.dest.dir}"     quiet="true"/>

Added: incubator/river/trunk/jtsk/src/com/artima/lookup/util/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/com/artima/lookup/util/build.xml?rev=578961&view=auto
==============================================================================
--- incubator/river/trunk/jtsk/src/com/artima/lookup/util/build.xml (added)
+++ incubator/river/trunk/jtsk/src/com/artima/lookup/util/build.xml Mon Sep 24 13:50:58 2007
@@ -0,0 +1,121 @@
+<!--
+ ! Licensed to the Apache Software Foundation (ASF) under one
+ ! or more contributor license agreements.  See the NOTICE file
+ ! distributed with this work for additional information
+ ! regarding copyright ownership. The ASF licenses this file
+ ! to you under the Apache License, Version 2.0 (the
+ ! "License"); you may not use this file except in compliance
+ ! with the License. You may obtain a copy of the License at
+ ! 
+ !      http://www.apache.org/licenses/LICENSE-2.0
+ ! 
+ ! Unless required by applicable law or agreed to in writing, software
+ ! distributed under the License is distributed on an "AS IS" BASIS,
+ ! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ! See the License for the specific language governing permissions and
+ ! limitations under the License.
+ !-->
+
+<project name="util" basedir="." default="all">
+
+  <!-- ################################################################ -->
+  <!-- ##								-->
+  <!-- ## ENVIRONMENT SETTINGS						-->
+  <!-- ##								-->
+  <!-- ################################################################ -->
+
+  <property name="top" location="../../../../.."/>
+
+  <property name="pkg-path" value="com/artima/lookup/${ant.project.name}"/>
+
+  <!-- ##								-->
+  <!-- ## Set java-source for use with the javac task:			-->
+  <!-- ##								-->
+
+  <property name="java-source" value="${pkg-path}/**/*.java" />
+
+  <import file="${top}/build_common.xml"/>
+
+
+  <!-- ################################################################ -->
+  <!-- ##								-->
+  <!-- ## TARGET: all							-->
+  <!-- ##								-->
+  <!-- ################################################################ -->
+
+  <target name="all"
+          description=""
+          depends="compile">
+
+  </target>
+
+
+  <!-- ################################################################ -->
+  <!-- ##                                                               -->
+  <!-- ## TARGET: clean                                                 -->
+  <!-- ##                                                               -->
+  <!-- ################################################################ -->
+
+  <target name="clean"
+          description="Removes all files and dirs created by the build."
+          depends="clean.jre.ext">
+
+    <delete dir="${build.classes}/${pkg-path}" quiet="true"/>
+
+  </target>
+
+
+  <!-- ################################################################ -->
+  <!-- ##								-->
+  <!-- ## TARGET: this.jars						-->
+  <!-- ##								-->
+  <!-- ################################################################ -->
+
+  <target name="this.jars"
+	  depends="serviceui.jar">
+
+  </target>
+  
+
+  <!-- ################################################################ -->
+  <!-- ##								-->
+  <!-- ## TARGET: serviceui.jar						-->
+  <!-- ##								-->
+  <!-- ################################################################ -->
+
+  <target name="serviceui.jar"
+	  depends="tools">
+  
+    <!-- ##								-->
+    <!-- ## Generate the jar file.					-->
+    <!-- ##								-->
+
+    <delete file="${build.lib}/serviceui.jar" quiet="true" />
+
+    <jar destfile="${build.lib}/serviceui.jar" 
+         index="false">
+
+      <fileset dir="${build.classes}">
+        <include name="net/jini/lookup/entry/UIDescriptor.class"	/>
+	<include name="net/jini/lookup/entry/UIDescriptorBean.class"	/>
+        <include name="net/jini/lookup/ui/**"				/>
+        <include name="com/artima/lookup/util/**"			/>
+      </fileset>
+
+    </jar>
+
+  </target>
+
+
+  <!-- ################################################################ -->
+  <!-- ##								-->
+  <!-- ## TARGET: this.stubs						-->
+  <!-- ##								-->
+  <!-- ################################################################ -->
+
+  <target name="this.stubs" description="Just a dummy target.">
+
+  </target>
+
+</project>
+

Modified: incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/build.xml?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/build.xml (original)
+++ incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/build.xml Mon Sep 24 13:50:58 2007
@@ -46,7 +46,6 @@
   <target name="all"
           description=""
           depends="compile,
-		   build-psepro-classes,
 		   this.stubs">
 
   </target>
@@ -63,7 +62,6 @@
           depends="clean.jre.ext">
 
     <delete dir="${build.classes}/${pkg-path}"	quiet="true"/>
-    <delete dir="${build.classes.pse}"		quiet="true"/>
 
   </target>
 
@@ -120,12 +118,6 @@
     <!-- ## Generate the jar file.					-->
     <!-- ##								-->
 
-    <!-- Note that the preferred list for outrigger.jar is not generated-->
-    <!-- by preferredlistgen. This is because pro.zip, which is in the  -->
-    <!-- class-path of outrigger-logstore.jar, may not be present. This -->
-    <!-- result in a error when preferredlistgen preformed a class      -->
-    <!-- search.							-->
-
     <delete file="${build.lib}/outrigger.jar" quiet="true"/>
 
     <jar destfile="${build.lib}/outrigger.jar" 
@@ -148,11 +140,10 @@
   <!-- ################################################################ -->
 
   <target name="store.jars" >
-    <ant inheritAll="false" dir="logstore"
-         target="outrigger-logstore.jar" />
 
     <ant inheritAll="false" dir="snaplogstore"
          target="outrigger-snaplogstore.jar" />
+
   </target>
 
   <!-- ################################################################ -->

Modified: incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/package.html
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/package.html?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/package.html (original)
+++ incubator/river/trunk/jtsk/src/com/sun/jini/outrigger/package.html Mon Sep 24 13:50:58 2007
@@ -36,23 +36,19 @@
 <code>PersistentOutriggerImpl</code> relies on a pluggable persistence
 layer, {@link com.sun.jini.outrigger.Store}. Which implementation of the
 <code>Store</code> interface to use is controlled by the <a
-href="#store"><code>store</code></a> configuration entry. Unlike previous
-releases there is no default <code>Store</code> implementation.
+href="#store"><code>store</code></a> configuration entry. Unlike some
+previous releases there is no default <code>Store</code> implementation.
 <p>
 
-This release includes two implementation of the <code>Store</code>
+This release includes one implementation of the <code>Store</code>
 interface. {@link com.sun.jini.outrigger.snaplogstore.LogStore
-com.sun.jini.outrigger.snaplogstore.LogStore} and {@link
-com.sun.jini.outrigger.logstore.LogStore
-com.sun.jini.outrigger.logstore.LogStore}. Logstore is the original
-implementation of the <code>Store</code> interface and was the previous
-default. Snapstore was introduced in the 2.1beta2 release. Logstore scales
-better than snaplogstore if the space is going to end up holding a lot of
-data. Unfortunately because of issues relating to the transition in
-licensing, this release does not include the file <code>pro.zip</code>,
-without which logstore will not work. We are sorry for any inconvenience
-this will cause (we hope to make a release with a complete version of
-logstore available as a separate download in the future. ).<p>
+com.sun.jini.outrigger.snaplogstore.LogStore}, also called
+<em>Snaplogstore</em>.  Snaplogstore was introduced in the 2.1beta2
+release. The original implementation of the <code>Store</code> interface,
+<code>com.sun.jini.outrigger.logstore.LogStore</code>, or <em>Logstore</em>
+for short, is no longer available. Snaplogstore and Logstore have different
+scalability characteristics, so if you were using Logstore in the past you
+many want to evaluate how your application works with Snaplogstore.
 
 Because there is no default <code>Store</code> implementation if your are
 using <code>PersistentOutriggerImpl</code> you will need to provide a value
@@ -62,7 +58,7 @@
 configuration entry).
 <p>
 
-The storage formats used by snaplogstore and logstore are mutually
+The storage formats used by Snaplogstore and Logstore are mutually
 incompatible.<p>
 
 The JAR file <code>outrigger.jar</code>, included in the <code>lib</code>
@@ -77,22 +73,11 @@
 <code>outrigger.jar</code> also includes, via a JAR file manifest classpath
 directive, a reference to <code>outrigger-snaplogstore.jar</code>.
 <code>outrigger-snaplogstore.jar</code> adds the classes necessary to run
-<code>PersistentOutriggerImpl</code> with the snaplogstore implementation of
+<code>PersistentOutriggerImpl</code> with the Snaplogstore implementation of
 <code>Store</code>, and must be in the same directory as
 <code>outrigger.jar</code> for <code>PersistentOutriggerImpl</code> to
 operate properly with snaplogstore.<p>
 
-Finally, <code>outrigger.jar</code> includes, via JAR file manifest
-classpath directives, a reference to <code>outrigger-logstore.jar</code>,
-and (via <code>outrigger-logstore.jar</code>'s manifest)
-<code>pro.zip</code>. <code>outrigger-logstore.jar</code> and
-<code>pro.zip</code> add the classes necessary to run
-<code>PersistentOutriggerImpl</code> with the logstore implementation of
-<code>Store</code>.  <code>outrigger-logstore.jar</code> and
-<code>pro.zip</code> must be in the same directory as
-<code>outrigger.jar</code> for <code>PersistentOutriggerImpl</code> to
-operate properly with logstore. <p>
-
 The JAR files <code>outrigger-dl.jar</code> and <code>jsk-dl.jar</code> in
 the <code>lib-dl</code> directory contain the classes needed to
 instantiate Outrigger's proxy objects in a client.  Outrigger's codebase
@@ -377,33 +362,6 @@
       service start and restart.
   </table>
 
-<a name="gcInterval"></a>
-<table summary="Describes the gcInterval configuration entry"
-	 border="0" cellpadding="2">
-    <tr valign="top">
-      <th scope="col" summary="layout"> <font size="+1">&#X2022;</font>
-      <th scope="col" align="left" colspan="2"> <font size="+1">
-      <code>gcInterval</code></font>
-    <tr valign="top"> <td> &nbsp <th scope="row" align="right">
-      Type: <td> <code>int</code>
-    <tr valign="top"> <td> &nbsp <th scope="row" align="right">
-      Default: <td> <code>5</code>
-    <tr valign="top"> <td> &nbsp <th scope="row" align="right">
-
-      Description: <td> How often should Outrigger garbage collect the
-      persistent store. Only consulted if {@link
-      com.sun.jini.outrigger.logstore.LogStore
-      com.sun.jini.outrigger.logstore.LogStore} is being used for the
-      <code><a href="#store">store</a></code> configuration entry.
-      Outrigger writes directives into logs that are consumed by a consumer
-      thread. The consumer thread applies the directives to the persistent
-      store. This configuration entry represents how many logs must be
-      consumed before the persistent store is garbage collected. Must be a
-      positive <code>int</code> value. See also the <a
-      href="#maxOps"><code>maxOps</code></a> configuration entry. Obtained
-      at service start and restart.
-  </table>
-
 <a name="initialLookupAttributes"></a>
 <table summary="Describes the initialLookupAttributes configuration entry"
 	 border="0" cellpadding="2">
@@ -592,16 +550,13 @@
       Description: <td> Maximum number of persistent store directives that
       can be written to a log. Only consulted if {@link
       com.sun.jini.outrigger.snaplogstore.LogStore
-      com.sun.jini.outrigger.snaplogstore.LogStore} or {@link
-      com.sun.jini.outrigger.logstore.LogStore
-      com.sun.jini.outrigger.logstore.LogStore} are being used for the <a
+      com.sun.jini.outrigger.snaplogstore.LogStore} is being used for the <a
       href="#store">store</a> configuration entry.  Outrigger writes
       directives for the persistent store into logs that are consumed by a
       consumer thread.  This configuration entry represents the maximum
       number of directives that can be written before a new log is
-      created. Must be a positive <code>int</code> value. If using logstore
-      see also the <a href="#gcInterval"> <code>gcInterval</code></a>
-      configuration entry. Obtained at service start and restart.
+      created. Must be a positive <code>int</code> value. 
+      Obtained at service start and restart.
   </table>
 
 <a name="maxServerQueryTimeout"></a>
@@ -701,10 +656,8 @@
 
       Description: <td> If the {@link
       com.sun.jini.outrigger.snaplogstore.LogStore
-      com.sun.jini.outrigger.snaplogstore.LogStore} or {@link
-      com.sun.jini.outrigger.logstore.LogStore
-      com.sun.jini.outrigger.logstore.LogStore} implementations of {@link
-      com.sun.jini.outrigger.Store} are being used, the value of this entry
+      com.sun.jini.outrigger.snaplogstore.LogStore} implementations of {@link
+      com.sun.jini.outrigger.Store} is being used, the value of this entry
       is the name of the directory that should be used to persist
       Outrigger's state.  Obtained at persistent service start and restart.
   </table>
@@ -934,17 +887,6 @@
       com.sun.jini.outrigger.snaplogstore.LogStore(this)}
       <code> // `this' == the configuration object</code>
       <p>
-
-      A {@link com.sun.jini.outrigger.logstore.LogStore
-      com.sun.jini.outrigger.logstore.LogStore} instance can
-      be created like this:
-      <p>
-
-      <code>new </code>{@link
-      com.sun.jini.outrigger.logstore.LogStore#LogStore 
-      com.sun.jini.outrigger.logstore.LogStore(this)}
-      <code> // `this' == the configuration object</code>
-
   </table>
 
 <a name="takeMultipleLimit"></a>
@@ -1564,14 +1506,6 @@
     permission java.security.AllPermission;
 };
 
-grant codebase "file:<var><b>install_dir</b></var>/lib/outrigger-logstore.jar" {
-    permission java.security.AllPermission;
-};
-
-grant codebase "file:<var><b>install_dir</b></var>/lib/pro.zip" {
-    permission java.security.AllPermission;
-};
-
 grant codebase "file:<var><b>install_dir</b></var>/lib/phoenix-group.jar" {
     permission java.security.AllPermission;
 };
@@ -1756,7 +1690,7 @@
 </a>
 
 Use this configuration source file to run activatable Outrigger using JRMP
-and the snaplogstore implementation of <code>Store</code>. <p>
+and the Snaplogstore implementation of <code>Store</code>. <p>
 
 <blockquote>
 <pre>
@@ -1974,7 +1908,7 @@
 </a>
 
 Use this configuration source file to run persistent Outrigger using Jini
-ERI and the snaplogstore implementation of <code>Store</code>. <p>
+ERI and the Snaplogstore implementation of <code>Store</code>. <p>
 
 <blockquote>
 <pre>
@@ -2152,7 +2086,7 @@
 </a>
 
 Use this configuration source file to run activatable Outrigger using Jini
-ERI the snaplogstore implementation of <code>Store</code>. <p>
+ERI the Snaplogstore implementation of <code>Store</code>. <p>
 
 <blockquote>
 <pre>
@@ -2173,3 +2107,4 @@
 
 </BODY>
 </HTML>
+

Modified: incubator/river/trunk/jtsk/src/configentry/outrigger-persistent
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/configentry/outrigger-persistent?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/configentry/outrigger-persistent (original)
+++ incubator/river/trunk/jtsk/src/configentry/outrigger-persistent Mon Sep 24 13:50:58 2007
@@ -1,5 +1,4 @@
 # non-activatable persistent outrigger configuration entries
-com.sun.jini.outrigger.gcInterval: int
 com.sun.jini.outrigger.maxOps: int
 com.sun.jini.outrigger.persistenceDirectory: String
 com.sun.jini.outrigger.recoveredListenerPreparer: net.jini.security.ProxyPreparer

Modified: incubator/river/trunk/jtsk/src/manifest/outrigger.mf
URL: http://svn.apache.org/viewvc/incubator/river/trunk/jtsk/src/manifest/outrigger.mf?rev=578961&r1=578960&r2=578961&view=diff
==============================================================================
--- incubator/river/trunk/jtsk/src/manifest/outrigger.mf (original)
+++ incubator/river/trunk/jtsk/src/manifest/outrigger.mf Mon Sep 24 13:50:58 2007
@@ -1,2 +1,2 @@
 Manifest-Version: 1.0
-Class-Path: outrigger-logstore.jar outrigger-snaplogstore.jar jsk-lib.jar
+Class-Path: outrigger-snaplogstore.jar jsk-lib.jar