You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by tv...@apache.org on 2013/04/29 08:01:54 UTC

svn commit: r860268 [30/36] - in /websites/production/turbine/content: ./ meta/ meta/images/ meta/images/logos/ meta/style/ stratum/ stratum/apidocs/ stratum/apidocs/org/ stratum/apidocs/org/apache/ stratum/apidocs/org/apache/stratum/ stratum/apidocs/o...

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/TestComponentLoader.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/TestComponentLoader.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/TestComponentLoader.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,142 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>TestComponentLoader xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <strong>package</strong> <a href="../../../../org/apache/stratum/component/package-summary.html">org.apache.stratum.component</a>;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Copyright 2001-2005 The Apache Software Foundation or its licensors,</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * as applicable.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> *</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="8" href="#8">8</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="9" href="#9">9</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="10" href="#10">10</a>  <em class="comment"> *</em>
+<a name="11" href="#11">11</a>  <em class="comment"> *     <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="12" href="#12">12</a>  <em class="comment"> *</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="15" href="#15">15</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="16" href="#16">16</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="17" href="#17">17</a>  <em class="comment"> * limitations under the License.</em>
+<a name="18" href="#18">18</a>  <em class="comment"> */</em>
+<a name="19" href="#19">19</a>  
+<a name="20" href="#20">20</a>  <strong>import</strong> junit.framework.TestCase;
+<a name="21" href="#21">21</a>  
+<a name="22" href="#22">22</a>  <strong>import</strong> org.apache.commons.configuration.Configuration;
+<a name="23" href="#23">23</a>  <strong>import</strong> org.apache.commons.configuration.ConfigurationException;
+<a name="24" href="#24">24</a>  <strong>import</strong> org.apache.commons.configuration.PropertiesConfiguration;
+<a name="25" href="#25">25</a>  <strong>import</strong> org.apache.log4j.Category;
+<a name="26" href="#26">26</a>  
+<a name="27" href="#27">27</a>  <em>/**<em>*</em></em>
+<a name="28" href="#28">28</a>  <em> * TODO: DOCUMENT ME!</em>
+<a name="29" href="#29">29</a>  <em> *</em>
+<a name="30" href="#30">30</a>  <em> * @author $author$</em>
+<a name="31" href="#31">31</a>  <em> * @version $Id: TestComponentLoader.java 264191 2005-08-29 18:07:52Z henning $</em>
+<a name="32" href="#32">32</a>  <em> */</em>
+<a name="33" href="#33">33</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../org/apache/stratum/component/TestComponentLoader.html">TestComponentLoader</a>
+<a name="34" href="#34">34</a>          <strong>extends</strong> TestCase
+<a name="35" href="#35">35</a>  {
+<a name="36" href="#36">36</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="37" href="#37">37</a>      <strong>private</strong> <strong>static</strong> Category log = Category.getInstance(TestComponentLoader.<strong>class</strong>);
+<a name="38" href="#38">38</a>  
+<a name="39" href="#39">39</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="40" href="#40">40</a>      <strong>private</strong> <strong>static</strong> String CONFIG = <span class="string">"src/test-conf/ComponentLoader.properties"</span>;
+<a name="41" href="#41">41</a>  
+<a name="42" href="#42">42</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="43" href="#43">43</a>      <strong>private</strong> <strong>static</strong> Configuration config;
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <strong>static</strong>
+<a name="46" href="#46">46</a>      {
+<a name="47" href="#47">47</a>          <strong>try</strong>
+<a name="48" href="#48">48</a>          {
+<a name="49" href="#49">49</a>              config = <strong>new</strong> PropertiesConfiguration(CONFIG);
+<a name="50" href="#50">50</a>          }
+<a name="51" href="#51">51</a>          <strong>catch</strong> (ConfigurationException ce)
+<a name="52" href="#52">52</a>          {
+<a name="53" href="#53">53</a>              log.error(<span class="string">"unable to configure ComponentLoader from '"</span> + CONFIG + <span class="string">"'."</span>);
+<a name="54" href="#54">54</a>          }
+<a name="55" href="#55">55</a>      }
+<a name="56" href="#56">56</a>  
+<a name="57" href="#57">57</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="58" href="#58">58</a>      <strong>private</strong> ComponentLoader cl = <strong>new</strong> ComponentLoader(config);
+<a name="59" href="#59">59</a>  
+<a name="60" href="#60">60</a>      <em>/**<em>*</em></em>
+<a name="61" href="#61">61</a>  <em>     * Creates a new TestComponentLoader object.</em>
+<a name="62" href="#62">62</a>  <em>     *</em>
+<a name="63" href="#63">63</a>  <em>     * @param name TODO: DOCUMENT ME!</em>
+<a name="64" href="#64">64</a>  <em>     */</em>
+<a name="65" href="#65">65</a>      <strong>public</strong> <a href="../../../../org/apache/stratum/component/TestComponentLoader.html">TestComponentLoader</a>(String name)
+<a name="66" href="#66">66</a>      {
+<a name="67" href="#67">67</a>          <strong>super</strong>(name);
+<a name="68" href="#68">68</a>      }
+<a name="69" href="#69">69</a>  
+<a name="70" href="#70">70</a>      <em>/**<em>*</em></em>
+<a name="71" href="#71">71</a>  <em>     * TODO: DOCUMENT ME!</em>
+<a name="72" href="#72">72</a>  <em>     */</em>
+<a name="73" href="#73">73</a>      <strong>public</strong> <strong>void</strong> testConstructor()
+<a name="74" href="#74">74</a>      {
+<a name="75" href="#75">75</a>          ComponentLoader loader = <strong>new</strong> ComponentLoader(config);
+<a name="76" href="#76">76</a>          Configuration loaderConfig = loader.getConfiguration();
+<a name="77" href="#77">77</a>          assertNotNull(loaderConfig);
+<a name="78" href="#78">78</a>          assertEquals(<span class="string">"org.apache.stratum.component.MockComponent"</span>, loaderConfig.getString(<span class="string">"component.testing.classname"</span>));
+<a name="79" href="#79">79</a>      }
+<a name="80" href="#80">80</a>  
+<a name="81" href="#81">81</a>      <em>/**<em>*</em></em>
+<a name="82" href="#82">82</a>  <em>     * TODO: DOCUMENT ME!</em>
+<a name="83" href="#83">83</a>  <em>     */</em>
+<a name="84" href="#84">84</a>      <strong>public</strong> <strong>void</strong> testLoadComponent()
+<a name="85" href="#85">85</a>      {
+<a name="86" href="#86">86</a>          String goodClassName = <span class="string">"org.apache.stratum.component.MockComponent"</span>;
+<a name="87" href="#87">87</a>          String goodConfigFile = <span class="string">"src/test-conf/TestComponentLoader.properties"</span>;
+<a name="88" href="#88">88</a>          String badClassName = <span class="string">"org.apache.stratum.component.MissingMockComponent"</span>;
+<a name="89" href="#89">89</a>          String badConfigFile = <span class="string">"src/test-conf/MissingTestComponentLoader.properties"</span>;
+<a name="90" href="#90">90</a>  
+<a name="91" href="#91">91</a>          <em class="comment">// test loading with a mock component</em>
+<a name="92" href="#92">92</a>          <a href="../../../../org/apache/stratum/component/MockComponent.html">MockComponent</a> comp = (MockComponent) cl.loadComponent(goodClassName, goodConfigFile, <strong>null</strong>);
+<a name="93" href="#93">93</a>  
+<a name="94" href="#94">94</a>          <em class="comment">// test that loadComponent() catches the IOException</em>
+<a name="95" href="#95">95</a>          cl.loadComponent(badClassName, goodConfigFile, <strong>null</strong>);
+<a name="96" href="#96">96</a>  
+<a name="97" href="#97">97</a>          <em class="comment">// test that loadComponent() catches the ClassNotFoundException</em>
+<a name="98" href="#98">98</a>          cl.loadComponent(goodClassName, badConfigFile, <strong>null</strong>);
+<a name="99" href="#99">99</a>      }
+<a name="100" href="#100">100</a> 
+<a name="101" href="#101">101</a>     <em>/**<em>*</em></em>
+<a name="102" href="#102">102</a> <em>     * TODO: DOCUMENT ME!</em>
+<a name="103" href="#103">103</a> <em>     */</em>
+<a name="104" href="#104">104</a>     <strong>public</strong> <strong>void</strong> testLoad()
+<a name="105" href="#105">105</a>     {
+<a name="106" href="#106">106</a>         assertNotNull(cl);
+<a name="107" href="#107">107</a> 
+<a name="108" href="#108">108</a>         Object [] comps = cl.load();
+<a name="109" href="#109">109</a> 
+<a name="110" href="#110">110</a>         <strong>int</strong> key1FinderCount = 0;
+<a name="111" href="#111">111</a> 
+<a name="112" href="#112">112</a>         <strong>for</strong> (<strong>int</strong> i = 0; i &lt; comps.length; i++)
+<a name="113" href="#113">113</a>         {
+<a name="114" href="#114">114</a>             <strong>if</strong> (comps[i] instanceof MockComponent)
+<a name="115" href="#115">115</a>             {
+<a name="116" href="#116">116</a>                 <a href="../../../../org/apache/stratum/component/MockComponent.html">MockComponent</a> mc = (MockComponent) comps[i];
+<a name="117" href="#117">117</a>                 Configuration config = mc.getConfiguration();
+<a name="118" href="#118">118</a> 
+<a name="119" href="#119">119</a>                 <strong>if</strong> (config.getProperty(<span class="string">"key1"</span>) != <strong>null</strong>)
+<a name="120" href="#120">120</a>                 {
+<a name="121" href="#121">121</a>                     assertEquals(<span class="string">"ensure key2 is present and correct"</span>, <span class="string">"value2"</span>, config.getProperty(<span class="string">"key2"</span>));
+<a name="122" href="#122">122</a>                     key1FinderCount++;
+<a name="123" href="#123">123</a>                 }
+<a name="124" href="#124">124</a>             }
+<a name="125" href="#125">125</a>         }
+<a name="126" href="#126">126</a> 
+<a name="127" href="#127">127</a>         assertEquals(<span class="string">"should only find key1 once"</span>, key1FinderCount, 1);
+<a name="128" href="#128">128</a>     }
+<a name="129" href="#129">129</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/TestComponentLoader.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/TestComponentLoader.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-frame.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-frame.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-frame.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,31 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>jakarta-turbine-stratum 1.0 Reference Package org.apache.stratum.component</title>
+      <link rel="stylesheet" href="../../../../stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>
+        <a href="package-summary.html" target="classFrame">org.apache.stratum.component</a>
+      </h3>
+
+      <h3>Classes</h3>
+
+      <ul>
+        
+          <li>
+            <a href="MockComponent.html" target="classFrame">MockComponent</a>
+          </li>
+        
+          <li>
+            <a href="TestComponentLoader.html" target="classFrame">TestComponentLoader</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-frame.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-frame.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-summary.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-summary.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-summary.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,108 @@
+
+
+  
+
+  
+    
+
+    
+
+    
+
+  
+      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+      <html lang="en">
+        <head>
+          <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+          <title>jakarta-turbine-stratum 1.0 Reference Package </title>
+          <link rel="stylesheet" href="../../../../stylesheet.css" type="text/css" title="style"></link>
+        </head>
+        <body>
+
+          
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+      
+      <h2>Package org.apache.stratum.component</h2>
+
+      <table class="summary">
+        <thead>
+          <tr>
+            <th>Class Summary</th>
+          </tr>
+        </thead>
+
+        <tbody>
+          
+            <tr>
+              <td>
+                <a href="MockComponent.html" target="classFrame">MockComponent</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="TestComponentLoader.html" target="classFrame">TestComponentLoader</a>
+              </td>
+            </tr>
+          
+        </tbody>
+      </table>
+
+    
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+    
+
+          <hr></hr>
+
+          Copyright &copy; 2002-2005 Apache Software Foundation. All Rights Reserved.
+        </body>
+      </html>
+    

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-summary.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/component/package-summary.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/MessengerComponentTest.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/MessengerComponentTest.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/MessengerComponentTest.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,193 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>MessengerComponentTest xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <strong>package</strong> <a href="../../../../org/apache/stratum/messenger/package-summary.html">org.apache.stratum.messenger</a>;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Copyright 2001-2005 The Apache Software Foundation or its licensors,</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * as applicable.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> *</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="8" href="#8">8</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="9" href="#9">9</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="10" href="#10">10</a>  <em class="comment"> *</em>
+<a name="11" href="#11">11</a>  <em class="comment"> *     <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="12" href="#12">12</a>  <em class="comment"> *</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="15" href="#15">15</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="16" href="#16">16</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="17" href="#17">17</a>  <em class="comment"> * limitations under the License.</em>
+<a name="18" href="#18">18</a>  <em class="comment"> */</em>
+<a name="19" href="#19">19</a>  
+<a name="20" href="#20">20</a>  <strong>import</strong> junit.framework.TestCase;
+<a name="21" href="#21">21</a>  
+<a name="22" href="#22">22</a>  <strong>import</strong> org.apache.commons.configuration.Configuration;
+<a name="23" href="#23">23</a>  <strong>import</strong> org.apache.commons.configuration.PropertiesConfiguration;
+<a name="24" href="#24">24</a>  <strong>import</strong> org.apache.log4j.Category;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  <strong>import</strong> com.mockobjects.ExpectationCounter;
+<a name="27" href="#27">27</a>  <strong>import</strong> com.mockobjects.ExpectationValue;
+<a name="28" href="#28">28</a>  <strong>import</strong> com.mockobjects.Verifiable;
+<a name="29" href="#29">29</a>  <strong>import</strong> com.mockobjects.util.Verifier;
+<a name="30" href="#30">30</a>  
+<a name="31" href="#31">31</a>  <em>/**<em>*</em></em>
+<a name="32" href="#32">32</a>  <em> * Test cases to exercise the MessengerComponent.</em>
+<a name="33" href="#33">33</a>  <em> *</em>
+<a name="34" href="#34">34</a>  <em> * @author &lt;a href="<a href="mailto:eric@dobbse.net" target="alexandria_uri">mailto:eric@dobbse.net</a>">Eric Dobbs&lt;/a></em>
+<a name="35" href="#35">35</a>  <em> * @version $Id: MessengerComponentTest.java 264191 2005-08-29 18:07:52Z henning $</em>
+<a name="36" href="#36">36</a>  <em> *</em>
+<a name="37" href="#37">37</a>  <em> * @see MessengerComponent</em>
+<a name="38" href="#38">38</a>  <em> */</em>
+<a name="39" href="#39">39</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../org/apache/stratum/messenger/MessengerComponentTest.html">MessengerComponentTest</a>
+<a name="40" href="#40">40</a>          <strong>extends</strong> TestCase
+<a name="41" href="#41">41</a>  {
+<a name="42" href="#42">42</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="43" href="#43">43</a>      <strong>private</strong> <strong>static</strong> Category log = Category.getInstance(MessengerComponentTest.<strong>class</strong>);
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="46" href="#46">46</a>      <strong>private</strong> <strong>static</strong> MessengerComponent messengerComponent = <strong>new</strong> MessengerComponent();
+<a name="47" href="#47">47</a>  
+<a name="48" href="#48">48</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="49" href="#49">49</a>      <strong>private</strong> <strong>static</strong> String CONFIG = <span class="string">"src/test-conf/Messenger.properties"</span>;
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="52" href="#52">52</a>      <strong>private</strong> <strong>static</strong> Configuration config;
+<a name="53" href="#53">53</a>  
+<a name="54" href="#54">54</a>      <em>/**<em>*</em></em>
+<a name="55" href="#55">55</a>  <em>     * Constructor.</em>
+<a name="56" href="#56">56</a>  <em>     *</em>
+<a name="57" href="#57">57</a>  <em>     * @param name String name of the method to be tested.</em>
+<a name="58" href="#58">58</a>  <em>     */</em>
+<a name="59" href="#59">59</a>      <strong>public</strong> <a href="../../../../org/apache/stratum/messenger/MessengerComponentTest.html">MessengerComponentTest</a>(String name)
+<a name="60" href="#60">60</a>      {
+<a name="61" href="#61">61</a>          <strong>super</strong>(name);
+<a name="62" href="#62">62</a>      }
+<a name="63" href="#63">63</a>  
+<a name="64" href="#64">64</a>      <em>/**<em>*</em></em>
+<a name="65" href="#65">65</a>  <em>     * Verify that MessengerComponent.configure() only asks for one value from the given Configuration, and that the property</em>
+<a name="66" href="#66">66</a>  <em>     * requested is "messenger.xml.url"</em>
+<a name="67" href="#67">67</a>  <em>     */</em>
+<a name="68" href="#68">68</a>      <strong>public</strong> <strong>void</strong> testConfigure()
+<a name="69" href="#69">69</a>      {
+<a name="70" href="#70">70</a>          MockConfiguration mockConfiguration = <strong>new</strong> MockConfiguration();
+<a name="71" href="#71">71</a>          mockConfiguration.setExpectedGetStringCalls(1);
+<a name="72" href="#72">72</a>          mockConfiguration.setExpectedGetStringValue(<span class="string">"messenger.xml.url"</span>);
+<a name="73" href="#73">73</a>  
+<a name="74" href="#74">74</a>          <strong>try</strong>
+<a name="75" href="#75">75</a>          {
+<a name="76" href="#76">76</a>              messengerComponent.configure(mockConfiguration);
+<a name="77" href="#77">77</a>          }
+<a name="78" href="#78">78</a>          <strong>catch</strong> (Exception e)
+<a name="79" href="#79">79</a>          {
+<a name="80" href="#80">80</a>              String errorMessage = <span class="string">"Exception should not have been thrown: "</span> + e.getMessage();
+<a name="81" href="#81">81</a>              log.error(errorMessage, e);
+<a name="82" href="#82">82</a>              fail(errorMessage);
+<a name="83" href="#83">83</a>          }
+<a name="84" href="#84">84</a>  
+<a name="85" href="#85">85</a>          mockConfiguration.verify();
+<a name="86" href="#86">86</a>      }
+<a name="87" href="#87">87</a>  
+<a name="88" href="#88">88</a>      <em>/**<em>*</em></em>
+<a name="89" href="#89">89</a>  <em>     * Verify that a null value in the configuration will cause an Exception to be thrown.  That's about all that makes sense to</em>
+<a name="90" href="#90">90</a>  <em>     * test for MessengerComponent.initialize().  Other testing would only repeat tests already covered in the Messenger test</em>
+<a name="91" href="#91">91</a>  <em>     * code.</em>
+<a name="92" href="#92">92</a>  <em>     */</em>
+<a name="93" href="#93">93</a>      <strong>public</strong> <strong>void</strong> testInitialize()
+<a name="94" href="#94">94</a>      {
+<a name="95" href="#95">95</a>          MockConfiguration mockConfiguration = <strong>new</strong> MockConfiguration();
+<a name="96" href="#96">96</a>          mockConfiguration.setupGetString(<strong>null</strong>);
+<a name="97" href="#97">97</a>  
+<a name="98" href="#98">98</a>          <strong>try</strong>
+<a name="99" href="#99">99</a>          {
+<a name="100" href="#100">100</a>             messengerComponent.configure(mockConfiguration);
+<a name="101" href="#101">101</a>             messengerComponent.initialize();
+<a name="102" href="#102">102</a>             fail(<span class="string">"Exception should have been thrown"</span>);
+<a name="103" href="#103">103</a>         }
+<a name="104" href="#104">104</a>         <strong>catch</strong> (Exception e)
+<a name="105" href="#105">105</a>         {
+<a name="106" href="#106">106</a>             <em class="comment">//this space intentionally left blank</em>
+<a name="107" href="#107">107</a>         }
+<a name="108" href="#108">108</a>     }
+<a name="109" href="#109">109</a> 
+<a name="110" href="#110">110</a>     <em>/**<em>*</em></em>
+<a name="111" href="#111">111</a> <em>     * Need to mock the Configuration.getString() method for testing the configure method.  See &lt;a</em>
+<a name="112" href="#112">112</a> <em>     * href="<a href="http://www.mockobjects.com" target="alexandria_uri">http://www.mockobjects.com</a>">www.mockobjects.com&lt;/a> for more information about mock objects.</em>
+<a name="113" href="#113">113</a> <em>     */</em>
+<a name="114" href="#114">114</a>     <strong>static</strong> <strong>class</strong> MockConfiguration
+<a name="115" href="#115">115</a>             <strong>extends</strong> PropertiesConfiguration
+<a name="116" href="#116">116</a>             implements Verifiable
+<a name="117" href="#117">117</a>     {
+<a name="118" href="#118">118</a>         <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="119" href="#119">119</a>         <strong>private</strong> ExpectationCounter getStringCalls = <strong>new</strong> ExpectationCounter(<span class="string">"mockConfiguration.getString"</span>);
+<a name="120" href="#120">120</a> 
+<a name="121" href="#121">121</a>         <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="122" href="#122">122</a>         <strong>private</strong> ExpectationValue getStringValue = <strong>new</strong> ExpectationValue(<span class="string">"mockConfiguration.getString"</span>);
+<a name="123" href="#123">123</a> 
+<a name="124" href="#124">124</a>         <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="125" href="#125">125</a>         <strong>private</strong> String getStringReturnValue = <strong>null</strong>;
+<a name="126" href="#126">126</a> 
+<a name="127" href="#127">127</a>         <em>/**<em>*</em></em>
+<a name="128" href="#128">128</a> <em>         * TODO: DOCUMENT ME!</em>
+<a name="129" href="#129">129</a> <em>         *</em>
+<a name="130" href="#130">130</a> <em>         * @param callCount TODO: DOCUMENT ME!</em>
+<a name="131" href="#131">131</a> <em>         */</em>
+<a name="132" href="#132">132</a>         <strong>public</strong> <strong>void</strong> setExpectedGetStringCalls(<strong>int</strong> callCount)
+<a name="133" href="#133">133</a>         {
+<a name="134" href="#134">134</a>             getStringCalls.setExpected(callCount);
+<a name="135" href="#135">135</a>         }
+<a name="136" href="#136">136</a> 
+<a name="137" href="#137">137</a>         <em>/**<em>*</em></em>
+<a name="138" href="#138">138</a> <em>         * TODO: DOCUMENT ME!</em>
+<a name="139" href="#139">139</a> <em>         *</em>
+<a name="140" href="#140">140</a> <em>         * @param key TODO: DOCUMENT ME!</em>
+<a name="141" href="#141">141</a> <em>         */</em>
+<a name="142" href="#142">142</a>         <strong>public</strong> <strong>void</strong> setExpectedGetStringValue(String key)
+<a name="143" href="#143">143</a>         {
+<a name="144" href="#144">144</a>             getStringValue.setExpected(key);
+<a name="145" href="#145">145</a>         }
+<a name="146" href="#146">146</a> 
+<a name="147" href="#147">147</a>         <em>/**<em>*</em></em>
+<a name="148" href="#148">148</a> <em>         * TODO: DOCUMENT ME!</em>
+<a name="149" href="#149">149</a> <em>         *</em>
+<a name="150" href="#150">150</a> <em>         * @param getString TODO: DOCUMENT ME!</em>
+<a name="151" href="#151">151</a> <em>         */</em>
+<a name="152" href="#152">152</a>         <strong>public</strong> <strong>void</strong> setupGetString(String getString)
+<a name="153" href="#153">153</a>         {
+<a name="154" href="#154">154</a>             getStringReturnValue = getString;
+<a name="155" href="#155">155</a>         }
+<a name="156" href="#156">156</a> 
+<a name="157" href="#157">157</a>         <em>/**<em>*</em></em>
+<a name="158" href="#158">158</a> <em>         * TODO: DOCUMENT ME!</em>
+<a name="159" href="#159">159</a> <em>         */</em>
+<a name="160" href="#160">160</a>         <strong>public</strong> <strong>void</strong> verify()
+<a name="161" href="#161">161</a>         {
+<a name="162" href="#162">162</a>             Verifier.verifyObject(<strong>this</strong>);
+<a name="163" href="#163">163</a>         }
+<a name="164" href="#164">164</a> 
+<a name="165" href="#165">165</a>         <em>/**<em>*</em></em>
+<a name="166" href="#166">166</a> <em>         * TODO: DOCUMENT ME!</em>
+<a name="167" href="#167">167</a> <em>         *</em>
+<a name="168" href="#168">168</a> <em>         * @param key TODO: DOCUMENT ME!</em>
+<a name="169" href="#169">169</a> <em>         *</em>
+<a name="170" href="#170">170</a> <em>         * @return TODO: DOCUMENT ME!</em>
+<a name="171" href="#171">171</a> <em>         */</em>
+<a name="172" href="#172">172</a>         <strong>public</strong> String getString(String key)
+<a name="173" href="#173">173</a>         {
+<a name="174" href="#174">174</a>             getStringCalls.inc();
+<a name="175" href="#175">175</a>             getStringValue.setActual(key);
+<a name="176" href="#176">176</a> 
+<a name="177" href="#177">177</a>             <strong>return</strong> getStringReturnValue;
+<a name="178" href="#178">178</a>         }
+<a name="179" href="#179">179</a>     }
+<a name="180" href="#180">180</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/MessengerComponentTest.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/MessengerComponentTest.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-frame.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-frame.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-frame.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,27 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>jakarta-turbine-stratum 1.0 Reference Package org.apache.stratum.messenger</title>
+      <link rel="stylesheet" href="../../../../stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>
+        <a href="package-summary.html" target="classFrame">org.apache.stratum.messenger</a>
+      </h3>
+
+      <h3>Classes</h3>
+
+      <ul>
+        
+          <li>
+            <a href="MessengerComponentTest.html" target="classFrame">MessengerComponentTest</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-frame.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-frame.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-summary.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-summary.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-summary.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,102 @@
+
+
+  
+
+  
+    
+
+    
+
+    
+
+  
+      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+      <html lang="en">
+        <head>
+          <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+          <title>jakarta-turbine-stratum 1.0 Reference Package </title>
+          <link rel="stylesheet" href="../../../../stylesheet.css" type="text/css" title="style"></link>
+        </head>
+        <body>
+
+          
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+      
+      <h2>Package org.apache.stratum.messenger</h2>
+
+      <table class="summary">
+        <thead>
+          <tr>
+            <th>Class Summary</th>
+          </tr>
+        </thead>
+
+        <tbody>
+          
+            <tr>
+              <td>
+                <a href="MessengerComponentTest.html" target="classFrame">MessengerComponentTest</a>
+              </td>
+            </tr>
+          
+        </tbody>
+      </table>
+
+    
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+    
+
+          <hr></hr>
+
+          Copyright &copy; 2002-2005 Apache Software Foundation. All Rights Reserved.
+        </body>
+      </html>
+    

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-summary.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/messenger/package-summary.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/TestScheduler.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/TestScheduler.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/TestScheduler.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,175 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>TestScheduler xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <strong>package</strong> <a href="../../../../org/apache/stratum/scheduler/package-summary.html">org.apache.stratum.scheduler</a>;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Copyright 2001-2005 The Apache Software Foundation or its licensors,</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * as applicable.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> *</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="8" href="#8">8</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="9" href="#9">9</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="10" href="#10">10</a>  <em class="comment"> *</em>
+<a name="11" href="#11">11</a>  <em class="comment"> *     <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="12" href="#12">12</a>  <em class="comment"> *</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="15" href="#15">15</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="16" href="#16">16</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="17" href="#17">17</a>  <em class="comment"> * limitations under the License.</em>
+<a name="18" href="#18">18</a>  <em class="comment"> */</em>
+<a name="19" href="#19">19</a>  
+<a name="20" href="#20">20</a>  <strong>import</strong> java.io.File;
+<a name="21" href="#21">21</a>  <strong>import</strong> java.io.FileInputStream;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <strong>import</strong> junit.framework.Test;
+<a name="24" href="#24">24</a>  <strong>import</strong> junit.framework.TestCase;
+<a name="25" href="#25">25</a>  <strong>import</strong> junit.framework.TestSuite;
+<a name="26" href="#26">26</a>  <strong>import</strong> junit.textui.TestRunner;
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>  <strong>import</strong> org.apache.commons.betwixt.XMLIntrospector;
+<a name="29" href="#29">29</a>  <strong>import</strong> org.apache.commons.betwixt.io.BeanReader;
+<a name="30" href="#30">30</a>  <strong>import</strong> org.apache.commons.betwixt.strategy.DecapitalizeNameMapper;
+<a name="31" href="#31">31</a>  <strong>import</strong> org.apache.commons.betwixt.strategy.DefaultPluralStemmer;
+<a name="32" href="#32">32</a>  <strong>import</strong> org.apache.commons.configuration.PropertiesConfiguration;
+<a name="33" href="#33">33</a>  
+<a name="34" href="#34">34</a>  <em>/**<em>*</em></em>
+<a name="35" href="#35">35</a>  <em> * Test harness for the Scheduler</em>
+<a name="36" href="#36">36</a>  <em> *</em>
+<a name="37" href="#37">37</a>  <em> * @author &lt;a href="<a href="mailto:john@zenplex.com" target="alexandria_uri">mailto:john@zenplex.com</a>">John Thorhauer&lt;/a></em>
+<a name="38" href="#38">38</a>  <em> * @version $Id: TestScheduler.java 264731 2005-08-30 08:04:32Z henning $</em>
+<a name="39" href="#39">39</a>  <em> */</em>
+<a name="40" href="#40">40</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../org/apache/stratum/scheduler/TestScheduler.html">TestScheduler</a>
+<a name="41" href="#41">41</a>          <strong>extends</strong> TestCase
+<a name="42" href="#42">42</a>  {
+<a name="43" href="#43">43</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="44" href="#44">44</a>      <strong>private</strong> <strong>static</strong> <strong>final</strong> String XML = <span class="string">"src/test-conf/Scheduler.xml"</span>;
+<a name="45" href="#45">45</a>  
+<a name="46" href="#46">46</a>      <em>/**<em>* TODO: DOCUMENT ME! */</em></em>
+<a name="47" href="#47">47</a>      <strong>private</strong> <strong>static</strong> <strong>final</strong> String PROPERTIES = <span class="string">"src/test-conf/Scheduler.properties"</span>;
+<a name="48" href="#48">48</a>  
+<a name="49" href="#49">49</a>      <em>/**<em>*</em></em>
+<a name="50" href="#50">50</a>  <em>     * TODO: DOCUMENT ME!</em>
+<a name="51" href="#51">51</a>  <em>     *</em>
+<a name="52" href="#52">52</a>  <em>     * @param args TODO: DOCUMENT ME!</em>
+<a name="53" href="#53">53</a>  <em>     */</em>
+<a name="54" href="#54">54</a>      <strong>public</strong> <strong>static</strong> <strong>void</strong> main(String [] args)
+<a name="55" href="#55">55</a>      {
+<a name="56" href="#56">56</a>          TestRunner.run(suite());
+<a name="57" href="#57">57</a>      }
+<a name="58" href="#58">58</a>  
+<a name="59" href="#59">59</a>      <em>/**<em>*</em></em>
+<a name="60" href="#60">60</a>  <em>     * TODO: DOCUMENT ME!</em>
+<a name="61" href="#61">61</a>  <em>     *</em>
+<a name="62" href="#62">62</a>  <em>     * @return TODO: DOCUMENT ME!</em>
+<a name="63" href="#63">63</a>  <em>     */</em>
+<a name="64" href="#64">64</a>      <strong>public</strong> <strong>static</strong> Test suite()
+<a name="65" href="#65">65</a>      {
+<a name="66" href="#66">66</a>          <strong>return</strong> <strong>new</strong> TestSuite(TestScheduler.<strong>class</strong>);
+<a name="67" href="#67">67</a>      }
+<a name="68" href="#68">68</a>  
+<a name="69" href="#69">69</a>      <em>/**<em>*</em></em>
+<a name="70" href="#70">70</a>  <em>     * Creates a new TestScheduler object.</em>
+<a name="71" href="#71">71</a>  <em>     *</em>
+<a name="72" href="#72">72</a>  <em>     * @param testName TODO: DOCUMENT ME!</em>
+<a name="73" href="#73">73</a>  <em>     */</em>
+<a name="74" href="#74">74</a>      <strong>public</strong> <a href="../../../../org/apache/stratum/scheduler/TestScheduler.html">TestScheduler</a>(String testName)
+<a name="75" href="#75">75</a>      {
+<a name="76" href="#76">76</a>          <strong>super</strong>(testName);
+<a name="77" href="#77">77</a>      }
+<a name="78" href="#78">78</a>  
+<a name="79" href="#79">79</a>      <em>/**<em>*</em></em>
+<a name="80" href="#80">80</a>  <em>     * TODO: DOCUMENT ME!</em>
+<a name="81" href="#81">81</a>  <em>     *</em>
+<a name="82" href="#82">82</a>  <em>     * @throws Exception TODO: DOCUMENT ME!</em>
+<a name="83" href="#83">83</a>  <em>     */</em>
+<a name="84" href="#84">84</a>      <strong>public</strong> <strong>void</strong> testLoadXmlConfig()
+<a name="85" href="#85">85</a>              throws Exception
+<a name="86" href="#86">86</a>      {
+<a name="87" href="#87">87</a>          SchedulerConfig schedConf = <strong>new</strong> SchedulerConfig();
+<a name="88" href="#88">88</a>          FileInputStream in = <strong>new</strong> FileInputStream(<strong>new</strong> File(XML));
+<a name="89" href="#89">89</a>  
+<a name="90" href="#90">90</a>          <em class="comment">// create a new BeanReader</em>
+<a name="91" href="#91">91</a>          BeanReader reader = createBeanReader();
+<a name="92" href="#92">92</a>  
+<a name="93" href="#93">93</a>          SchedulerConfig schedConf2 = (SchedulerConfig) reader.parse(in);
+<a name="94" href="#94">94</a>  
+<a name="95" href="#95">95</a>          assertNotNull(<span class="string">"scheduler should not be null."</span>, schedConf2);
+<a name="96" href="#96">96</a>          assertEquals(<span class="string">"there should be 2 job configurations"</span>, 2, schedConf2.getJobConfigs().size());
+<a name="97" href="#97">97</a>          assertEquals(<span class="string">"there should be 2 triggers"</span>, 2, schedConf2.getTriggerConfigs().size());
+<a name="98" href="#98">98</a>          assertTrue(<span class="string">"scheduler name should be scheduler1"</span>, schedConf2.getInstanceName().equals(<span class="string">"scheduler1"</span>));
+<a name="99" href="#99">99</a>  
+<a name="100" href="#100">100</a>         assertTrue(<span class="string">"job name should be job1"</span>, ((JobConfig) (schedConf2.getJobConfigs().get(0))).getName().equals(<span class="string">"job1"</span>));
+<a name="101" href="#101">101</a>     }
+<a name="102" href="#102">102</a> 
+<a name="103" href="#103">103</a>     <em>/**<em>*</em></em>
+<a name="104" href="#104">104</a> <em>     * TODO: DOCUMENT ME!</em>
+<a name="105" href="#105">105</a> <em>     *</em>
+<a name="106" href="#106">106</a> <em>     * @throws Exception TODO: DOCUMENT ME!</em>
+<a name="107" href="#107">107</a> <em>     */</em>
+<a name="108" href="#108">108</a>     <strong>public</strong> <strong>void</strong> testRunScheduler()
+<a name="109" href="#109">109</a>             throws Exception
+<a name="110" href="#110">110</a>     {
+<a name="111" href="#111">111</a>         Scheduler sched = <strong>new</strong> Scheduler();
+<a name="112" href="#112">112</a>         PropertiesConfiguration conf = <strong>new</strong> PropertiesConfiguration(PROPERTIES);
+<a name="113" href="#113">113</a>         sched.configure(conf);
+<a name="114" href="#114">114</a> 
+<a name="115" href="#115">115</a>         <strong>try</strong>
+<a name="116" href="#116">116</a>         {
+<a name="117" href="#117">117</a>             sched.start();
+<a name="118" href="#118">118</a>             Thread.sleep(5000);
+<a name="119" href="#119">119</a>             sched.stop();
+<a name="120" href="#120">120</a>         }
+<a name="121" href="#121">121</a>         <strong>catch</strong> (InterruptedException e)
+<a name="122" href="#122">122</a>         {
+<a name="123" href="#123">123</a>             e.printStackTrace();
+<a name="124" href="#124">124</a>         }
+<a name="125" href="#125">125</a>     }
+<a name="126" href="#126">126</a> 
+<a name="127" href="#127">127</a>     <em class="comment">// Implementation methods</em>
+<a name="128" href="#128">128</a>     <em class="comment">//-------------------------------------------------------------------------</em>
+<a name="129" href="#129">129</a>     <strong>protected</strong> BeanReader createBeanReader()
+<a name="130" href="#130">130</a>             throws Exception
+<a name="131" href="#131">131</a>     {
+<a name="132" href="#132">132</a>         BeanReader reader = <strong>new</strong> BeanReader();
+<a name="133" href="#133">133</a>         reader.setXMLIntrospector(createXMLIntrospector());
+<a name="134" href="#134">134</a>         reader.registerBeanClass(SchedulerConfig.<strong>class</strong>);
+<a name="135" href="#135">135</a> 
+<a name="136" href="#136">136</a>         <strong>return</strong> reader;
+<a name="137" href="#137">137</a>     }
+<a name="138" href="#138">138</a> 
+<a name="139" href="#139">139</a>     <em>/**<em>*</em></em>
+<a name="140" href="#140">140</a> <em>     * ### it would be really nice to move this somewhere shareable across Maven / Turbine projects. Maybe a static helper method -</em>
+<a name="141" href="#141">141</a> <em>     * question is what to call it???</em>
+<a name="142" href="#142">142</a> <em>     *</em>
+<a name="143" href="#143">143</a> <em>     * @return TODO: DOCUMENT ME!</em>
+<a name="144" href="#144">144</a> <em>     */</em>
+<a name="145" href="#145">145</a>     <strong>protected</strong> XMLIntrospector createXMLIntrospector()
+<a name="146" href="#146">146</a>     {
+<a name="147" href="#147">147</a>         XMLIntrospector introspector = <strong>new</strong> XMLIntrospector();
+<a name="148" href="#148">148</a> 
+<a name="149" href="#149">149</a>         <em class="comment">// set elements for attributes to true</em>
+<a name="150" href="#150">150</a>         introspector.getConfiguration().setAttributesForPrimitives(false);
+<a name="151" href="#151">151</a> 
+<a name="152" href="#152">152</a>         <em class="comment">// wrap collections in an XML element</em>
+<a name="153" href="#153">153</a>         <em class="comment">//introspector.setWrapCollectionsInElement(true);</em>
+<a name="154" href="#154">154</a>         <em class="comment">// turn bean elements first letter into lower case</em>
+<a name="155" href="#155">155</a>         introspector.getConfiguration().setElementNameMapper(<strong>new</strong> DecapitalizeNameMapper());
+<a name="156" href="#156">156</a>         introspector.getConfiguration().setAttributeNameMapper(<strong>new</strong> DecapitalizeNameMapper());
+<a name="157" href="#157">157</a> 
+<a name="158" href="#158">158</a>         introspector.getConfiguration().setPluralStemmer(<strong>new</strong> DefaultPluralStemmer());
+<a name="159" href="#159">159</a> 
+<a name="160" href="#160">160</a>         <strong>return</strong> introspector;
+<a name="161" href="#161">161</a>     }
+<a name="162" href="#162">162</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/TestScheduler.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/TestScheduler.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobOne.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobOne.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobOne.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,80 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>JobOne xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <strong>package</strong> <a href="../../../../../org/apache/stratum/scheduler/examplejobs/package-summary.html">org.apache.stratum.scheduler.examplejobs</a>;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Copyright 2001-2005 The Apache Software Foundation or its licensors,</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * as applicable.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> *</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="8" href="#8">8</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="9" href="#9">9</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="10" href="#10">10</a>  <em class="comment"> *</em>
+<a name="11" href="#11">11</a>  <em class="comment"> *     <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="12" href="#12">12</a>  <em class="comment"> *</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="15" href="#15">15</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="16" href="#16">16</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="17" href="#17">17</a>  <em class="comment"> * limitations under the License.</em>
+<a name="18" href="#18">18</a>  <em class="comment"> */</em>
+<a name="19" href="#19">19</a>  
+<a name="20" href="#20">20</a>  <strong>import</strong> java.util.Date;
+<a name="21" href="#21">21</a>  
+<a name="22" href="#22">22</a>  <strong>import</strong> org.quartz.Job;
+<a name="23" href="#23">23</a>  <strong>import</strong> org.quartz.JobExecutionContext;
+<a name="24" href="#24">24</a>  <strong>import</strong> org.quartz.JobExecutionException;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  <em>/**<em>*</em></em>
+<a name="27" href="#27">27</a>  <em> * &lt;p></em>
+<a name="28" href="#28">28</a>  <em> * A dumb implementation of Job, for unittesting purposes.</em>
+<a name="29" href="#29">29</a>  <em> * &lt;/p></em>
+<a name="30" href="#30">30</a>  <em> *</em>
+<a name="31" href="#31">31</a>  <em> * @author James House</em>
+<a name="32" href="#32">32</a>  <em> */</em>
+<a name="33" href="#33">33</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/stratum/scheduler/examplejobs/JobOne.html">JobOne</a>
+<a name="34" href="#34">34</a>          implements Job
+<a name="35" href="#35">35</a>  {
+<a name="36" href="#36">36</a>      <em class="comment">/*<em class="comment"> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *</em></em>
+<a name="37" href="#37">37</a>  <em class="comment">     *</em>
+<a name="38" href="#38">38</a>  <em class="comment">     * Constructors.</em>
+<a name="39" href="#39">39</a>  <em class="comment">     *</em>
+<a name="40" href="#40">40</a>  <em class="comment">     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */</em>
+<a name="41" href="#41">41</a>      <strong>public</strong> <a href="../../../../../org/apache/stratum/scheduler/examplejobs/JobOne.html">JobOne</a>()
+<a name="42" href="#42">42</a>      {
+<a name="43" href="#43">43</a>      }
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <em class="comment">/*<em class="comment"> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *</em></em>
+<a name="46" href="#46">46</a>  <em class="comment">     *</em>
+<a name="47" href="#47">47</a>  <em class="comment">     * Interface.</em>
+<a name="48" href="#48">48</a>  <em class="comment">     *</em>
+<a name="49" href="#49">49</a>  <em class="comment">     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */</em>
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <em>/**<em>*</em></em>
+<a name="52" href="#52">52</a>  <em>     * &lt;p></em>
+<a name="53" href="#53">53</a>  <em>     * Called by the &lt;code>{@link org.quartz.Scheduler}&lt;/code> when a &lt;code>{@link org.quartz.Trigger}&lt;/code> fires that is</em>
+<a name="54" href="#54">54</a>  <em>     * associated with the &lt;code>Job&lt;/code>.</em>
+<a name="55" href="#55">55</a>  <em>     * &lt;/p></em>
+<a name="56" href="#56">56</a>  <em>     *</em>
+<a name="57" href="#57">57</a>  <em>     * @param context TODO: DOCUMENT ME!</em>
+<a name="58" href="#58">58</a>  <em>     *</em>
+<a name="59" href="#59">59</a>  <em>     * @throws JobExecutionException if there is an exception while executing the job.</em>
+<a name="60" href="#60">60</a>  <em>     */</em>
+<a name="61" href="#61">61</a>      <strong>public</strong> <strong>void</strong> execute(JobExecutionContext context)
+<a name="62" href="#62">62</a>              throws JobExecutionException
+<a name="63" href="#63">63</a>      {
+<a name="64" href="#64">64</a>          System.out.println(<span class="string">"    --- Testing Scheduler Component\n    --- "</span> + context.getJobDetail().getFullName() + <span class="string">" executed.["</span>
+<a name="65" href="#65">65</a>              + <strong>new</strong> Date() + <span class="string">"]"</span>);
+<a name="66" href="#66">66</a>      }
+<a name="67" href="#67">67</a>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobOne.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobOne.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobTwo.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobTwo.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobTwo.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,80 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>JobTwo xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<pre>
+
+<a name="1" href="#1">1</a>   <strong>package</strong> <a href="../../../../../org/apache/stratum/scheduler/examplejobs/package-summary.html">org.apache.stratum.scheduler.examplejobs</a>;
+<a name="2" href="#2">2</a>   
+<a name="3" href="#3">3</a>   <em class="comment">/*</em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Copyright 2001-2005 The Apache Software Foundation or its licensors,</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * as applicable.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> *</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="8" href="#8">8</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="9" href="#9">9</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="10" href="#10">10</a>  <em class="comment"> *</em>
+<a name="11" href="#11">11</a>  <em class="comment"> *     <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="12" href="#12">12</a>  <em class="comment"> *</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="15" href="#15">15</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="16" href="#16">16</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="17" href="#17">17</a>  <em class="comment"> * limitations under the License.</em>
+<a name="18" href="#18">18</a>  <em class="comment"> */</em>
+<a name="19" href="#19">19</a>  
+<a name="20" href="#20">20</a>  <strong>import</strong> java.util.Date;
+<a name="21" href="#21">21</a>  
+<a name="22" href="#22">22</a>  <strong>import</strong> org.quartz.Job;
+<a name="23" href="#23">23</a>  <strong>import</strong> org.quartz.JobExecutionContext;
+<a name="24" href="#24">24</a>  <strong>import</strong> org.quartz.JobExecutionException;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  <em>/**<em>*</em></em>
+<a name="27" href="#27">27</a>  <em> * &lt;p></em>
+<a name="28" href="#28">28</a>  <em> * A dumb implementation of Job, for unittesting purposes.</em>
+<a name="29" href="#29">29</a>  <em> * &lt;/p></em>
+<a name="30" href="#30">30</a>  <em> *</em>
+<a name="31" href="#31">31</a>  <em> * @author James House</em>
+<a name="32" href="#32">32</a>  <em> */</em>
+<a name="33" href="#33">33</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/stratum/scheduler/examplejobs/JobTwo.html">JobTwo</a>
+<a name="34" href="#34">34</a>          implements Job
+<a name="35" href="#35">35</a>  {
+<a name="36" href="#36">36</a>      <em class="comment">/*<em class="comment"> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *</em></em>
+<a name="37" href="#37">37</a>  <em class="comment">    *</em>
+<a name="38" href="#38">38</a>  <em class="comment">    * Constructors.</em>
+<a name="39" href="#39">39</a>  <em class="comment">    *</em>
+<a name="40" href="#40">40</a>  <em class="comment">    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */</em>
+<a name="41" href="#41">41</a>      <strong>public</strong> <a href="../../../../../org/apache/stratum/scheduler/examplejobs/JobTwo.html">JobTwo</a>()
+<a name="42" href="#42">42</a>      {
+<a name="43" href="#43">43</a>      }
+<a name="44" href="#44">44</a>  
+<a name="45" href="#45">45</a>      <em class="comment">/*<em class="comment"> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *</em></em>
+<a name="46" href="#46">46</a>  <em class="comment">     *</em>
+<a name="47" href="#47">47</a>  <em class="comment">     * Interface.</em>
+<a name="48" href="#48">48</a>  <em class="comment">     *</em>
+<a name="49" href="#49">49</a>  <em class="comment">     * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */</em>
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <em>/**<em>*</em></em>
+<a name="52" href="#52">52</a>  <em>     * &lt;p></em>
+<a name="53" href="#53">53</a>  <em>     * Called by the &lt;code>{@link org.quartz.Scheduler}&lt;/code> when a &lt;code>{@link org.quartz.Trigger}&lt;/code> fires that is</em>
+<a name="54" href="#54">54</a>  <em>     * associated with the &lt;code>Job&lt;/code>.</em>
+<a name="55" href="#55">55</a>  <em>     * &lt;/p></em>
+<a name="56" href="#56">56</a>  <em>     *</em>
+<a name="57" href="#57">57</a>  <em>     * @param context TODO: DOCUMENT ME!</em>
+<a name="58" href="#58">58</a>  <em>     *</em>
+<a name="59" href="#59">59</a>  <em>     * @throws JobExecutionException if there is an exception while executing the job.</em>
+<a name="60" href="#60">60</a>  <em>     */</em>
+<a name="61" href="#61">61</a>      <strong>public</strong> <strong>void</strong> execute(JobExecutionContext context)
+<a name="62" href="#62">62</a>              throws JobExecutionException
+<a name="63" href="#63">63</a>      {
+<a name="64" href="#64">64</a>          System.err.println(<span class="string">"    --- Testing Scheduler Component\n    --- "</span> + context.getJobDetail().getFullName() + <span class="string">" executed.["</span>
+<a name="65" href="#65">65</a>              + <strong>new</strong> Date() + <span class="string">"]"</span>);
+<a name="66" href="#66">66</a>      }
+<a name="67" href="#67">67</a>  }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobTwo.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/JobTwo.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-frame.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-frame.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-frame.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,31 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>jakarta-turbine-stratum 1.0 Reference Package org.apache.stratum.scheduler.examplejobs</title>
+      <link rel="stylesheet" href="../../../../../stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>
+        <a href="package-summary.html" target="classFrame">org.apache.stratum.scheduler.examplejobs</a>
+      </h3>
+
+      <h3>Classes</h3>
+
+      <ul>
+        
+          <li>
+            <a href="JobOne.html" target="classFrame">JobOne</a>
+          </li>
+        
+          <li>
+            <a href="JobTwo.html" target="classFrame">JobTwo</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-frame.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-frame.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-summary.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-summary.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-summary.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,108 @@
+
+
+  
+
+  
+    
+
+    
+
+    
+
+  
+      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+      <html lang="en">
+        <head>
+          <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+          <title>jakarta-turbine-stratum 1.0 Reference Package </title>
+          <link rel="stylesheet" href="../../../../../stylesheet.css" type="text/css" title="style"></link>
+        </head>
+        <body>
+
+          
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+      
+      <h2>Package org.apache.stratum.scheduler.examplejobs</h2>
+
+      <table class="summary">
+        <thead>
+          <tr>
+            <th>Class Summary</th>
+          </tr>
+        </thead>
+
+        <tbody>
+          
+            <tr>
+              <td>
+                <a href="JobOne.html" target="classFrame">JobOne</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="JobTwo.html" target="classFrame">JobTwo</a>
+              </td>
+            </tr>
+          
+        </tbody>
+      </table>
+
+    
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+    
+
+          <hr></hr>
+
+          Copyright &copy; 2002-2005 Apache Software Foundation. All Rights Reserved.
+        </body>
+      </html>
+    

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-summary.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/examplejobs/package-summary.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-frame.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-frame.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-frame.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,27 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>jakarta-turbine-stratum 1.0 Reference Package org.apache.stratum.scheduler</title>
+      <link rel="stylesheet" href="../../../../stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>
+        <a href="package-summary.html" target="classFrame">org.apache.stratum.scheduler</a>
+      </h3>
+
+      <h3>Classes</h3>
+
+      <ul>
+        
+          <li>
+            <a href="TestScheduler.html" target="classFrame">TestScheduler</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-frame.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-frame.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-summary.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-summary.html (added)
+++ websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-summary.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,102 @@
+
+
+  
+
+  
+    
+
+    
+
+    
+
+  
+      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+      <html lang="en">
+        <head>
+          <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+          <title>jakarta-turbine-stratum 1.0 Reference Package </title>
+          <link rel="stylesheet" href="../../../../stylesheet.css" type="text/css" title="style"></link>
+        </head>
+        <body>
+
+          
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+      
+      <h2>Package org.apache.stratum.scheduler</h2>
+
+      <table class="summary">
+        <thead>
+          <tr>
+            <th>Class Summary</th>
+          </tr>
+        </thead>
+
+        <tbody>
+          
+            <tr>
+              <td>
+                <a href="TestScheduler.html" target="classFrame">TestScheduler</a>
+              </td>
+            </tr>
+          
+        </tbody>
+      </table>
+
+    
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="../../../../overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="../../../../index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+    
+
+          <hr></hr>
+
+          Copyright &copy; 2002-2005 Apache Software Foundation. All Rights Reserved.
+        </body>
+      </html>
+    

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-summary.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/org/apache/stratum/scheduler/package-summary.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/overview-frame.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/overview-frame.html (added)
+++ websites/production/turbine/content/stratum/xref-test/overview-frame.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,39 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>jakarta-turbine-stratum 1.0 Reference</title>
+      <link rel="stylesheet" href="stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>
+        <a href="allclasses-frame.html" target="packageFrame">All Classes</a>
+      </h3>
+
+      <h3>Packages</h3>
+
+      <ul>
+        
+          <li>
+            <a href="org/apache/stratum/component/package-frame.html" target="packageFrame">org.apache.stratum.component</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/messenger/package-frame.html" target="packageFrame">org.apache.stratum.messenger</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/package-frame.html" target="packageFrame">org.apache.stratum.scheduler</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/examplejobs/package-frame.html" target="packageFrame">org.apache.stratum.scheduler.examplejobs</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref-test/overview-frame.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/overview-frame.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/overview-summary.html
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/overview-summary.html (added)
+++ websites/production/turbine/content/stratum/xref-test/overview-summary.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,112 @@
+
+
+  
+
+  
+    
+
+    
+
+    
+  
+      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+      <html lang="en">
+        <head>
+          <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+          <title>jakarta-turbine-stratum 1.0 Reference</title>
+          <link rel="stylesheet" href="stylesheet.css" type="text/css" title="style"></link>
+        </head>
+        <body>
+
+          
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li class="selected">Overview</li>
+          <li>Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="overview-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+    
+      
+
+      <h2>jakarta-turbine-stratum 1.0 Reference</h2>
+
+      <table class="summary">
+        <thead>
+          <tr>
+            <th>Packages</th>
+          </tr>
+        </thead>
+
+        <tbody>
+          
+            <tr>
+              <td>
+                <a href="org/apache/stratum/component/package-summary.html">org.apache.stratum.component</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="org/apache/stratum/messenger/package-summary.html">org.apache.stratum.messenger</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="org/apache/stratum/scheduler/package-summary.html">org.apache.stratum.scheduler</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="org/apache/stratum/scheduler/examplejobs/package-summary.html">org.apache.stratum.scheduler.examplejobs</a>
+              </td>
+            </tr>
+          
+        </tbody>
+      </table>
+
+    
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li class="selected">Overview</li>
+          <li>Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="overview-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+    
+    
+          <hr></hr>
+          Copyright &copy; 2002-2005 Apache Software Foundation. All Rights Reserved.
+        </body>
+      </html>
+    

Propchange: websites/production/turbine/content/stratum/xref-test/overview-summary.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/overview-summary.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref-test/stylesheet.css
==============================================================================
--- websites/production/turbine/content/stratum/xref-test/stylesheet.css (added)
+++ websites/production/turbine/content/stratum/xref-test/stylesheet.css Mon Apr 29 06:01:27 2013
@@ -0,0 +1,96 @@
+/* Javadoc style sheet */
+/* Define colors, fonts and other style attributes here to override the defaults  */
+body { 
+	background-color: #fff;
+	font-family: Arial, Helvetica, sans-serif;
+}
+
+a:link {
+ color: #00f;
+}
+a:visited {
+ color: #00a;
+}
+
+a:active, a:hover {
+ color: #f30 !important;
+}
+
+ul, li	{
+	list-style-type:none ;
+	margin:0;
+	padding:0;
+}
+
+table td{
+	padding: 3px;
+	border: 1px solid #000;
+}
+table{
+	width:100%;
+	border: 1px solid #000;
+	border-collapse: collapse;
+}
+
+div.overview {
+	background-color:#ddd;
+	padding: 4px 4px 4px 0;
+}
+div.overview li, div.framenoframe li {
+	display: inline;
+}
+div.framenoframe {
+	text-align: center;
+	font-size: x-small;
+}
+div.framenoframe li {
+	margin: 0 3px 0 3px;
+}
+div.overview li {
+	margin:3px 3px 0 3px;
+	padding: 4px;
+}
+li.selected {
+	background-color:#888;
+	color: #fff;
+	font-weight: bold;
+}
+
+table.summary {
+	margin-bottom: 20px;
+}
+table.summary td, table.summary th {
+	font-weight: bold;
+	text-align: left;
+	padding: 3px;
+}
+table.summary th{
+	background-color:#036;
+	color: #fff;
+}
+table.summary td{
+	background-color:#eee;
+	border: 1px solid black;
+}
+
+em {
+	color: #A00;
+}
+em.comment {
+	color: #390;
+}
+.string {
+	color: #009;
+}
+div#footer {
+	text-align:center;
+}
+#overview {
+	padding:2px;
+}
+            
+            
+hr {
+	height: 1px;
+	color: #000;
+}
\ No newline at end of file

Propchange: websites/production/turbine/content/stratum/xref-test/stylesheet.css
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref-test/stylesheet.css
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref/allclasses-frame.html
==============================================================================
--- websites/production/turbine/content/stratum/xref/allclasses-frame.html (added)
+++ websites/production/turbine/content/stratum/xref/allclasses-frame.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,91 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>All Classes</title>
+      <link rel="stylesheet" href="stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>All Classes</h3>
+
+      <ul>
+        
+          <li>
+            <a href="org/apache/stratum/component/AbstractComponent.html" target="classFrame">AbstractComponent</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/component/Component.html" target="classFrame">Component</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/component/ComponentLoader.html" target="classFrame">ComponentLoader</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Configurable.html" target="classFrame">Configurable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Disposable.html" target="classFrame">Disposable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Executable.html" target="classFrame">Executable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Initializable.html" target="classFrame">Initializable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/JobConfig.html" target="classFrame">JobConfig</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/JobStoreConfig.html" target="classFrame">JobStoreConfig</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/messenger/MessengerComponent.html" target="classFrame">MessengerComponent</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/ojb/OJBComponent.html" target="classFrame">OJBComponent</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Reconfigurable.html" target="classFrame">Reconfigurable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/Scheduler.html" target="classFrame">Scheduler</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/SchedulerConfig.html" target="classFrame">SchedulerConfig</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Startable.html" target="classFrame">Startable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/lifecycle/Suspendable.html" target="classFrame">Suspendable</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/ThreadPoolConfig.html" target="classFrame">ThreadPoolConfig</a>
+          </li>
+        
+          <li>
+            <a href="org/apache/stratum/scheduler/TriggerConfig.html" target="classFrame">TriggerConfig</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref/allclasses-frame.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref/allclasses-frame.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: websites/production/turbine/content/stratum/xref/index.html
==============================================================================
--- websites/production/turbine/content/stratum/xref/index.html (added)
+++ websites/production/turbine/content/stratum/xref/index.html Mon Apr 29 06:01:27 2013
@@ -0,0 +1,22 @@
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "DTD/xhtml1-frameset.dtd">
+  <html lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>jakarta-turbine-stratum 1.0 Reference</title>
+    </head>
+    <frameset cols="20%,80%">
+      <frameset rows="30%,70%">
+        <frame name="packageListFrame" src="overview-frame.html"></frame>
+        <frame name="packageFrame" src="allclasses-frame.html"></frame>
+      </frameset>
+      <frame name="classFrame" src="overview-summary.html"></frame>
+    </frameset>
+    <noframes>
+      <h1>Frame Alert</h1>
+      <p>
+        You don't have frames. Go
+        <a href="overview-summary.html">here</a>
+      </p>
+    </noframes>
+  </html>

Propchange: websites/production/turbine/content/stratum/xref/index.html
------------------------------------------------------------------------------
    svn:executable = *

Propchange: websites/production/turbine/content/stratum/xref/index.html
------------------------------------------------------------------------------
    svn:mime-type = text/plain