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/08/03 14:19:07 UTC

svn commit: r800330 [9/22] - 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/api/xref/org/apache/mailet/Matcher.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/api/xref/org/apache/mailet/Matcher.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/api/xref/org/apache/mailet/Matcher.html (original)
+++ james/site/trunk/www/mailet/api/xref/org/apache/mailet/Matcher.html Mon Aug  3 12:18:51 2009
@@ -31,123 +31,110 @@
 <a name="21" href="#21">21</a>  <strong class="jxr_keyword">package</strong> org.apache.mailet;
 <a name="22" href="#22">22</a>  
 <a name="23" href="#23">23</a>  <strong class="jxr_keyword">import</strong> java.util.Collection;
-<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"> * This interface define the behaviour of the message "routing" inside</em>
-<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * the mailet container. The match(Mail) method returns a Collection of</em>
-<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * recipients that meet this class's criteria.</em>
-<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
-<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> * An important feature of the mailet container is the ability to fork</em>
-<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment"> * processing of messages.  When a message first arrives at the server,</em>
-<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment"> * it might have multiple recipients specified.  As a message is passed</em>
-<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment"> * to a matcher, the matcher might only "match" one of the listed</em>
-<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> * recipients.  It would then return only the matching recipient in</em>
-<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * the Collection.  The mailet container should then duplicate the</em>
-<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * message splitting the recipient list across the two messages as per</em>
-<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> * what the matcher returned.</em>
-<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
-<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment"> * &lt;b&gt;[THIS PARAGRAPH NOT YET IMPLEMENTED]&lt;/b&gt;</em>
-<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment"> * &lt;i&gt;The matcher can extend this forking to further separation by returning</em>
-<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment"> * a Collection of Collection objects.  This allows a matcher to fork</em>
-<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment"> * multiple processes if there are multiple recipients that require</em>
-<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment"> * separate processing.  For example, we could write a ListservMatcher</em>
-<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment"> * that handles multiple listservs.  When someone cross-posts across</em>
-<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment"> * multiple listservs that this matcher handles, it could put each</em>
-<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment"> * listserv address (recipient) that it handles in a separate Collection</em>
-<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment"> * object.  By returning each of these Collections within a container</em>
-<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment"> * Collection object, it could indicate to the mailet container how</em>
-<a name="49" href="#49">49</a>  <em class="jxr_javadoccomment"> * many forks to spawn.&lt;/i&gt;</em>
-<a name="50" href="#50">50</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
-<a name="51" href="#51">51</a>  <em class="jxr_javadoccomment"> * This interface defines methods to initialize a matcher, to match</em>
-<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment"> * messages, and to remove a matcher from the server. These are known</em>
-<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment"> * as life-cycle methods and are called in the following sequence:</em>
-<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment"> * &lt;ol&gt;</em>
-<a name="55" href="#55">55</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;The matcher is constructed, then initialized with the init method.&lt;/li&gt;</em>
-<a name="56" href="#56">56</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;Any calls from clients to the match method are handled.&lt;/li&gt;</em>
-<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;The matcher is taken out of service, then destroyed with the</em>
-<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment"> *      destroy method, then garbage collected and finalized.&lt;/li&gt;</em>
-<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment"> * &lt;/ol&gt;</em>
-<a name="60" href="#60">60</a>  <em class="jxr_javadoccomment"> * In addition to the life-cycle methods, this interface provides the</em>
-<a name="61" href="#61">61</a>  <em class="jxr_javadoccomment"> * getMatcherConfig method, which the matcher can use to get any startup</em>
-<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment"> * information, and the getMatcherInfo method, which allows the matcher</em>
-<a name="63" href="#63">63</a>  <em class="jxr_javadoccomment"> * to return basic information about itself, such as author, version,</em>
-<a name="64" href="#64">64</a>  <em class="jxr_javadoccomment"> * and copyright.</em>
-<a name="65" href="#65">65</a>  <em class="jxr_javadoccomment"> *</em>
-<a name="66" href="#66">66</a>  <em class="jxr_javadoccomment"> * @version 1.0.0, 24/04/1999</em>
-<a name="67" href="#67">67</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="68" href="#68">68</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../org/apache/mailet/Matcher.html">Matcher</a> {
-<a name="69" href="#69">69</a>  
-<a name="70" href="#70">70</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="71" href="#71">71</a>  <em class="jxr_javadoccomment">     * Called by the mailet container to indicate to a matcher that the matcher</em>
-<a name="72" href="#72">72</a>  <em class="jxr_javadoccomment">     * is being taken out of service. This method is only called once all threads</em>
-<a name="73" href="#73">73</a>  <em class="jxr_javadoccomment">     * within the matcher's service method have exited or after a timeout period</em>
-<a name="74" href="#74">74</a>  <em class="jxr_javadoccomment">     * has passed. After the mailet container calls this method, it will not call</em>
-<a name="75" href="#75">75</a>  <em class="jxr_javadoccomment">     * the match method again on this matcher.</em>
+<a name="24" href="#24">24</a>  <strong class="jxr_keyword">import</strong> javax.mail.MessagingException;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  <em class="jxr_javadoccomment">/**</em>
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * This interface defines the behaviour of the message "routing" inside</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * the mailet container. At its heart is the {@link #match(Mail)} method,</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * which inspects a Mail and returns a subset of its recipients which meet</em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> * this Matcher's criteria.</em>
+<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
+<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment"> * An important feature of the mailet container is the ability to fork</em>
+<a name="33" href="#33">33</a>  <em class="jxr_javadoccomment"> * processing of messages. When a message first arrives at the server,</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment"> * it might have multiple recipients specified. When a message is passed</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment"> * to a matcher, the matcher might only match some of the listed recipients.</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment"> * The mailet container should then duplicate the message, splitting the</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment"> * recipient list across the two messages as per the match result, and</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment"> * proceed to process them separately.</em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment"> * The Matcher life cycle is controlled by the mailet container,</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment"> * which invokes the Matcher methods in the following order:</em>
+<a name="42" href="#42">42</a>  <em class="jxr_javadoccomment"> * &lt;ol&gt;</em>
+<a name="43" href="#43">43</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;The matcher is constructed.</em>
+<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;The {@link #init} method is invoked once to initialize the matcher.</em>
+<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;The {@link #match} method is invoked to match mail messages.</em>
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment"> *     This can occur an unlimited number of times, even concurrently.</em>
+<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment"> * &lt;li&gt;At some point, such as when the mailet container is shut down,</em>
+<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment"> *     the matcher is taken out of service and then destroyed by invoking</em>
+<a name="49" href="#49">49</a>  <em class="jxr_javadoccomment"> *     the {@link #destroy} method once.</em>
+<a name="50" href="#50">50</a>  <em class="jxr_javadoccomment"> * &lt;/ol&gt;</em>
+<a name="51" href="#51">51</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
+<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment"> * In addition to the life-cycle methods, this interface provides the</em>
+<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment"> * {@link #getMatcherConfig} method, which provides the Matcher with</em>
+<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment"> * its configuration information and a {@link MailetContext} through which</em>
+<a name="55" href="#55">55</a>  <em class="jxr_javadoccomment"> * it can interact with the mailet container, and the {@link #getMatcherInfo}</em>
+<a name="56" href="#56">56</a>  <em class="jxr_javadoccomment"> * method, which provides basic information about the Matcher.</em>
+<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment"> *</em>
+<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="59" href="#59">59</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../org/apache/mailet/Matcher.html">Matcher</a> {
+<a name="60" href="#60">60</a>  
+<a name="61" href="#61">61</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment">     * Initializes this Matcher.</em>
+<a name="63" href="#63">63</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
+<a name="64" href="#64">64</a>  <em class="jxr_javadoccomment">     * This method is called only once, and must complete successfully</em>
+<a name="65" href="#65">65</a>  <em class="jxr_javadoccomment">     * before the {@link #match} method can be invoked.</em>
+<a name="66" href="#66">66</a>  <em class="jxr_javadoccomment">     *</em>
+<a name="67" href="#67">67</a>  <em class="jxr_javadoccomment">     * @param config a MatcherConfig containing the matcher's configuration</em>
+<a name="68" href="#68">68</a>  <em class="jxr_javadoccomment">     *          and initialization parameters</em>
+<a name="69" href="#69">69</a>  <em class="jxr_javadoccomment">     * @throws MessagingException if an error occurs</em>
+<a name="70" href="#70">70</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="71" href="#71">71</a>      <strong class="jxr_keyword">void</strong> init(<a href="../../../org/apache/mailet/MatcherConfig.html">MatcherConfig</a> config) <strong class="jxr_keyword">throws</strong> MessagingException;
+<a name="72" href="#72">72</a>  
+<a name="73" href="#73">73</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="74" href="#74">74</a>  <em class="jxr_javadoccomment">     * Takes a Mail message, looks at any pertinent information, and returns</em>
+<a name="75" href="#75">75</a>  <em class="jxr_javadoccomment">     * a subset of recipients that meet the match conditions.</em>
 <a name="76" href="#76">76</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
-<a name="77" href="#77">77</a>  <em class="jxr_javadoccomment">     * This method gives the matcher an opportunity to clean up any resources that</em>
-<a name="78" href="#78">78</a>  <em class="jxr_javadoccomment">     * are being held (for example, memory, file handles, threads) and make sure</em>
-<a name="79" href="#79">79</a>  <em class="jxr_javadoccomment">     * that any persistent state is synchronized with the matcher's current state in memory.</em>
-<a name="80" href="#80">80</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="81" href="#81">81</a>      <strong class="jxr_keyword">void</strong> destroy();
-<a name="82" href="#82">82</a>  
-<a name="83" href="#83">83</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="84" href="#84">84</a>  <em class="jxr_javadoccomment">     * Returns a MatcherConfig object, which contains initialization and</em>
-<a name="85" href="#85">85</a>  <em class="jxr_javadoccomment">     * startup parameters for this matcher.</em>
-<a name="86" href="#86">86</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
-<a name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     * Implementations of this interface are responsible for storing the</em>
-<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     * MatcherConfig object so that this method can return it. The GenericMatcher</em>
-<a name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     * class, which implements this interface, already does this.</em>
-<a name="90" href="#90">90</a>  <em class="jxr_javadoccomment">     *</em>
-<a name="91" href="#91">91</a>  <em class="jxr_javadoccomment">     * @return the MatcherConfig object that initializes this matcher</em>
-<a name="92" href="#92">92</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="93" href="#93">93</a>      <a href="../../../org/apache/mailet/MatcherConfig.html">MatcherConfig</a> getMatcherConfig();
-<a name="94" href="#94">94</a>  
-<a name="95" href="#95">95</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="96" href="#96">96</a>  <em class="jxr_javadoccomment">     * Returns information about the matcher, such as author, version, and copyright.</em>
+<a name="77" href="#77">77</a>  <em class="jxr_javadoccomment">     * Matchers typically run inside multithreaded mailet containers that can handle</em>
+<a name="78" href="#78">78</a>  <em class="jxr_javadoccomment">     * multiple requests concurrently. Developers must be aware to synchronize access</em>
+<a name="79" href="#79">79</a>  <em class="jxr_javadoccomment">     * to any shared resources such as files, network connections, and as well as the</em>
+<a name="80" href="#80">80</a>  <em class="jxr_javadoccomment">     * matcher's fields. More information on multithreaded programming in Java is</em>
+<a name="81" href="#81">81</a>  <em class="jxr_javadoccomment">     * available at &lt;a href="<a href="http://java.sun.com/Series/Tutorial/java/threads/multithreaded.html" target="alexandria_uri">http://java.sun.com/Series/Tutorial/java/threads/multithreaded.html</a>"&gt;the</em>
+<a name="82" href="#82">82</a>  <em class="jxr_javadoccomment">     * Java tutorial on multi-threaded programming&lt;/a&gt;.</em>
+<a name="83" href="#83">83</a>  <em class="jxr_javadoccomment">     *</em>
+<a name="84" href="#84">84</a>  <em class="jxr_javadoccomment">     * @param mail the Mail to match</em>
+<a name="85" href="#85">85</a>  <em class="jxr_javadoccomment">     * @return the recipients that meet the match criteria as a Collection of String objects</em>
+<a name="86" href="#86">86</a>  <em class="jxr_javadoccomment">     * @throws MessagingException if any error occurs which prevents the Mail</em>
+<a name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     *         matching from completing successfully</em>
+<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="89" href="#89">89</a>      Collection match(<a href="../../../org/apache/mailet/Mail.html">Mail</a> mail) <strong class="jxr_keyword">throws</strong> MessagingException;
+<a name="90" href="#90">90</a>      
+<a name="91" href="#91">91</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="92" href="#92">92</a>  <em class="jxr_javadoccomment">     * Destroys this Matcher.</em>
+<a name="93" href="#93">93</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
+<a name="94" href="#94">94</a>  <em class="jxr_javadoccomment">     * This method is called only once, after all {@link #match} invocations</em>
+<a name="95" href="#95">95</a>  <em class="jxr_javadoccomment">     * have completed (or a timeout period has elapsed). After this method</em>
+<a name="96" href="#96">96</a>  <em class="jxr_javadoccomment">     * returns, this Matcher will no longer be used.</em>
 <a name="97" href="#97">97</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
-<a name="98" href="#98">98</a>  <em class="jxr_javadoccomment">     * The string that this method returns should be plain text and not markup</em>
-<a name="99" href="#99">99</a>  <em class="jxr_javadoccomment">     * of any kind (such as HTML, XML, etc.).</em>
-<a name="100" href="#100">100</a> <em class="jxr_javadoccomment">     *</em>
-<a name="101" href="#101">101</a> <em class="jxr_javadoccomment">     * @return a String containing matcher information</em>
-<a name="102" href="#102">102</a> <em class="jxr_javadoccomment">     */</em>
-<a name="103" href="#103">103</a>     String getMatcherInfo();
-<a name="104" href="#104">104</a> 
-<a name="105" href="#105">105</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="106" href="#106">106</a> <em class="jxr_javadoccomment">     * Called by the mailet container to indicate to a matcher that the</em>
-<a name="107" href="#107">107</a> <em class="jxr_javadoccomment">     * matcher is being placed into service.</em>
-<a name="108" href="#108">108</a> <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
-<a name="109" href="#109">109</a> <em class="jxr_javadoccomment">     * The mailet container calls the init method exactly once after instantiating</em>
-<a name="110" href="#110">110</a> <em class="jxr_javadoccomment">     * the matcher. The init method must complete successfully before the matcher</em>
-<a name="111" href="#111">111</a> <em class="jxr_javadoccomment">     * can receive any messages.</em>
-<a name="112" href="#112">112</a> <em class="jxr_javadoccomment">     *</em>
-<a name="113" href="#113">113</a> <em class="jxr_javadoccomment">     * @param config - a MatcherConfig object containing the matcher's configuration</em>
-<a name="114" href="#114">114</a> <em class="jxr_javadoccomment">     *          and initialization parameters</em>
-<a name="115" href="#115">115</a> <em class="jxr_javadoccomment">     * @throws javax.mail.MessagingException - if an exception has occurred that</em>
-<a name="116" href="#116">116</a> <em class="jxr_javadoccomment">     *          interferes with the matcher's normal operation</em>
+<a name="98" href="#98">98</a>  <em class="jxr_javadoccomment">     * Implementations should use this method to release any resources that</em>
+<a name="99" href="#99">99</a>  <em class="jxr_javadoccomment">     * are being held (such as memory, file handles or threads) and make sure</em>
+<a name="100" href="#100">100</a> <em class="jxr_javadoccomment">     * that any persistent information is properly stored.</em>
+<a name="101" href="#101">101</a> <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
+<a name="102" href="#102">102</a> <em class="jxr_javadoccomment">     * Note that containers &lt;code&gt;SHOULD NOT&lt;/code&gt; invoke this method before </em>
+<a name="103" href="#103">103</a> <em class="jxr_javadoccomment">     * {@link #init(MatcherConfig)} has been successfully completed. </em>
+<a name="104" href="#104">104</a> <em class="jxr_javadoccomment">     */</em>
+<a name="105" href="#105">105</a>     <strong class="jxr_keyword">void</strong> destroy();
+<a name="106" href="#106">106</a>     
+<a name="107" href="#107">107</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="108" href="#108">108</a> <em class="jxr_javadoccomment">     * Returns a MatcherConfig object, which provides initialization parameters</em>
+<a name="109" href="#109">109</a> <em class="jxr_javadoccomment">     * and a {@link MailetContext} through which it can interact with the</em>
+<a name="110" href="#110">110</a> <em class="jxr_javadoccomment">     * mailet container.</em>
+<a name="111" href="#111">111</a> <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
+<a name="112" href="#112">112</a> <em class="jxr_javadoccomment">     * Implementations of this interface are responsible for storing the</em>
+<a name="113" href="#113">113</a> <em class="jxr_javadoccomment">     * MatcherConfig which they receive in the {@link #init} method so</em>
+<a name="114" href="#114">114</a> <em class="jxr_javadoccomment">     * that this method can return it.</em>
+<a name="115" href="#115">115</a> <em class="jxr_javadoccomment">     *</em>
+<a name="116" href="#116">116</a> <em class="jxr_javadoccomment">     * @return the MatcherConfig that this matcher was initialized with</em>
 <a name="117" href="#117">117</a> <em class="jxr_javadoccomment">     */</em>
-<a name="118" href="#118">118</a>     <strong class="jxr_keyword">void</strong> init( MatcherConfig config ) <strong class="jxr_keyword">throws</strong> javax.mail.MessagingException;
+<a name="118" href="#118">118</a>     <a href="../../../org/apache/mailet/MatcherConfig.html">MatcherConfig</a> getMatcherConfig();
 <a name="119" href="#119">119</a> 
 <a name="120" href="#120">120</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="121" href="#121">121</a> <em class="jxr_javadoccomment">     * Takes a Mail message, looks at any pertinent information, and then returns a subset</em>
-<a name="122" href="#122">122</a> <em class="jxr_javadoccomment">     * of recipients that meet the "match" conditions.</em>
-<a name="123" href="#123">123</a> <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
-<a name="124" href="#124">124</a> <em class="jxr_javadoccomment">     * This method is only called after the matcher's init() method has completed</em>
-<a name="125" href="#125">125</a> <em class="jxr_javadoccomment">     * successfully.</em>
-<a name="126" href="#126">126</a> <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
-<a name="127" href="#127">127</a> <em class="jxr_javadoccomment">     * Matchers typically run inside multithreaded mailet containers that can handle</em>
-<a name="128" href="#128">128</a> <em class="jxr_javadoccomment">     * multiple requests concurrently. Developers must be aware to synchronize access</em>
-<a name="129" href="#129">129</a> <em class="jxr_javadoccomment">     * to any shared resources such as files, network connections, and as well as the</em>
-<a name="130" href="#130">130</a> <em class="jxr_javadoccomment">     * matcher's class and instance variables. More information on multithreaded</em>
-<a name="131" href="#131">131</a> <em class="jxr_javadoccomment">     * programming in Java is available in &lt;a href="<a href="http://java.sun.com/Series/Tutorial/java/threads/multithreaded.html" target="alexandria_uri">http://java.sun.com/Series/Tutorial/java/threads/multithreaded.html</a>"&gt;the</em>
-<a name="132" href="#132">132</a> <em class="jxr_javadoccomment">     * Java tutorial on multi-threaded programming&lt;/a&gt;.</em>
-<a name="133" href="#133">133</a> <em class="jxr_javadoccomment">     *</em>
-<a name="134" href="#134">134</a> <em class="jxr_javadoccomment">     * @param mail - the Mail object that contains the message and routing information</em>
-<a name="135" href="#135">135</a> <em class="jxr_javadoccomment">     * @return a Collection of String objects (recipients) that meet the match criteria</em>
-<a name="136" href="#136">136</a> <em class="jxr_javadoccomment">     * @throws javax.mail.MessagingException - if an message or address parsing exception occurs or</em>
-<a name="137" href="#137">137</a> <em class="jxr_javadoccomment">     *      an exception that interferes with the matcher's normal operation</em>
-<a name="138" href="#138">138</a> <em class="jxr_javadoccomment">     */</em>
-<a name="139" href="#139">139</a>     Collection match( Mail mail ) <strong class="jxr_keyword">throws</strong> javax.mail.MessagingException;
-<a name="140" href="#140">140</a> }
+<a name="121" href="#121">121</a> <em class="jxr_javadoccomment">     * Returns information about the matcher, such as author, version and</em>
+<a name="122" href="#122">122</a> <em class="jxr_javadoccomment">     * copyright.</em>
+<a name="123" href="#123">123</a> <em class="jxr_javadoccomment">     *</em>
+<a name="124" href="#124">124</a> <em class="jxr_javadoccomment">     * @return the Mailet information (as a plain text string)</em>
+<a name="125" href="#125">125</a> <em class="jxr_javadoccomment">     */</em>
+<a name="126" href="#126">126</a>     String getMatcherInfo();
+<a name="127" href="#127">127</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/api/xref/org/apache/mailet/MatcherConfig.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/api/xref/org/apache/mailet/MatcherConfig.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/api/xref/org/apache/mailet/MatcherConfig.html (original)
+++ james/site/trunk/www/mailet/api/xref/org/apache/mailet/MatcherConfig.html Mon Aug  3 12:18:51 2009
@@ -31,43 +31,44 @@
 <a name="21" href="#21">21</a>  <strong class="jxr_keyword">package</strong> org.apache.mailet;
 <a name="22" href="#22">22</a>  
 <a name="23" href="#23">23</a>  <em class="jxr_javadoccomment">/**</em>
-<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> * A matcher configuration object used by a mailet container used to pass information</em>
-<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> * to a matcher during initialization.</em>
+<a name="24" href="#24">24</a>  <em class="jxr_javadoccomment"> * A matcher configuration object used by the mailet container to pass</em>
+<a name="25" href="#25">25</a>  <em class="jxr_javadoccomment"> * information to a matcher during initialization.</em>
 <a name="26" href="#26">26</a>  <em class="jxr_javadoccomment"> * &lt;p&gt;</em>
-<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * The configuration information contains an initialization parameter,</em>
-<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * which is set as a condition String, and a MailetContext object,</em>
-<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * which gives the mailet information about the mailet container.</em>
-<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> *</em>
-<a name="31" href="#31">31</a>  <em class="jxr_javadoccomment"> * @version 1.0.0, 24/04/1999</em>
-<a name="32" href="#32">32</a>  <em class="jxr_javadoccomment"> */</em>
-<a name="33" href="#33">33</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../org/apache/mailet/MatcherConfig.html">MatcherConfig</a> {
-<a name="34" href="#34">34</a>  
-<a name="35" href="#35">35</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * The simple condition defined for this matcher, e.g., for</em>
-<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     * SenderIs=admin@localhost, this would return admin@localhost.</em>
-<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment">     *</em>
-<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment">     * @return a String containing the value of the initialization parameter</em>
-<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="41" href="#41">41</a>      String getCondition();
-<a name="42" href="#42">42</a>  
-<a name="43" href="#43">43</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="44" href="#44">44</a>  <em class="jxr_javadoccomment">     * Returns a reference to the MailetContext in which the matcher is executing</em>
-<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment">     *</em>
-<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment">     * @return a MailetContext object, used by the matcher to interact with its</em>
-<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment">     *      mailet container</em>
-<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="49" href="#49">49</a>      <a href="../../../org/apache/mailet/MailetContext.html">MailetContext</a> getMailetContext();
-<a name="50" href="#50">50</a>  
-<a name="51" href="#51">51</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="52" href="#52">52</a>  <em class="jxr_javadoccomment">     * Returns the name of this matcher instance. The name may be provided via server</em>
-<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment">     * administration, assigned in the application deployment descriptor, or for</em>
-<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment">     * an unregistered (and thus unnamed) matcher instance it will be the matcher's</em>
-<a name="55" href="#55">55</a>  <em class="jxr_javadoccomment">     * class name.</em>
-<a name="56" href="#56">56</a>  <em class="jxr_javadoccomment">     *</em>
-<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment">     * @return the name of the matcher instance</em>
-<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="59" href="#59">59</a>      String getMatcherName();
-<a name="60" href="#60">60</a>  }
+<a name="27" href="#27">27</a>  <em class="jxr_javadoccomment"> * The configuration information consists of the matcher's condition string,</em>
+<a name="28" href="#28">28</a>  <em class="jxr_javadoccomment"> * and a MailetContext object which allows the matcher to interact with the</em>
+<a name="29" href="#29">29</a>  <em class="jxr_javadoccomment"> * mailet container.</em>
+<a name="30" href="#30">30</a>  <em class="jxr_javadoccomment"> */</em>
+<a name="31" href="#31">31</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../org/apache/mailet/MatcherConfig.html">MatcherConfig</a> {
+<a name="32" href="#32">32</a>  
+<a name="33" href="#33">33</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="34" href="#34">34</a>  <em class="jxr_javadoccomment">     * The condition defined for this matcher.</em>
+<a name="35" href="#35">35</a>  <em class="jxr_javadoccomment">     * &lt;p&gt;</em>
+<a name="36" href="#36">36</a>  <em class="jxr_javadoccomment">     * For example, the SenderIs matcher might be configured as</em>
+<a name="37" href="#37">37</a>  <em class="jxr_javadoccomment">     * "SenderIs=admin@localhost", in which case the condition would be</em>
+<a name="38" href="#38">38</a>  <em class="jxr_javadoccomment">     * "admin@localhost".</em>
+<a name="39" href="#39">39</a>  <em class="jxr_javadoccomment">     *</em>
+<a name="40" href="#40">40</a>  <em class="jxr_javadoccomment">     * @return a String containing the value of the initialization parameter</em>
+<a name="41" href="#41">41</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="42" href="#42">42</a>      String getCondition();
+<a name="43" href="#43">43</a>  
+<a name="44" href="#44">44</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="45" href="#45">45</a>  <em class="jxr_javadoccomment">     * Returns a reference to the MailetContext in which the matcher is executing</em>
+<a name="46" href="#46">46</a>  <em class="jxr_javadoccomment">     *</em>
+<a name="47" href="#47">47</a>  <em class="jxr_javadoccomment">     * @return a MailetContext object which can be used by the matcher</em>
+<a name="48" href="#48">48</a>  <em class="jxr_javadoccomment">     *      to interact with the mailet container</em>
+<a name="49" href="#49">49</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="50" href="#50">50</a>      <a href="../../../org/apache/mailet/MailetContext.html">MailetContext</a> getMailetContext();
+<a name="51" href="#51">51</a>  
+<a name="52" href="#52">52</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="53" href="#53">53</a>  <em class="jxr_javadoccomment">     * Returns the name of this matcher instance. The name may be provided via server</em>
+<a name="54" href="#54">54</a>  <em class="jxr_javadoccomment">     * administration, assigned in the application deployment descriptor, or, for</em>
+<a name="55" href="#55">55</a>  <em class="jxr_javadoccomment">     * an unregistered (and thus unnamed) matcher instance, it will be the matcher's</em>
+<a name="56" href="#56">56</a>  <em class="jxr_javadoccomment">     * class name.</em>
+<a name="57" href="#57">57</a>  <em class="jxr_javadoccomment">     *</em>
+<a name="58" href="#58">58</a>  <em class="jxr_javadoccomment">     * @return the name of the matcher instance</em>
+<a name="59" href="#59">59</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="60" href="#60">60</a>      String getMatcherName();
+<a name="61" href="#61">61</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/api/xref/org/apache/mailet/package-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-frame.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-frame.html (original)
+++ james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-frame.html Mon Aug  3 12:18:51 2009
@@ -1,48 +1,48 @@
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
 <html xml:lang="en" lang="en">
