Author: sijskes
Date: Fri Jan 13 10:24:07 2012
New Revision: 802523
Log:
Publishing merge to river site by sijskes
Modified:
websites/production/river/ (props changed)
websites/production/river/content/people.html
websites/production/river/content/user-guide-basic-river-services.html
Propchange: websites/production/river/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Jan 13 10:24:07 2012
@@ -1 +1 @@
-/websites/staging/river/trunk:778669-801111
+/websites/staging/river/trunk:778669-802522
Modified: websites/production/river/content/people.html
==============================================================================
--- websites/production/river/content/people.html (original)
+++ websites/production/river/content/people.html Fri Jan 13 10:24:07 2012
@@ -104,7 +104,7 @@
</tr>
<tr>
<td>Tom Hobbs</td>
-<td />
+<td>TRH Tech Services Ltd</td>
</tr>
<tr>
<td>Jim Hurley</td>
Modified: websites/production/river/content/user-guide-basic-river-services.html
==============================================================================
--- websites/production/river/content/user-guide-basic-river-services.html
(original)
+++ websites/production/river/content/user-guide-basic-river-services.html Fri
Jan 13 10:24:07 2012
@@ -171,7 +171,12 @@
<li>Execute the script <code>scripts/jrmp-outrigger-group.bat</code></li>
</ul>
<h3 id="testing_it_2">Testing it</h3>
-<p>To find any kind of service we must first create a template. This is an
instance of <code>ServiceTemplate</code> which describes the kind of thing
we're looking for. As the Jini specification says, nulls and empty arrays as
wildcard characters for "any value". So the following code is a template which
will match any service which implements the <code>JavaSapce</code> interface
regardless of the rest of it's characteristics.</p>
+<p>To find any kind of service we must first create a template.
+This is an instance of <code>ServiceTemplate</code> which describes the kind
of thing we're
+looking for.
+As the Jini specification says, nulls and empty arrays as wildcard characters
for
+"any value".
+So the following code is a template which will match any service which
implements the <code>JavaSpace</code> interface regardless of the rest of it's
characteristics.</p>
<div class="codehilite"><pre><span class="n">ServiceTemplate</span> <span
class="n">template</span> <span class="o">=</span> <span class="k">new</span>
<span class="n">ServiceTemplate</span><span class="p">(</span><span
class="n">null</span><span class="p">,</span> <span class="k">new</span> <span
class="n">Class</span><span class="p">[)</span> <span class="p">{</span> <span
class="n">JavaSpace</span><span class="o">.</span><span class="n">class</span>
<span class="p">},</span> <span class="k">new</span> <span
class="n">Entry</span><span class="p">[</span><span class="mi">0</span><span
class="p">]());</span>
</pre></div>