You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-dev@james.apache.org by rd...@apache.org on 2009/01/05 23:10:00 UTC

svn commit: r731743 [8/17] - in /james/site/trunk/www/mailet: ./ api/ api/apidocs/ api/apidocs/org/apache/mailet/ api/apidocs/org/apache/mailet/class-use/ api/stylesheets/ api/testapidocs/ api/testapidocs/org/apache/mailet/ api/testapidocs/org/apache/m...

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/MailetUtil.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/MailetUtil.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/MailetUtil.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/MailetUtil.html Mon Jan  5 14:09:46 2009
@@ -31,70 +31,95 @@
 <a name="21" href="#21">21</a>  
 <a name="22" href="#22">22</a>  <strong class="jxr_keyword">package</strong> org.apache.mailet.base;
 <a name="23" href="#23">23</a>  
-<a name="24" href="#24">24</a>  
-<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> * The Util class provide some static methods which can be usefull in mailets</em>
-<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="28" href="#28">28</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/mailet/base/MailetUtil.html">MailetUtil</a> {
-<a name="29" href="#29">29</a>      
-<a name="30" href="#30">30</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;This takes the subject string and reduces (normailzes) it.</em>
-<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment">     * Multiple "Re:" entries are reduced to one, and capitalized.  The</em>
-<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment">     * prefix is always moved/placed at the beginning of the line, and</em>
-<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">     * extra blanks are reduced, so that the output is always of the</em>
-<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment">     * form:&lt;/p&gt;</em>
-<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * &lt;code&gt;</em>
-<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     * &amp;lt;prefix&amp;gt; + &amp;lt;one-optional-"Re:"*gt; + &amp;lt;remaining subject&amp;gt;</em>
-<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment">     * &lt;/code&gt;</em>
-<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;I have done extensive testing of this routine with a standalone</em>
-<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment">     * driver, and am leaving the commented out debug messages so that</em>
-<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment">     * when someone decides to enhance this method, it can be yanked it</em>
-<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment">     * from this file, embedded it with a test driver, and the comments</em>
-<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment">     * enabled.&lt;/p&gt;</em>
-<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="45" href="#45">45</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> String normalizeSubject(String subj, String prefix) {
-<a name="46" href="#46">46</a>          StringBuffer subject = <strong class="jxr_keyword">new</strong> StringBuffer(subj);
-<a name="47" href="#47">47</a>          <strong class="jxr_keyword">int</strong> prefixLength = prefix.length();
-<a name="48" href="#48">48</a>  
-<a name="49" href="#49">49</a>          <em class="jxr_comment">// If the "prefix" is not at the beginning the subject line, remove it</em>
-<a name="50" href="#50">50</a>          <strong class="jxr_keyword">int</strong> index = subject.indexOf(prefix);
-<a name="51" href="#51">51</a>          <strong class="jxr_keyword">if</strong> (index != 0) {
-<a name="52" href="#52">52</a>  
-<a name="53" href="#53">53</a>              <strong class="jxr_keyword">if</strong> (index &gt; 0) {
-<a name="54" href="#54">54</a>                  subject.delete(index, index + prefixLength);
-<a name="55" href="#55">55</a>              }
-<a name="56" href="#56">56</a>              subject.insert(0, prefix); <em class="jxr_comment">// insert prefix at the front</em>
-<a name="57" href="#57">57</a>          }
-<a name="58" href="#58">58</a>  
-<a name="59" href="#59">59</a>          <em class="jxr_comment">// Replace Re: with RE:</em>
-<a name="60" href="#60">60</a>          String match = <span class="jxr_string">"Re:"</span>;
-<a name="61" href="#61">61</a>          index = subject.indexOf(match, prefixLength);
-<a name="62" href="#62">62</a>  
-<a name="63" href="#63">63</a>          <strong class="jxr_keyword">while</strong>(index &gt; -1) {
-<a name="64" href="#64">64</a>              subject.replace(index, index + match.length(), <span class="jxr_string">"RE:"</span>);
-<a name="65" href="#65">65</a>              index = subject.indexOf(match, prefixLength);
-<a name="66" href="#66">66</a>          }
-<a name="67" href="#67">67</a>  
-<a name="68" href="#68">68</a>          <em class="jxr_comment">// Reduce them to one at the beginning</em>
-<a name="69" href="#69">69</a>          match =<span class="jxr_string">"RE:"</span>;
-<a name="70" href="#70">70</a>          <strong class="jxr_keyword">int</strong> indexRE = subject.indexOf(match, prefixLength) + match.length();
-<a name="71" href="#71">71</a>          index = subject.indexOf(match, indexRE);
-<a name="72" href="#72">72</a>          <strong class="jxr_keyword">while</strong>(index &gt; 0) {    
-<a name="73" href="#73">73</a>              subject.delete(index, index + match.length());
-<a name="74" href="#74">74</a>              index = subject.indexOf(match, indexRE);
-<a name="75" href="#75">75</a>          }
-<a name="76" href="#76">76</a>  
-<a name="77" href="#77">77</a>          <em class="jxr_comment">// Reduce blanks</em>
-<a name="78" href="#78">78</a>          match = <span class="jxr_string">"  "</span>;
-<a name="79" href="#79">79</a>          index = subject.indexOf(match, prefixLength);
-<a name="80" href="#80">80</a>          <strong class="jxr_keyword">while</strong>(index &gt; -1) {
-<a name="81" href="#81">81</a>              subject.replace(index, index + match.length(), <span class="jxr_string">" "</span>);
-<a name="82" href="#82">82</a>              index = subject.indexOf(match, prefixLength);
-<a name="83" href="#83">83</a>          }
-<a name="84" href="#84">84</a>          <strong class="jxr_keyword">return</strong> subject.toString();
-<a name="85" href="#85">85</a>      }
-<a name="86" href="#86">86</a>  
-<a name="87" href="#87">87</a>  }
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> org.apache.mailet.MailetConfig;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * The Util class provide some static methods which can be usefull in mailets</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="30" href="#30">30</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../org/apache/mailet/base/MailetUtil.html">MailetUtil</a> {
+<a name="31" href="#31">31</a>      
+<a name="32" href="#32">32</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;This takes the subject string and reduces (normailzes) it.</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">     * Multiple "Re:" entries are reduced to one, and capitalized.  The</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment">     * prefix is always moved/placed at the beginning of the line, and</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * extra blanks are reduced, so that the output is always of the</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     * form:&lt;/p&gt;</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment">     * &lt;code&gt;</em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment">     * &amp;lt;prefix&amp;gt; + &amp;lt;one-optional-"Re:"*gt; + &amp;lt;remaining subject&amp;gt;</em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment">     * &lt;/code&gt;</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;I have done extensive testing of this routine with a standalone</em>
+<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment">     * driver, and am leaving the commented out debug messages so that</em>
+<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment">     * when someone decides to enhance this method, it can be yanked it</em>
+<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment">     * from this file, embedded it with a test driver, and the comments</em>
+<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment">     * enabled.&lt;/p&gt;</em>
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="47" href="#47">47</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> String normalizeSubject(String subj, String prefix) {
+<a name="48" href="#48">48</a>          StringBuffer subject = <strong class="jxr_keyword">new</strong> StringBuffer(subj);
+<a name="49" href="#49">49</a>          <strong class="jxr_keyword">int</strong> prefixLength = prefix.length();
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>          <em class="jxr_comment">// If the "prefix" is not at the beginning the subject line, remove it</em>
+<a name="52" href="#52">52</a>          <strong class="jxr_keyword">int</strong> index = subject.indexOf(prefix);
+<a name="53" href="#53">53</a>          <strong class="jxr_keyword">if</strong> (index != 0) {
+<a name="54" href="#54">54</a>  
+<a name="55" href="#55">55</a>              <strong class="jxr_keyword">if</strong> (index &gt; 0) {
+<a name="56" href="#56">56</a>                  subject.delete(index, index + prefixLength);
+<a name="57" href="#57">57</a>              }
+<a name="58" href="#58">58</a>              subject.insert(0, prefix); <em class="jxr_comment">// insert prefix at the front</em>
+<a name="59" href="#59">59</a>          }
+<a name="60" href="#60">60</a>  
+<a name="61" href="#61">61</a>          <em class="jxr_comment">// Replace Re: with RE:</em>
+<a name="62" href="#62">62</a>          String match = <span class="jxr_string">"Re:"</span>;
+<a name="63" href="#63">63</a>          index = subject.indexOf(match, prefixLength);
+<a name="64" href="#64">64</a>  
+<a name="65" href="#65">65</a>          <strong class="jxr_keyword">while</strong>(index &gt; -1) {
+<a name="66" href="#66">66</a>              subject.replace(index, index + match.length(), <span class="jxr_string">"RE:"</span>);
+<a name="67" href="#67">67</a>              index = subject.indexOf(match, prefixLength);
+<a name="68" href="#68">68</a>          }
+<a name="69" href="#69">69</a>  
+<a name="70" href="#70">70</a>          <em class="jxr_comment">// Reduce them to one at the beginning</em>
+<a name="71" href="#71">71</a>          match =<span class="jxr_string">"RE:"</span>;
+<a name="72" href="#72">72</a>          <strong class="jxr_keyword">int</strong> indexRE = subject.indexOf(match, prefixLength) + match.length();
+<a name="73" href="#73">73</a>          index = subject.indexOf(match, indexRE);
+<a name="74" href="#74">74</a>          <strong class="jxr_keyword">while</strong>(index &gt; 0) {    
+<a name="75" href="#75">75</a>              subject.delete(index, index + match.length());
+<a name="76" href="#76">76</a>              index = subject.indexOf(match, indexRE);
+<a name="77" href="#77">77</a>          }
+<a name="78" href="#78">78</a>  
+<a name="79" href="#79">79</a>          <em class="jxr_comment">// Reduce blanks</em>
+<a name="80" href="#80">80</a>          match = <span class="jxr_string">"  "</span>;
+<a name="81" href="#81">81</a>          index = subject.indexOf(match, prefixLength);
+<a name="82" href="#82">82</a>          <strong class="jxr_keyword">while</strong>(index &gt; -1) {
+<a name="83" href="#83">83</a>              subject.replace(index, index + match.length(), <span class="jxr_string">" "</span>);
+<a name="84" href="#84">84</a>              index = subject.indexOf(match, prefixLength);
+<a name="85" href="#85">85</a>          }
+<a name="86" href="#86">86</a>          <strong class="jxr_keyword">return</strong> subject.toString();
+<a name="87" href="#87">87</a>      }
+<a name="88" href="#88">88</a>  
+<a name="89" href="#89">89</a>      
+<a name="90" href="#90">90</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="91" href="#91">91</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;Gets a boolean valued init parameter.&lt;/p&gt;</em>
+<a name="92" href="#92">92</a>  <em class="jxr_javadoccomment">     * @param config not null</em>
+<a name="93" href="#93">93</a>  <em class="jxr_javadoccomment">     * @param name name of the init parameter to be queried</em>
+<a name="94" href="#94">94</a>  <em class="jxr_javadoccomment">     * @param defaultValue this value will be substituted when the named value</em>
+<a name="95" href="#95">95</a>  <em class="jxr_javadoccomment">     * cannot be parse or when the init parameter is absent</em>
+<a name="96" href="#96">96</a>  <em class="jxr_javadoccomment">     * @return true when the init parameter is &lt;code&gt;true&lt;/code&gt; (ignoring case);</em>
+<a name="97" href="#97">97</a>  <em class="jxr_javadoccomment">     * false when the init parameter is &lt;code&gt;false&lt;/code&gt; (ignoring case);</em>
+<a name="98" href="#98">98</a>  <em class="jxr_javadoccomment">     * otherwise the default value</em>
+<a name="99" href="#99">99</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="100" href="#100">100</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">boolean</strong> getInitParameter(MailetConfig config, String name, <strong class="jxr_keyword">boolean</strong> defaultValue) {
+<a name="101" href="#101">101</a>         <strong class="jxr_keyword">final</strong> String value = config.getInitParameter(name);
+<a name="102" href="#102">102</a>         <strong class="jxr_keyword">final</strong> <strong class="jxr_keyword">boolean</strong> result;
+<a name="103" href="#103">103</a>         <strong class="jxr_keyword">if</strong> (<span class="jxr_string">"true"</span>.equalsIgnoreCase(value)) {
+<a name="104" href="#104">104</a>             result = <strong class="jxr_keyword">true</strong>;
+<a name="105" href="#105">105</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (<span class="jxr_string">"false"</span>.equalsIgnoreCase(value)){
+<a name="106" href="#106">106</a>             result = false;
+<a name="107" href="#107">107</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="108" href="#108">108</a>             result = defaultValue;
+<a name="109" href="#109">109</a>         }
+<a name="110" href="#110">110</a>         <strong class="jxr_keyword">return</strong> result;
+<a name="111" href="#111">111</a>     }
+<a name="112" href="#112">112</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
 </html>

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-frame.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-frame.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-frame.html Mon Jan  5 14:09:46 2009
@@ -84,4 +84,4 @@
           	      	</ul>
 
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-summary.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-summary.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/mdn/package-summary.html Mon Jan  5 14:09:46 2009
@@ -167,6 +167,6 @@
         	</ul>
       	</div>
 				<hr />
