Author: peter_firmstone Date: Mon Jun 20 05:00:36 2011 New Revision: 1137499
URL: http://svn.apache.org/viewvc?rev=1137499&view=rev Log: Minor documentation updates for release. GroovyConfig was installed in the wrong package, moved it to net.jini.config, updated the SPI manifest. Added a paragraph mentioning GroovyConfig Added: river/jtsk/trunk/src/net/jini/config/GroovyConfig.groovy - copied unchanged from r1135004, river/jtsk/trunk/src/com/sun/jini/config/GroovyConfig.groovy Removed: river/jtsk/trunk/src/com/sun/jini/config/GroovyConfig.groovy Modified: river/jtsk/trunk/build.xml river/jtsk/trunk/src-doc/static/arch2_0.html river/jtsk/trunk/src-doc/static/index.html river/jtsk/trunk/src/manifest/jsk-resources/META-INF/services/net.jini.config.Configuration river/jtsk/trunk/src/net/jini/config/package.html Modified: river/jtsk/trunk/build.xml URL: http://svn.apache.org/viewvc/river/jtsk/trunk/build.xml?rev=1137499&r1=1137498&r2=1137499&view=diff ============================================================================== --- river/jtsk/trunk/build.xml (original) +++ river/jtsk/trunk/build.xml Mon Jun 20 05:00:36 2011 @@ -2174,6 +2174,13 @@ <property name="harness.generateHtml" value="${harness.generateHtml}" /> </ant> </target> + + <target name="qa.run-tests" depends="" description="Run Specific QA tests"> + <!-- Call qa subcomponent build --> + <ant dir="qa" target="run-tests" inheritall="false"> + <property name="harness.generateHtml" value="${harness.generateHtml}" /> + </ant> + </target> <target name="all.build" depends="river-runtime" description="Build all, including subcomponents"> Modified: river/jtsk/trunk/src-doc/static/arch2_0.html URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src-doc/static/arch2_0.html?rev=1137499&r1=1137498&r2=1137499&view=diff ============================================================================== --- river/jtsk/trunk/src-doc/static/arch2_0.html (original) +++ river/jtsk/trunk/src-doc/static/arch2_0.html Mon Jun 20 05:00:36 2011 @@ -19,23 +19,22 @@ <body text="#000000" bgcolor="#ffffff" link="#9b37cc" vlink="#cc1877" alink="#ffffff"> -<title>Jini Architecture Specification Version 2.0 Overview - Apache River Release v2.2.0</title> +<title>Jini Specification Overview - Apache River Release v2.2.0</title> <a name="TOP"> -<center><h1>Jini<font><sup>TM</sup></font> Architecture Specification Version 2.0 Extensions Overview<br> +<center><h1>Jini Specification Overview<br> Apache River Release v2.2.0</h1></center> <br> -<p>This document provides an overview of the new components of -the Jini<font size="-1"><sup>TM</sup></font> v2.0 Architecture included in Apache River and -explains how the components fit together and fit within the -existing Jini<font size="-1"><sup>TM</sup></font> technology infrastructure. Much of this +<p>This document provides an overview of the implementation details of +Jini Specifications included in Apache River and +explains how these components fit together. Much of this information is available in the package, interface, and class documentation, but this document provides a higher-level overview and indicates where to find more information. -<h2>1 Overview of Jini<font size="-1"><sup>TM</sup></font> Architecture</h2> +<h2>1 Overview of Jini Architecture</h2> <p>The Jini system architecture consists of three categories: <i>programming model</i>, <i>infrastructure</i>, and <i>services</i>. @@ -81,7 +80,7 @@ model. The component additions can be s <li><a href="api/net/jini/security/ProxyPreparer.html">ProxyPreparer</a> </ul> -<p><i>New Infrastructure</i> +<p><i>Additional Infrastructure</i> <ul> <li><a href="api/net/jini/security/package-summary.html">Security</a> <li><a href="api/net/jini/core/constraint/package-summary.html">Invocation Constraints</a> @@ -92,15 +91,18 @@ remote invocation (Jini ERI)</a> <li><a href="api/com/sun/jini/discovery/package-summary.html">Discovery Protocol v2</a> </ul> -<p><i>Updates to Services</i> +<p><i>Configuring Services</i> -<p>Each service has been updated to support being +<p>Each service included in Apache River supports being configured using a <code>Configuration</code>. Most of the services were previously configured via system properties. These services can now be configured via entries in the configuration. New types of behavior that can be configured are remote service -exporting and proxy preparation. +exporting and proxy preparation.</p> +<ul> +<li><a href="api/net/jini/config/package-summary.html">Configuration</a> +</ul> <h3>1.1 Goals</h3> Modified: river/jtsk/trunk/src-doc/static/index.html URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src-doc/static/index.html?rev=1137499&r1=1137498&r2=1137499&view=diff ============================================================================== --- river/jtsk/trunk/src-doc/static/index.html (original) +++ river/jtsk/trunk/src-doc/static/index.html Mon Jun 20 05:00:36 2011 @@ -23,7 +23,7 @@ <center><h1>Apache River Release<BR>v2.2.0</h1></center> <hr> <p> -The Apache River release is based on the following two major contributions: +The Apache River release is built on the following two major original contributions: the Jini Technology Starter Kit, and Service UI. In the documentation for this release, you may see historical references to those releases. @@ -33,8 +33,8 @@ release, you may see historical referenc <p> <LI><B>Informative reading</B> <ul> - <li><i><a href="arch2_0.html">Jini<font size="-1"><sup>TM</sup></font> Architecture Specification Version 2.0 Extensions</a></i> - <li><i><a href="specs/html/jini-spec.html">Jini<font size="-1"><sup>TM</sup></font> Architecture Specification Version 1.0</a></i> + <li><i><a href="arch2_0.html">Jini Specification Overview</a></i> + <li><i><a href="specs/html/jini-spec.html">Jini Architecture Specification Version 1.0</a></i> </ul> <p> Modified: river/jtsk/trunk/src/manifest/jsk-resources/META-INF/services/net.jini.config.Configuration URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/manifest/jsk-resources/META-INF/services/net.jini.config.Configuration?rev=1137499&r1=1137498&r2=1137499&view=diff ============================================================================== --- river/jtsk/trunk/src/manifest/jsk-resources/META-INF/services/net.jini.config.Configuration (original) +++ river/jtsk/trunk/src/manifest/jsk-resources/META-INF/services/net.jini.config.Configuration Mon Jun 20 05:00:36 2011 @@ -15,4 +15,4 @@ # See the License for the specific language governing permissions and # limitations under the License. #*/ -com.sun.jini.config.GroovyConfig +net.jini.config.GroovyConfig Modified: river/jtsk/trunk/src/net/jini/config/package.html URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/net/jini/config/package.html?rev=1137499&r1=1137498&r2=1137499&view=diff ============================================================================== --- river/jtsk/trunk/src/net/jini/config/package.html (original) +++ river/jtsk/trunk/src/net/jini/config/package.html Mon Jun 20 05:00:36 2011 @@ -59,6 +59,10 @@ The {@link net.jini.config.EmptyConfigur instance of this class to simplify handling cases where no configuration is specified rather than, for example, checking for a <code>null</code> configuration. <p> + +The net.jini.config.GroovyConfig class is a new configuration provider, +it uses Groovy configuration objects, this is potentially the most +powerful configuration mechanism. <p> <a name="Usage"><h2>Using Configuration</h2></a>