-    <head>
-        <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-        <title>Apache Mailet API 2.5-SNAPSHOT Reference Package org.apache.mailet</title>
-        <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="style" />
-    </head>
-    <body>
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Apache Mailet API 2.5-SNAPSHOT Reference Package org.apache.mailet</title>
+		<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="style" />
+	</head>
+	<body>
 
-        <h3>
-            <a href="package-summary.html" target="classFrame">org.apache.mailet</a>
-        </h3>
+		<h3>
+        	<a href="package-summary.html" target="classFrame">org.apache.mailet</a>
+      	</h3>
 
-        <h3>Classes</h3>
+      	<h3>Classes</h3>
 
-        <ul>
-                        <li>
-                <a href="HostAddress.html" target="classFrame">HostAddress</a>
-            </li>
-                        <li>
-                <a href="Mail.html" target="classFrame">Mail</a>
-            </li>
-                        <li>
-                <a href="MailAddress.html" target="classFrame">MailAddress</a>
-            </li>
-                        <li>
-                <a href="Mailet.html" target="classFrame">Mailet</a>
-            </li>
-                        <li>
-                <a href="MailetConfig.html" target="classFrame">MailetConfig</a>
-            </li>
-                        <li>
-                <a href="MailetContext.html" target="classFrame">MailetContext</a>
-            </li>
-                        <li>
-                <a href="MailetException.html" target="classFrame">MailetException</a>
-            </li>
-                        <li>
-                <a href="Matcher.html" target="classFrame">Matcher</a>
-            </li>
-                        <li>
-                <a href="MatcherConfig.html" target="classFrame">MatcherConfig</a>
-            </li>
-                    </ul>
+      	<ul>
+      		          	<li>
+            	<a href="HostAddress.html" target="classFrame">HostAddress</a>
+          	</li>
+          	          	<li>
+            	<a href="Mail.html" target="classFrame">Mail</a>
+          	</li>
+          	          	<li>
+            	<a href="MailAddress.html" target="classFrame">MailAddress</a>
+          	</li>
+          	          	<li>
+            	<a href="Mailet.html" target="classFrame">Mailet</a>
+          	</li>
+          	          	<li>
+            	<a href="MailetConfig.html" target="classFrame">MailetConfig</a>
+          	</li>
+          	          	<li>
+            	<a href="MailetContext.html" target="classFrame">MailetContext</a>
+          	</li>
+          	          	<li>
+            	<a href="MailetException.html" target="classFrame">MailetException</a>
+          	</li>
+          	          	<li>
+            	<a href="Matcher.html" target="classFrame">Matcher</a>
+          	</li>
+          	          	<li>
+            	<a href="MatcherConfig.html" target="classFrame">MatcherConfig</a>
+          	</li>
+          	      	</ul>
 