-		Copyright &copy; 2008 The Apache Software Foundation. All Rights Reserved.
+		Copyright &copy; 2008-2009 The Apache Software Foundation. All Rights Reserved.
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-frame.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-frame.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-frame.html Mon Jan  5 14:09:46 2009
@@ -30,4 +30,4 @@
           	      	</ul>
 
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-summary.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-summary.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/mail/package-summary.html Mon Jan  5 14:09:46 2009
@@ -77,6 +77,6 @@
         	</ul>
       	</div>
 				<hr />
-		Copyright &copy; 2008 The Apache Software Foundation. All Rights Reserved.
+		Copyright &copy; 2008-2009 The Apache Software Foundation. All Rights Reserved.
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-frame.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-frame.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-frame.html Mon Jan  5 14:09:46 2009
@@ -57,4 +57,4 @@
           	      	</ul>
 
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-summary.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-summary.html (original)
+++ james/site/trunk/www/mailet/base/xref/org/apache/mailet/base/package-summary.html Mon Jan  5 14:09:46 2009
@@ -122,6 +122,6 @@
         	</ul>
       	</div>
 				<hr />
-		Copyright &copy; 2008 The Apache Software Foundation. All Rights Reserved.
+		Copyright &copy; 2008-2009 The Apache Software Foundation. All Rights Reserved.
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/base/xref/overview-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/xref/overview-summary.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/xref/overview-summary.html (original)
+++ james/site/trunk/www/mailet/base/xref/overview-summary.html Mon Jan  5 14:09:46 2009
@@ -69,6 +69,6 @@
       	</div>
 		
 		<hr />