-    </body>
+	</body>
 </html>

Modified: james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-summary.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-summary.html (original)
+++ james/site/trunk/www/mailet/api/xref/org/apache/mailet/package-summary.html Mon Aug  3 12:18:51 2009
@@ -1,107 +1,107 @@
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
 <html xml:lang="en" lang="en">
-    <head>
-        <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-        <title>Apache Mailet API 2.5-SNAPSHOT Reference Package org.apache.mailet</title>
-        <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="style" />
-    </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.mailet</h2>
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Apache Mailet API 2.5-SNAPSHOT Reference Package org.apache.mailet</title>
+		<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="style" />
+	</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.mailet</h2>
 
-        <table class="summary">
-            <thead>
-                <tr>
-                    <th>Class Summary</th>
-                </tr>
-            </thead>
-            <tbody>
-                                <tr>
-                    <td>
-                        <a href="HostAddress.html" target="classFrame">HostAddress</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="Mail.html" target="classFrame">Mail</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="MailAddress.html" target="classFrame">MailAddress</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="Mailet.html" target="classFrame">Mailet</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="MailetConfig.html" target="classFrame">MailetConfig</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="MailetContext.html" target="classFrame">MailetContext</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="MailetException.html" target="classFrame">MailetException</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="Matcher.html" target="classFrame">Matcher</a>
-                    </td>
-                </tr>
-                                <tr>
-                    <td>
-                        <a href="MatcherConfig.html" target="classFrame">MatcherConfig</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 />
-        Copyright &copy; 2007-2009 The Apache Software Foundation. All Rights Reserved.
-    </body>
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Class Summary</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+        		            	<tr>
+              		<td>
+                		<a href="HostAddress.html" target="classFrame">HostAddress</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="Mail.html" target="classFrame">Mail</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="MailAddress.html" target="classFrame">MailAddress</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="Mailet.html" target="classFrame">Mailet</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="MailetConfig.html" target="classFrame">MailetConfig</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="MailetContext.html" target="classFrame">MailetContext</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="MailetException.html" target="classFrame">MailetException</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="Matcher.html" target="classFrame">Matcher</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="MatcherConfig.html" target="classFrame">MatcherConfig</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 />
+		Copyright &copy; 2007-2009 The Apache Software Foundation. All Rights Reserved.
+	</body>
 </html>

Modified: james/site/trunk/www/mailet/api/xref/overview-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/api/xref/overview-frame.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/api/xref/overview-frame.html (original)
+++ james/site/trunk/www/mailet/api/xref/overview-frame.html Mon Aug  3 12:18:51 2009
@@ -1,25 +1,25 @@
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
 <html xml:lang="en" lang="en">
-    <head>
-        <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-        <title>Apache Mailet API 2.5-SNAPSHOT Reference</title>
-        <link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
-    </head>
-    <body>
-
-        <h3>
-            <a href="allclasses-frame.html" target="packageFrame">All Classes</a>
-        </h3>
-
-        <h3>Packages</h3>
-
-        <ul>
-                        <li>
-                <a href="org/apache/mailet/package-frame.html" target="packageFrame">org.apache.mailet</a>
-            </li>
-                    </ul>
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Apache Mailet API 2.5-SNAPSHOT Reference</title>
+		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+			<a href="allclasses-frame.html" target="packageFrame">All Classes</a>
+		</h3>
+
+		<h3>Packages</h3>
+
+		<ul>
+						<li>
+				<a href="org/apache/mailet/package-frame.html" target="packageFrame">org.apache.mailet</a>
+			</li>
+					</ul>
 
-    </body>
+	</body>
 </html>
 