-		Copyright &copy; 2008 The Apache Software Foundation. All Rights Reserved.
+		Copyright &copy; 2008-2009 The Apache Software Foundation. All Rights Reserved.
 	</body>
-</html>
\ No newline at end of file
+</html>

Modified: james/site/trunk/www/mailet/crypto/apidocs/allclasses-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/allclasses-frame.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/allclasses-frame.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/allclasses-frame.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 All Classes (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/crypto/apidocs/allclasses-noframe.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/allclasses-noframe.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/allclasses-noframe.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/allclasses-noframe.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 All Classes (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/crypto/apidocs/constant-values.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/constant-values.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/constant-values.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/constant-values.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Constant Field Values (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -184,6 +184,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/deprecated-list.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/deprecated-list.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/deprecated-list.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/deprecated-list.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Deprecated List (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -138,6 +138,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/help-doc.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/help-doc.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/help-doc.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/help-doc.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 API Help (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -215,6 +215,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/index-all.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/index-all.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/index-all.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/index-all.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Index (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -509,6 +509,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/index.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/index.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/index.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/index.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc on Wed Dec 03 14:12:43 GMT 2008-->
+<!-- Generated by javadoc on Mon Jan 05 21:52:20 GMT 2009-->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Apache JAMES Crypto Mailets 1.0-SNAPSHOT API

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/InitJCE.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/InitJCE.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/InitJCE.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/InitJCE.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:40 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:18 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 InitJCE (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -271,6 +271,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyHolder.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyHolder.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyHolder.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyHolder.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:40 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:18 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 KeyHolder (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -311,6 +311,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyStoreHolder.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyStoreHolder.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyStoreHolder.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/KeyStoreHolder.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:41 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:18 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 KeyStoreHolder (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -360,6 +360,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEAttributeNames.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEAttributeNames.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEAttributeNames.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEAttributeNames.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:41 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:18 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SMIMEAttributeNames (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -271,6 +271,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEKeyHolder.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEKeyHolder.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEKeyHolder.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMEKeyHolder.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:41 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:19 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SMIMEKeyHolder (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -634,6 +634,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMESignerInfo.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMESignerInfo.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMESignerInfo.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/SMIMESignerInfo.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:41 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:19 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SMIMESignerInfo (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -373,6 +373,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/InitJCE.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/InitJCE.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/InitJCE.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/InitJCE.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.InitJCE (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyHolder.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyHolder.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyHolder.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyHolder.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Interface org.apache.james.mailet.crypto.KeyHolder (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -218,6 +218,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyStoreHolder.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyStoreHolder.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyStoreHolder.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/KeyStoreHolder.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.KeyStoreHolder (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -172,6 +172,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEAttributeNames.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEAttributeNames.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEAttributeNames.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEAttributeNames.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Interface org.apache.james.mailet.crypto.SMIMEAttributeNames (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEKeyHolder.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEKeyHolder.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEKeyHolder.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMEKeyHolder.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.SMIMEKeyHolder (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMESignerInfo.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMESignerInfo.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMESignerInfo.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/class-use/SMIMESignerInfo.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.SMIMESignerInfo (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/AbstractSign.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/AbstractSign.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/AbstractSign.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/AbstractSign.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:41 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:19 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 AbstractSign (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -441,7 +441,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.apache.mailet.base.<A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html" title="class or interface in org.apache.mailet.base">GenericMailet</A></B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in or
 g.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetInfo()" title="class or interface in org.apache.mailet.base">getMailetInfo</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName
 </A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
+<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, boolean)" title="class or interface in org.apache.
 mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetInfo()" title="class or interface in org.ap
 ache.mailet.base">getMailetInfo</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -998,6 +998,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMECheckSignature.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMECheckSignature.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMECheckSignature.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMECheckSignature.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:19 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SMIMECheckSignature (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -253,7 +253,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.apache.mailet.base.<A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html" title="class or interface in org.apache.mailet.base">GenericMailet</A></B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in or
 g.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetInfo()" title="class or interface in org.apache.mailet.base">getMailetInfo</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName
 </A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
+<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, boolean)" title="class or interface in org.apache.
 mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetInfo()" title="class or interface in org.ap
 ache.mailet.base">getMailetInfo</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -437,6 +437,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMEDecrypt.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMEDecrypt.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMEDecrypt.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMEDecrypt.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:19 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SMIMEDecrypt (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -196,7 +196,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.apache.mailet.base.<A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html" title="class or interface in org.apache.mailet.base">GenericMailet</A></B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in or
 g.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetInfo()" title="class or interface in org.apache.mailet.base">getMailetInfo</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName
 </A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
+<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, boolean)" title="class or interface in org.apache.
 mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetInfo()" title="class or interface in org.ap
 ache.mailet.base">getMailetInfo</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -350,6 +350,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMESign.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMESign.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMESign.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/SMIMESign.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SMIMESign (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -234,7 +234,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.apache.mailet.base.<A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html" title="class or interface in org.apache.mailet.base">GenericMailet</A></B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in or
 g.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.maile
 t.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
+<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, boolean)" title="class or interface in org.apache.
 mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.ap
 ache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -480,6 +480,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/Sign.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/Sign.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/Sign.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/Sign.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:19 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Sign (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -234,7 +234,7 @@
 <TH ALIGN="left"><B>Methods inherited from class org.apache.mailet.base.<A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html" title="class or interface in org.apache.mailet.base">GenericMailet</A></B></TH>
 </TR>
 <TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in or
 g.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.apache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.maile
 t.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
+<TD><CODE><A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#arrayToString(java.lang.Object[])" title="class or interface in org.apache.mailet.base">arrayToString</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#checkInitParameters(java.lang.String[])" title="class or interface in org.apache.mailet.base">checkInitParameters</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#destroy()" title="class or interface in org.apache.mailet.base">destroy</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, boolean)" title="class or interface in org.apache.
 mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameter(java.lang.String, java.lang.String)" title="class or interface in org.apache.mailet.base">getInitParameter</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getInitParameterNames()" title="class or interface in org.apache.mailet.base">getInitParameterNames</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetConfig()" title="class or interface in org.apache.mailet.base">getMailetConfig</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetContext()" title="class or interface in org.apache.mailet.base">getMailetContext</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#getMailetName()" title="class or interface in org.ap
 ache.mailet.base">getMailetName</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#init(org.apache.mailet.MailetConfig)" title="class or interface in org.apache.mailet.base">init</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String)" title="class or interface in org.apache.mailet.base">log</A>, <A HREF="http://james.apache.org/mailet/base//apidocs/org/apache/mailet/base/GenericMailet.html#log(java.lang.String, java.lang.Throwable)" title="class or interface in org.apache.mailet.base">log</A></CODE></TD>
 </TR>
 </TABLE>
 &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
@@ -460,6 +460,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/AbstractSign.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/AbstractSign.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/AbstractSign.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/AbstractSign.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.mailet.AbstractSign (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -183,6 +183,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMECheckSignature.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMECheckSignature.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMECheckSignature.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMECheckSignature.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.mailet.SMIMECheckSignature (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMEDecrypt.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMEDecrypt.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMEDecrypt.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMEDecrypt.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.mailet.SMIMEDecrypt (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMESign.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMESign.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMESign.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/SMIMESign.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.mailet.SMIMESign (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -136,6 +136,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/Sign.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/Sign.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/Sign.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/class-use/Sign.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.james.mailet.crypto.mailet.Sign (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -174,6 +174,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-frame.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-frame.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-frame.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 org.apache.james.mailet.crypto.mailet (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-summary.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-summary.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-summary.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 org.apache.james.mailet.crypto.mailet (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -174,6 +174,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-tree.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-tree.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-tree.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-tree.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:42 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 org.apache.james.mailet.crypto.mailet Class Hierarchy (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -152,6 +152,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>

Modified: james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-use.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-use.html?rev=731743&r1=731742&r2=731743&view=diff
==============================================================================
--- james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-use.html (original)
+++ james/site/trunk/www/mailet/crypto/apidocs/org/apache/james/mailet/crypto/mailet/package-use.html Mon Jan  5 14:09:46 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_16) on Wed Dec 03 14:12:43 GMT 2008 -->
+<!-- Generated by javadoc (build 1.5.0_17) on Mon Jan 05 21:52:20 GMT 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Package org.apache.james.mailet.crypto.mailet (Apache JAMES Crypto Mailets 1.0-SNAPSHOT API)
@@ -173,6 +173,6 @@
 <!-- ======== END OF BOTTOM NAVBAR ======= -->
 
 <HR>
-Copyright &#169; 2008 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
+Copyright &#169; 2008-2009 <a href="http://www.apache.org">The Apache Software Foundation</a>. All Rights Reserved.
 </BODY>
 </HTML>