Modified: james/site/trunk/www/mailet/api/xref/overview-summary.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/api/xref/overview-summary.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/api/xref/overview-summary.html (original)
+++ james/site/trunk/www/mailet/api/xref/overview-summary.html Mon Aug  3 12:18:51 2009
@@ -1,64 +1,64 @@
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
 <html xml:lang="en" lang="en">
-    <head>
-        <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
-        <title>Apache Mailet API 2.5-SNAPSHOT Reference</title>
-        <link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
-    </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>Apache Mailet API 2.5-SNAPSHOT Reference</h2>
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+		<title>Apache Mailet API 2.5-SNAPSHOT Reference</title>
+		<link rel="stylesheet" type="text/css" href="stylesheet.css" title="style" />
+	</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>Apache Mailet API 2.5-SNAPSHOT Reference</h2>
 
-        <table class="summary">
-            <thead>
-                <tr>
-                    <th>Packages</th>
-                </tr>
-            </thead>
-            <tbody>
-                                <tr>
-                    <td>
-                        <a href="org/apache/mailet/package-summary.html">org.apache.mailet</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 />
-        Copyright &copy; 2007-2009 The Apache Software Foundation. All Rights Reserved.
-    </body>
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Packages</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+    	    	            	<tr>
+              		<td>
+                		<a href="org/apache/mailet/package-summary.html">org.apache.mailet</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 />
+		Copyright &copy; 2007-2009 The Apache Software Foundation. All Rights Reserved.
+	</body>
 </html>

Modified: james/site/trunk/www/mailet/base/apidocs/allclasses-frame.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/allclasses-frame.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/allclasses-frame.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/allclasses-frame.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:24 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 All Classes (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/allclasses-noframe.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/allclasses-noframe.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/allclasses-noframe.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/allclasses-noframe.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:24 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 All Classes (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/constant-values.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/constant-values.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/constant-values.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/constant-values.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Constant Field Values (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/deprecated-list.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/deprecated-list.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/deprecated-list.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/deprecated-list.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:24 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Deprecated List (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/help-doc.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/help-doc.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/help-doc.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/help-doc.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:24 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 API Help (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/index-all.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/index-all.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/index-all.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/index-all.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:24 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Index (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/index.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/index.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/index.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/index.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc on Thu May 28 11:11:24 BST 2009-->
+<!-- Generated by javadoc on Mon Aug 03 13:36:58 BST 2009-->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/FlowedMessageUtils.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/FlowedMessageUtils.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/FlowedMessageUtils.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/FlowedMessageUtils.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:22 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 FlowedMessageUtils (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMailet.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMailet.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMailet.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMailet.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:22 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 GenericMailet (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMatcher.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMatcher.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMatcher.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericMatcher.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:22 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 GenericMatcher (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericRecipientMatcher.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericRecipientMatcher.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericRecipientMatcher.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/GenericRecipientMatcher.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:22 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 GenericRecipientMatcher (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MailetUtil.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MailetUtil.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MailetUtil.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MailetUtil.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 MailetUtil (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MatcherInverter.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MatcherInverter.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MatcherInverter.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/MatcherInverter.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 MatcherInverter (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2822Headers.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2822Headers.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2822Headers.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2822Headers.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 RFC2822Headers (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2980DateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2980DateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2980DateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC2980DateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 RFC2980DateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC822DateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC822DateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC822DateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC822DateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 RFC822DateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC977DateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC977DateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC977DateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/RFC977DateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:57 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 RFC977DateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SimplifiedDateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SimplifiedDateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SimplifiedDateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SimplifiedDateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SimplifiedDateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/StringUtils.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/StringUtils.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/StringUtils.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/StringUtils.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 StringUtils (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SynchronizedDateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SynchronizedDateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SynchronizedDateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/SynchronizedDateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 SynchronizedDateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/FlowedMessageUtils.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/FlowedMessageUtils.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/FlowedMessageUtils.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/FlowedMessageUtils.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.FlowedMessageUtils (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMailet.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMailet.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMailet.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMailet.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.GenericMailet (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMatcher.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMatcher.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMatcher.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericMatcher.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.GenericMatcher (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericRecipientMatcher.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericRecipientMatcher.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericRecipientMatcher.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/GenericRecipientMatcher.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.GenericRecipientMatcher (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MailetUtil.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MailetUtil.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MailetUtil.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MailetUtil.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.MailetUtil (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MatcherInverter.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MatcherInverter.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MatcherInverter.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/MatcherInverter.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.MatcherInverter (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2822Headers.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2822Headers.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2822Headers.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2822Headers.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.RFC2822Headers (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2980DateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2980DateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2980DateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC2980DateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.RFC2980DateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC822DateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC822DateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC822DateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC822DateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.RFC822DateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC977DateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC977DateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC977DateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/RFC977DateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.RFC977DateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SimplifiedDateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SimplifiedDateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SimplifiedDateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SimplifiedDateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Interface org.apache.mailet.base.SimplifiedDateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/StringUtils.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/StringUtils.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/StringUtils.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/StringUtils.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.StringUtils (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SynchronizedDateFormat.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SynchronizedDateFormat.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SynchronizedDateFormat.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/class-use/SynchronizedDateFormat.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.SynchronizedDateFormat (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/AbstractDataContentHandler.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/AbstractDataContentHandler.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/AbstractDataContentHandler.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/AbstractDataContentHandler.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 AbstractDataContentHandler (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/MimeMultipartReport.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/MimeMultipartReport.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/MimeMultipartReport.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/MimeMultipartReport.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 MimeMultipartReport (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/AbstractDataContentHandler.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/AbstractDataContentHandler.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/AbstractDataContentHandler.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/AbstractDataContentHandler.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.mail.AbstractDataContentHandler (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/MimeMultipartReport.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/MimeMultipartReport.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/MimeMultipartReport.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/MimeMultipartReport.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.mail.MimeMultipartReport (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/message_disposition_notification.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/message_disposition_notification.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/message_disposition_notification.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/message_disposition_notification.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.mail.message_disposition_notification (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/multipart_report.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/multipart_report.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/multipart_report.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/class-use/multipart_report.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 Uses of Class org.apache.mailet.base.mail.multipart_report (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)

Modified: james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/message_disposition_notification.html
URL: http://svn.apache.org/viewvc/james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/message_disposition_notification.html?rev=800330&r1=800329&r2=800330&view=diff
==============================================================================
--- james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/message_disposition_notification.html (original)
+++ james/site/trunk/www/mailet/base/apidocs/org/apache/mailet/base/mail/message_disposition_notification.html Mon Aug  3 12:18:51 2009
@@ -2,7 +2,7 @@
 <!--NewPage-->
 <HTML>
 <HEAD>
-<!-- Generated by javadoc (build 1.5.0_18) on Thu May 28 11:11:23 BST 2009 -->
+<!-- Generated by javadoc (build 1.5.0_18) on Mon Aug 03 13:36:58 BST 2009 -->
 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <TITLE>
 message_disposition_notification (Apache JAMES Basic Mailet Toolkit 1.1-SNAPSHOT API)