You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@commons.apache.org by tv...@apache.org on 2018/09/07 16:46:52 UTC

svn commit: r1034840 [10/12] - in /websites/production/commons/content/proper/commons-jcs: ./ commons-jcs-core/ commons-jcs-core/apidocs/ commons-jcs-core/xref-test/org/apache/commons/jcs/auxiliary/remote/ commons-jcs-core/xref-test/org/apache/commons/...

Added: websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/ExpiryListenerTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/ExpiryListenerTest.html (added)
+++ websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/ExpiryListenerTest.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,94 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>ExpiryListenerTest xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../testapidocs/org/apache/commons/jcs/jcache/ExpiryListenerTest.html">View Javadoc</a></div><pre>
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment"> * or more contributor license agreements. See the NOTICE file</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * regarding copyright ownership. The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * with the License. You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * KIND, either express or implied. See the License for the</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <strong class="jxr_keyword">package</strong> org.apache.commons.jcs.jcache;
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertEquals;
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertFalse;
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong class="jxr_keyword">import</strong> java.io.Serializable;
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>  <strong class="jxr_keyword">import</strong> java.util.ArrayList;
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  <strong class="jxr_keyword">import</strong> java.util.Collection;
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>  <strong class="jxr_keyword">import</strong> java.util.concurrent.TimeUnit;
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>  
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>  <strong class="jxr_keyword">import</strong> javax.cache.Cache;
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>  <strong class="jxr_keyword">import</strong> javax.cache.CacheManager;
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  <strong class="jxr_keyword">import</strong> javax.cache.Caching;
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>  <strong class="jxr_keyword">import</strong> javax.cache.configuration.FactoryBuilder;
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>  <strong class="jxr_keyword">import</strong> javax.cache.configuration.MutableCacheEntryListenerConfiguration;
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>  <strong class="jxr_keyword">import</strong> javax.cache.configuration.MutableConfiguration;
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>  <strong class="jxr_keyword">import</strong> javax.cache.event.CacheEntryEvent;
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>  <strong class="jxr_keyword">import</strong> javax.cache.event.CacheEntryExpiredListener;
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>  <strong class="jxr_keyword">import</strong> javax.cache.event.CacheEntryListenerException;
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>  <strong class="jxr_keyword">import</strong> javax.cache.expiry.CreatedExpiryPolicy;
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>  <strong class="jxr_keyword">import</strong> javax.cache.expiry.Duration;
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>  <strong class="jxr_keyword">import</strong> javax.cache.expiry.ExpiryPolicy;
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>  <strong class="jxr_keyword">import</strong> javax.cache.spi.CachingProvider;
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>  
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>  <strong class="jxr_keyword">import</strong> org.junit.Test;
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>  
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/jcs/jcache/ExpiryListenerTest.html">ExpiryListenerTest</a> {
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>  
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>      @Test
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> listener() <strong class="jxr_keyword">throws</strong> InterruptedException {
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>          <strong class="jxr_keyword">final</strong> CachingProvider cachingProvider = Caching.getCachingProvider();
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>          <strong class="jxr_keyword">final</strong> CacheManager cacheManager = cachingProvider.getCacheManager();
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>          <strong class="jxr_keyword">final</strong> <a href="../../../../../org/apache/commons/jcs/jcache/ExpiryListenerTest.html">CacheEntryExpiredListenerImpl</a> listener = <strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/commons/jcs/jcache/ExpiryListenerTest.html">CacheEntryExpiredListenerImpl</a>();
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>          cacheManager.createCache(<span class="jxr_string">"default"</span>, <strong class="jxr_keyword">new</strong> MutableConfiguration&lt;String, String&gt;()
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>                  .setExpiryPolicyFactory(<strong class="jxr_keyword">new</strong> FactoryBuilder.SingletonFactory&lt;ExpiryPolicy&gt;(
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>                          <strong class="jxr_keyword">new</strong> CreatedExpiryPolicy(<strong class="jxr_keyword">new</strong> Duration(TimeUnit.MILLISECONDS, 1))))
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>                  .addCacheEntryListenerConfiguration(<strong class="jxr_keyword">new</strong> MutableCacheEntryListenerConfiguration&lt;String, String&gt;(
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>                          FactoryBuilder.factoryOf(listener),
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>                          <strong class="jxr_keyword">null</strong>, false, false
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>                  )));
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>          <strong class="jxr_keyword">final</strong> Cache&lt;String, String&gt; cache = cacheManager.getCache(<span class="jxr_string">"default"</span>);
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>          assertFalse(cache.containsKey(<span class="jxr_string">"foo"</span>));
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>          cache.put(<span class="jxr_string">"foo"</span>, <span class="jxr_string">"bar"</span>);
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>          Thread.sleep(10);
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>          assertFalse(cache.containsKey(<span class="jxr_string">"foo"</span>));
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>          cachingProvider.close();
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>          assertEquals(1, listener.events.size());
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>      }
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>  
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>      <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/commons/jcs/jcache/ExpiryListenerTest.html">CacheEntryExpiredListenerImpl</a> <strong class="jxr_keyword">implements</strong> CacheEntryExpiredListener&lt;String, String&gt;, Serializable {
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>          <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> Collection&lt;CacheEntryEvent&lt;? <strong class="jxr_keyword">extends</strong> String, ? <strong class="jxr_keyword">extends</strong> String&gt;&gt; events =
+<a class="jxr_linenumber" name="L71" href="#L71">71</a>                  <strong class="jxr_keyword">new</strong> ArrayList&lt;CacheEntryEvent&lt;? <strong class="jxr_keyword">extends</strong> String, ? <strong class="jxr_keyword">extends</strong> String&gt;&gt;();
+<a class="jxr_linenumber" name="L72" href="#L72">72</a>  
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>          @Override
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>          <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> onExpired(<strong class="jxr_keyword">final</strong> Iterable&lt;CacheEntryEvent&lt;? <strong class="jxr_keyword">extends</strong> String, ? <strong class="jxr_keyword">extends</strong> String&gt;&gt; cacheEntryEvents)
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>                  <strong class="jxr_keyword">throws</strong> CacheEntryListenerException {
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>              <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> CacheEntryEvent&lt;? <strong class="jxr_keyword">extends</strong> String, ? <strong class="jxr_keyword">extends</strong> String&gt; cacheEntryEvent : cacheEntryEvents) {
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>                  events.add(cacheEntryEvent);
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>              }
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>          }
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>      }
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>  }
+</pre>
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>

Added: websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html (added)
+++ websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,153 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>CDIJCacheHelperTest xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../../testapidocs/org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">View Javadoc</a></div><pre>
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <strong class="jxr_keyword">package</strong> org.apache.commons.jcs.jcache.cdi;
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <strong class="jxr_keyword">import</strong> java.lang.reflect.Constructor;
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  <strong class="jxr_keyword">import</strong> java.lang.reflect.InvocationHandler;
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <strong class="jxr_keyword">import</strong> java.lang.reflect.Method;
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong class="jxr_keyword">import</strong> java.lang.reflect.Proxy;
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  <strong class="jxr_keyword">import</strong> javax.cache.annotation.CacheDefaults;
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>  <strong class="jxr_keyword">import</strong> javax.cache.annotation.CacheResult;
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>  <strong class="jxr_keyword">import</strong> javax.interceptor.InvocationContext;
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>  
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>  <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.assertEquals;
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  <strong class="jxr_keyword">import</strong> <strong class="jxr_keyword">static</strong> org.junit.Assert.fail;
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>  <strong class="jxr_keyword">import</strong> org.junit.Test;
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>  
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">CDIJCacheHelperTest</a>
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>  {
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>      @Test
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>      <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> proxyCacheDefaults()
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>      {
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>          <strong class="jxr_keyword">final</strong> CDIJCacheHelper helper = <strong class="jxr_keyword">new</strong> CDIJCacheHelper();
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>  
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>          <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyParent</a> child1 = MyParent.<strong class="jxr_keyword">class</strong>.<strong class="jxr_keyword">cast</strong>(Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>                  <strong class="jxr_keyword">new</strong> Class&lt;?&gt;[]{MyChild1.<strong class="jxr_keyword">class</strong>}, <strong class="jxr_keyword">new</strong> InvocationHandler()
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>                  {
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>                      @Override
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>                      <strong class="jxr_keyword">public</strong> Object invoke(<strong class="jxr_keyword">final</strong> Object proxy, <strong class="jxr_keyword">final</strong> Method method, <strong class="jxr_keyword">final</strong> Object[] args) <strong class="jxr_keyword">throws</strong> Throwable
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>                      {
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>                          <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>                      }
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>                  }));
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>          <strong class="jxr_keyword">final</strong> CDIJCacheHelper.MethodMeta meta1 = helper.findMeta(newContext(child1));
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>          assertEquals(<span class="jxr_string">"child"</span>, meta1.getCacheResultCacheName());
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>  
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>          <strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyParent</a> child2 = MyParent.<strong class="jxr_keyword">class</strong>.<strong class="jxr_keyword">cast</strong>(Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>                  <strong class="jxr_keyword">new</strong> Class&lt;?&gt;[]{MyChild2.<strong class="jxr_keyword">class</strong>}, <strong class="jxr_keyword">new</strong> InvocationHandler()
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>                  {
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>                      @Override
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>                      <strong class="jxr_keyword">public</strong> Object invoke(<strong class="jxr_keyword">final</strong> Object proxy, <strong class="jxr_keyword">final</strong> Method method, <strong class="jxr_keyword">final</strong> Object[] args) <strong class="jxr_keyword">throws</strong> Throwable
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>                      {
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>                          <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>                      }
+<a class="jxr_linenumber" name="L62" href="#L62">62</a>                  }));
+<a class="jxr_linenumber" name="L63" href="#L63">63</a>          <strong class="jxr_keyword">final</strong> CDIJCacheHelper.MethodMeta meta2 = helper.findMeta(newContext(child2));
+<a class="jxr_linenumber" name="L64" href="#L64">64</a>          assertEquals(<span class="jxr_string">"child2"</span>, meta2.getCacheResultCacheName());
+<a class="jxr_linenumber" name="L65" href="#L65">65</a>      }
+<a class="jxr_linenumber" name="L66" href="#L66">66</a>  
+<a class="jxr_linenumber" name="L67" href="#L67">67</a>      <strong class="jxr_keyword">private</strong> InvocationContext newContext(<strong class="jxr_keyword">final</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyParent</a> child1) {
+<a class="jxr_linenumber" name="L68" href="#L68">68</a>          <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> InvocationContext()
+<a class="jxr_linenumber" name="L69" href="#L69">69</a>          {
+<a class="jxr_linenumber" name="L70" href="#L70">70</a>              @Override
+<a class="jxr_linenumber" name="L71" href="#L71">71</a>              <strong class="jxr_keyword">public</strong> Object getTarget()
+<a class="jxr_linenumber" name="L72" href="#L72">72</a>              {
+<a class="jxr_linenumber" name="L73" href="#L73">73</a>                  <strong class="jxr_keyword">return</strong> child1;
+<a class="jxr_linenumber" name="L74" href="#L74">74</a>              }
+<a class="jxr_linenumber" name="L75" href="#L75">75</a>  
+<a class="jxr_linenumber" name="L76" href="#L76">76</a>              @Override
+<a class="jxr_linenumber" name="L77" href="#L77">77</a>              <strong class="jxr_keyword">public</strong> Method getMethod()
+<a class="jxr_linenumber" name="L78" href="#L78">78</a>              {
+<a class="jxr_linenumber" name="L79" href="#L79">79</a>                  <strong class="jxr_keyword">try</strong> {
+<a class="jxr_linenumber" name="L80" href="#L80">80</a>                      <strong class="jxr_keyword">return</strong> MyParent.<strong class="jxr_keyword">class</strong>.getMethod(<span class="jxr_string">"foo"</span>);
+<a class="jxr_linenumber" name="L81" href="#L81">81</a>                  } <strong class="jxr_keyword">catch</strong> (NoSuchMethodException e) {
+<a class="jxr_linenumber" name="L82" href="#L82">82</a>                      fail(e.getMessage());
+<a class="jxr_linenumber" name="L83" href="#L83">83</a>                      <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L84" href="#L84">84</a>                  }
+<a class="jxr_linenumber" name="L85" href="#L85">85</a>              }
+<a class="jxr_linenumber" name="L86" href="#L86">86</a>  
+<a class="jxr_linenumber" name="L87" href="#L87">87</a>              @Override
+<a class="jxr_linenumber" name="L88" href="#L88">88</a>              <strong class="jxr_keyword">public</strong> Constructor&lt;?&gt; getConstructor()
+<a class="jxr_linenumber" name="L89" href="#L89">89</a>              {
+<a class="jxr_linenumber" name="L90" href="#L90">90</a>                  <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L91" href="#L91">91</a>              }
+<a class="jxr_linenumber" name="L92" href="#L92">92</a>  
+<a class="jxr_linenumber" name="L93" href="#L93">93</a>              @Override
+<a class="jxr_linenumber" name="L94" href="#L94">94</a>              <strong class="jxr_keyword">public</strong> Object[] getParameters()
+<a class="jxr_linenumber" name="L95" href="#L95">95</a>              {
+<a class="jxr_linenumber" name="L96" href="#L96">96</a>                  <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> Object[0];
+<a class="jxr_linenumber" name="L97" href="#L97">97</a>              }
+<a class="jxr_linenumber" name="L98" href="#L98">98</a>  
+<a class="jxr_linenumber" name="L99" href="#L99">99</a>              @Override
+<a class="jxr_linenumber" name="L100" href="#L100">100</a>             <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setParameters(<strong class="jxr_keyword">final</strong> Object[] objects)
+<a class="jxr_linenumber" name="L101" href="#L101">101</a>             {
+<a class="jxr_linenumber" name="L102" href="#L102">102</a> 
+<a class="jxr_linenumber" name="L103" href="#L103">103</a>             }
+<a class="jxr_linenumber" name="L104" href="#L104">104</a> 
+<a class="jxr_linenumber" name="L105" href="#L105">105</a>             @Override
+<a class="jxr_linenumber" name="L106" href="#L106">106</a>             <strong class="jxr_keyword">public</strong> Map&lt;String, Object&gt; getContextData()
+<a class="jxr_linenumber" name="L107" href="#L107">107</a>             {
+<a class="jxr_linenumber" name="L108" href="#L108">108</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L109" href="#L109">109</a>             }
+<a class="jxr_linenumber" name="L110" href="#L110">110</a> 
+<a class="jxr_linenumber" name="L111" href="#L111">111</a>             @Override
+<a class="jxr_linenumber" name="L112" href="#L112">112</a>             <strong class="jxr_keyword">public</strong> Object proceed() <strong class="jxr_keyword">throws</strong> Exception
+<a class="jxr_linenumber" name="L113" href="#L113">113</a>             {
+<a class="jxr_linenumber" name="L114" href="#L114">114</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L115" href="#L115">115</a>             }
+<a class="jxr_linenumber" name="L116" href="#L116">116</a> 
+<a class="jxr_linenumber" name="L117" href="#L117">117</a>             @Override
+<a class="jxr_linenumber" name="L118" href="#L118">118</a>             <strong class="jxr_keyword">public</strong> Object getTimer()
+<a class="jxr_linenumber" name="L119" href="#L119">119</a>             {
+<a class="jxr_linenumber" name="L120" href="#L120">120</a>                 <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a class="jxr_linenumber" name="L121" href="#L121">121</a>             }
+<a class="jxr_linenumber" name="L122" href="#L122">122</a>         };
+<a class="jxr_linenumber" name="L123" href="#L123">123</a>     }
+<a class="jxr_linenumber" name="L124" href="#L124">124</a> 
+<a class="jxr_linenumber" name="L125" href="#L125">125</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyParent</a>
+<a class="jxr_linenumber" name="L126" href="#L126">126</a>     {
+<a class="jxr_linenumber" name="L127" href="#L127">127</a>         @CacheResult
+<a class="jxr_linenumber" name="L128" href="#L128">128</a>         String foo();
+<a class="jxr_linenumber" name="L129" href="#L129">129</a>     }
+<a class="jxr_linenumber" name="L130" href="#L130">130</a> 
+<a class="jxr_linenumber" name="L131" href="#L131">131</a>     @CacheDefaults(cacheName = <span class="jxr_string">"child"</span>)
+<a class="jxr_linenumber" name="L132" href="#L132">132</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyChild1</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyParent</a>
+<a class="jxr_linenumber" name="L133" href="#L133">133</a>     {
+<a class="jxr_linenumber" name="L134" href="#L134">134</a>     }
+<a class="jxr_linenumber" name="L135" href="#L135">135</a> 
+<a class="jxr_linenumber" name="L136" href="#L136">136</a>     @CacheDefaults(cacheName = <span class="jxr_string">"child2"</span>)
+<a class="jxr_linenumber" name="L137" href="#L137">137</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">interface</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyChild2</a> <strong class="jxr_keyword">extends</strong> <a href="../../../../../../org/apache/commons/jcs/jcache/cdi/CDIJCacheHelperTest.html">MyParent</a>
+<a class="jxr_linenumber" name="L138" href="#L138">138</a>     {
+<a class="jxr_linenumber" name="L139" href="#L139">139</a>     }
+<a class="jxr_linenumber" name="L140" href="#L140">140</a> }
+</pre>
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>

Added: websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/package-frame.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/package-frame.html (added)
+++ websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/package-frame.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,33 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>Apache Commons JCS :: JCache 2.2.1 Reference Package org.apache.commons.jcs.jcache.cdi</title>
+		<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="style" />
+	</head>
+	<body>
+
+		<h3>
+        	<a href="package-summary.html" target="classFrame">org.apache.commons.jcs.jcache.cdi</a>
+      	</h3>
+
+      	<h3>Classes</h3>
+
+      	<ul>
+      		          	<li>
+            	<a href="CDIJCacheHelperTest.html" target="classFrame">CDIJCacheHelperTest</a>
+          	</li>
+          	          	<li>
+            	<a href="CDIJCacheHelperTest.html" target="classFrame">MyChild1</a>
+          	</li>
+          	          	<li>
+            	<a href="CDIJCacheHelperTest.html" target="classFrame">MyChild2</a>
+          	</li>
+          	          	<li>
+            	<a href="CDIJCacheHelperTest.html" target="classFrame">MyParent</a>
+          	</li>
+          	      	</ul>
+
+	</body>
+</html>
\ No newline at end of file

Added: websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/package-summary.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/package-summary.html (added)
+++ websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref-test/org/apache/commons/jcs/jcache/cdi/package-summary.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,84 @@
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xml:lang="en" lang="en">
+	<head>
+		<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+		<title>Apache Commons JCS :: JCache 2.2.1 Reference Package org.apache.commons.jcs.jcache.cdi</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.commons.jcs.jcache.cdi</h2>
+
+		<table class="summary">
+        	<thead>
+          		<tr>
+            		<th>Class Summary</th>
+          		</tr>
+        	</thead>
+        	<tbody>
+        		            	<tr>
+              		<td>
+                		<a href="CDIJCacheHelperTest.html" target="classFrame">CDIJCacheHelperTest</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="CDIJCacheHelperTest.html" target="classFrame">MyChild1</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="CDIJCacheHelperTest.html" target="classFrame">MyChild2</a>
+              		</td>
+            	</tr>
+				            	<tr>
+              		<td>
+                		<a href="CDIJCacheHelperTest.html" target="classFrame">MyParent</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 />
+		<div id="footer">
+			Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.
+		</div>
+	</body>
+</html>
\ No newline at end of file

Added: websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref/org/apache/commons/jcs/jcache/ExpiryAwareCache.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref/org/apache/commons/jcs/jcache/ExpiryAwareCache.html (added)
+++ websites/production/commons/content/proper/commons-jcs/commons-jcs-jcache/xref/org/apache/commons/jcs/jcache/ExpiryAwareCache.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,74 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+<title>ExpiryAwareCache xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../apidocs/org/apache/commons/jcs/jcache/ExpiryAwareCache.html">View Javadoc</a></div><pre>
+<a class="jxr_linenumber" name="L1" href="#L1">1</a>   <em class="jxr_comment">/*</em>
+<a class="jxr_linenumber" name="L2" href="#L2">2</a>   <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
+<a class="jxr_linenumber" name="L3" href="#L3">3</a>   <em class="jxr_comment"> * or more contributor license agreements.  See the NOTICE file</em>
+<a class="jxr_linenumber" name="L4" href="#L4">4</a>   <em class="jxr_comment"> * distributed with this work for additional information</em>
+<a class="jxr_linenumber" name="L5" href="#L5">5</a>   <em class="jxr_comment"> * regarding copyright ownership.  The ASF licenses this file</em>
+<a class="jxr_linenumber" name="L6" href="#L6">6</a>   <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
+<a class="jxr_linenumber" name="L7" href="#L7">7</a>   <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
+<a class="jxr_linenumber" name="L8" href="#L8">8</a>   <em class="jxr_comment"> * with the License.  You may obtain a copy of the License at</em>
+<a class="jxr_linenumber" name="L9" href="#L9">9</a>   <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L10" href="#L10">10</a>  <em class="jxr_comment"> *   <a href="http://www.apache.org/licenses/LICENSE-2." target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.</a>0</em>
+<a class="jxr_linenumber" name="L11" href="#L11">11</a>  <em class="jxr_comment"> *</em>
+<a class="jxr_linenumber" name="L12" href="#L12">12</a>  <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
+<a class="jxr_linenumber" name="L13" href="#L13">13</a>  <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
+<a class="jxr_linenumber" name="L14" href="#L14">14</a>  <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
+<a class="jxr_linenumber" name="L15" href="#L15">15</a>  <em class="jxr_comment"> * KIND, either express or implied.  See the License for the</em>
+<a class="jxr_linenumber" name="L16" href="#L16">16</a>  <em class="jxr_comment"> * specific language governing permissions and limitations</em>
+<a class="jxr_linenumber" name="L17" href="#L17">17</a>  <em class="jxr_comment"> * under the License.</em>
+<a class="jxr_linenumber" name="L18" href="#L18">18</a>  <em class="jxr_comment"> */</em>
+<a class="jxr_linenumber" name="L19" href="#L19">19</a>  <strong class="jxr_keyword">package</strong> org.apache.commons.jcs.jcache;
+<a class="jxr_linenumber" name="L20" href="#L20">20</a>  
+<a class="jxr_linenumber" name="L21" href="#L21">21</a>  <strong class="jxr_keyword">import</strong> java.util.Arrays;
+<a class="jxr_linenumber" name="L22" href="#L22">22</a>  <strong class="jxr_keyword">import</strong> java.util.Map;
+<a class="jxr_linenumber" name="L23" href="#L23">23</a>  
+<a class="jxr_linenumber" name="L24" href="#L24">24</a>  <strong class="jxr_keyword">import</strong> javax.cache.Cache;
+<a class="jxr_linenumber" name="L25" href="#L25">25</a>  <strong class="jxr_keyword">import</strong> javax.cache.configuration.CacheEntryListenerConfiguration;
+<a class="jxr_linenumber" name="L26" href="#L26">26</a>  <strong class="jxr_keyword">import</strong> javax.cache.event.CacheEntryEvent;
+<a class="jxr_linenumber" name="L27" href="#L27">27</a>  <strong class="jxr_keyword">import</strong> javax.cache.event.EventType;
+<a class="jxr_linenumber" name="L28" href="#L28">28</a>  
+<a class="jxr_linenumber" name="L29" href="#L29">29</a>  <strong class="jxr_keyword">import</strong> org.apache.commons.jcs.engine.behavior.ICacheElement;
+<a class="jxr_linenumber" name="L30" href="#L30">30</a>  <strong class="jxr_keyword">import</strong> org.apache.commons.jcs.engine.behavior.ICompositeCacheAttributes;
+<a class="jxr_linenumber" name="L31" href="#L31">31</a>  <strong class="jxr_keyword">import</strong> org.apache.commons.jcs.engine.behavior.IElementAttributes;
+<a class="jxr_linenumber" name="L32" href="#L32">32</a>  <strong class="jxr_keyword">import</strong> org.apache.commons.jcs.engine.control.CompositeCache;
+<a class="jxr_linenumber" name="L33" href="#L33">33</a>  
+<a class="jxr_linenumber" name="L34" href="#L34">34</a>  <em class="jxr_comment">// allows us to plug some lifecycle callbacks on the core cache without impacting too much the core</em>
+<a class="jxr_linenumber" name="L35" href="#L35">35</a>  <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> ExpiryAwareCache&lt;A, B&gt; <strong class="jxr_keyword">extends</strong> CompositeCache&lt;A, B&gt;
+<a class="jxr_linenumber" name="L36" href="#L36">36</a>  {
+<a class="jxr_linenumber" name="L37" href="#L37">37</a>      <strong class="jxr_keyword">private</strong> Map&lt;CacheEntryListenerConfiguration&lt;A, B&gt;, JCSListener&lt;A, B&gt;&gt; listeners;
+<a class="jxr_linenumber" name="L38" href="#L38">38</a>      <strong class="jxr_keyword">private</strong> Cache&lt;A, B&gt; cacheRef;
+<a class="jxr_linenumber" name="L39" href="#L39">39</a>  
+<a class="jxr_linenumber" name="L40" href="#L40">40</a>      <a href="../../../../../org/apache/commons/jcs/jcache/ExpiryAwareCache.html">ExpiryAwareCache</a>(<strong class="jxr_keyword">final</strong> ICompositeCacheAttributes cattr, <strong class="jxr_keyword">final</strong> IElementAttributes attr)
+<a class="jxr_linenumber" name="L41" href="#L41">41</a>      {
+<a class="jxr_linenumber" name="L42" href="#L42">42</a>          <strong class="jxr_keyword">super</strong>(cattr, attr);
+<a class="jxr_linenumber" name="L43" href="#L43">43</a>      }
+<a class="jxr_linenumber" name="L44" href="#L44">44</a>  
+<a class="jxr_linenumber" name="L45" href="#L45">45</a>      @Override
+<a class="jxr_linenumber" name="L46" href="#L46">46</a>      <strong class="jxr_keyword">protected</strong> <strong class="jxr_keyword">void</strong> doExpires(<strong class="jxr_keyword">final</strong> ICacheElement&lt;A, B&gt; element)
+<a class="jxr_linenumber" name="L47" href="#L47">47</a>      {
+<a class="jxr_linenumber" name="L48" href="#L48">48</a>          <strong class="jxr_keyword">super</strong>.doExpires(element);
+<a class="jxr_linenumber" name="L49" href="#L49">49</a>          <strong class="jxr_keyword">for</strong> (<strong class="jxr_keyword">final</strong> JCSListener&lt;A, B&gt; listener : listeners.values())
+<a class="jxr_linenumber" name="L50" href="#L50">50</a>          {
+<a class="jxr_linenumber" name="L51" href="#L51">51</a>              listener.onExpired(Arrays.&lt;CacheEntryEvent&lt;? <strong class="jxr_keyword">extends</strong> A, ? <strong class="jxr_keyword">extends</strong> B&gt;&gt; asList(<strong class="jxr_keyword">new</strong> JCSCacheEntryEvent&lt;A, B&gt;(
+<a class="jxr_linenumber" name="L52" href="#L52">52</a>                      cacheRef, EventType.REMOVED, <strong class="jxr_keyword">null</strong>, element.getKey(), element.getVal())));
+<a class="jxr_linenumber" name="L53" href="#L53">53</a>          }
+<a class="jxr_linenumber" name="L54" href="#L54">54</a>      }
+<a class="jxr_linenumber" name="L55" href="#L55">55</a>  
+<a class="jxr_linenumber" name="L56" href="#L56">56</a>      <strong class="jxr_keyword">void</strong> init(<strong class="jxr_keyword">final</strong> Cache&lt;A, B&gt; cache, <strong class="jxr_keyword">final</strong> Map&lt;CacheEntryListenerConfiguration&lt;A, B&gt;, JCSListener&lt;A, B&gt;&gt; listeners)
+<a class="jxr_linenumber" name="L57" href="#L57">57</a>      {
+<a class="jxr_linenumber" name="L58" href="#L58">58</a>          <strong class="jxr_keyword">this</strong>.cacheRef = cache;
+<a class="jxr_linenumber" name="L59" href="#L59">59</a>          <strong class="jxr_keyword">this</strong>.listeners = listeners;
+<a class="jxr_linenumber" name="L60" href="#L60">60</a>      }
+<a class="jxr_linenumber" name="L61" href="#L61">61</a>  }
+</pre>
+<hr/>
+<div id="footer">Copyright &#169; 2002&#x2013;2018 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</div>
+</body>
+</html>

Added: websites/production/commons/content/proper/commons-jcs/issue-management.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/issue-management.html (added)
+++ websites/production/commons/content/proper/commons-jcs/issue-management.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,348 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 23 August 2018
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20180823" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>JCS &#x2013; Issue Management</title>
+
+  <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
+  <link rel="stylesheet" href="./css/site.css" type="text/css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+  <script type="text/javascript" src="./js/jquery.min.js"></script>
+  <script type="text/javascript" src="./js/bootstrap.min.js"></script>
+  <script type="text/javascript" src="./js/prettify.min.js"></script>
+  <script type="text/javascript" src="./js/site.js"></script>
+
+              
+      </head>
+
+  <body class="composite">
+                          <a href="http://commons.apache.org/" id="bannerLeft" title="Apache Commons logo">
+                                                                                        <img class="logo-left" src="./images/commons-logo.png"  alt="Apache Commons logo"/>
+                </a>
+                                              <a href="index.html" id="bannerRight">
+                <h2>Commons JCS™</h2>
+                </a>
+          <div class="clear"></div>
+
+    <div class="navbar">
+      <div class="navbar-inner">
+        <div class="container-fluid">
+          <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
+          <ul class="nav">      
+                    
+            <li id="publishDate">Last Published: 23 August 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 2.2.1</li>
+  </ul>
+                    <div class="pull-right">  <ul class="nav">
+            <li>
+                  <a href="http://www.apachecon.com/" class="externalLink" title="ApacheCon">
+    ApacheCon</a>
+      </li>
+          <li>
+                  <a href="http://www.apache.org" class="externalLink" title="Apache">
+    Apache</a>
+      </li>
+          <li>
+                  <a href="../../" title="Commons">
+    Commons</a>
+      </li>
+    </ul>
+</div>
+        </div>
+      </div>
+    </div>
+
+    <div class="container-fluid">
+      <table class="layout-table">
+        <tr>
+          <td class="sidebar">
+            <div class="well sidebar-nav">
+                    <ul class="nav nav-list">
+                                  <li class="nav-header">JCS</li>
+                                        <li class="none">
+                  <a href="index.html" title="Overview">
+    Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="JCSandJCACHE.html" title="JCS and JCACHE">
+    JCS and JCACHE</a>
+          </li>
+                             <li class="none">
+                  <a href="download_jcs.cgi" title="Downloads">
+    Downloads</a>
+          </li>
+                             <li class="none">
+                  <a href="faq.html" title="FAQ">
+    FAQ</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                        <li class="nav-header"><i class="icon-cog"></i>Development</li>
+                                        <li class="none">
+                  <a href="changes-report.html" title="Release Notes">
+    Release Notes</a>
+          </li>
+                             <li class="none">
+                  <a href="UpgradingFrom13.html" title="Upgrading from 1.3 to 2.0">
+    Upgrading from 1.3 to 2.0</a>
+          </li>
+                             <li class="none">
+                  <a href="mail-lists.html" title="Mailing Lists">
+    Mailing Lists</a>
+          </li>
+                             <li class="none">
+                  <a href="issue-tracking.html" title="Issue Tracking">
+    Issue Tracking</a>
+          </li>
+                             <li class="none">
+                  <a href="source-repository.html" title="Source Repository">
+    Source Repository</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-core/apidocs/index.html" title="Core Javadoc (SVN latest)">
+    Core Javadoc (SVN latest)</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Getting Started</li>
+                                        <li class="none">
+                  <a href="getting_started/intro.html" title="Overview">
+    Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="BasicJCSConfiguration.html" title="Basic JCS Config">
+    Basic JCS Config</a>
+          </li>
+                             <li class="none">
+                  <a href="JCSPlugins.html" title="Plugin Overview">
+    Plugin Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="UsingJCSBasicWeb.html" title="Basic Web Example">
+    Basic Web Example</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">JCS User's Guide</li>
+                                                                                                                                                                                    <li class="collapsed">
+                  <a href="LocalCacheConfig.html" title="Core">
+    Core</a>
+                    </li>
+                                                                                                                                                                                                                                                                                                                         <li class="collapsed">
+                  <a href="JCSPlugins.html" title="Auxiliary">
+    Auxiliary</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Modules</li>
+                                        <li class="none">
+                  <a href="commons-jcs-core/index.html" title="Apache Commons JCS :: Core">
+    Apache Commons JCS :: Core</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache/index.html" title="Apache Commons JCS :: JCache">
+    Apache Commons JCS :: JCache</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache-tck/index.html" title="Apache Commons JCS :: JCache TCK">
+    Apache Commons JCS :: JCache TCK</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache-extras/index.html" title="Apache Commons JCS :: JCache Extras">
+    Apache Commons JCS :: JCache Extras</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache-openjpa/index.html" title="Apache Commons JCS :: JCache OpenJPA">
+    Apache Commons JCS :: JCache OpenJPA</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-dist/index.html" title="Apache Commons JCS :: Distribution">
+    Apache Commons JCS :: Distribution</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                        <li class="nav-header"><i class="icon-info-sign"></i>Project Documentation</li>
+                                                                                                                                                                                                                                                                                                          <li class="expanded">
+                  <a href="project-info.html" title="Project Information">
+    Project Information</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="index.html" title="About">
+    About</a>
+          </li>
+                                     <li class="none">
+                  <a href="summary.html" title="Summary">
+    Summary</a>
+          </li>
+                                     <li class="none">
+                  <a href="modules.html" title="Project Modules">
+    Project Modules</a>
+          </li>
+                                     <li class="none">
+                  <a href="team.html" title="Team">
+    Team</a>
+          </li>
+                                     <li class="none">
+                  <a href="scm.html" title="Source Code Management">
+    Source Code Management</a>
+          </li>
+                                       <li class="none active">
+                  <a href="issue-management.html" title="Issue Management">
+    Issue Management</a>
+          </li>
+                                     <li class="none">
+                  <a href="mailing-lists.html" title="Mailing Lists">
+    Mailing Lists</a>
+          </li>
+                                     <li class="none">
+                  <a href="dependency-info.html" title="Dependency Information">
+    Dependency Information</a>
+          </li>
+                                     <li class="none">
+                  <a href="dependency-management.html" title="Dependency Management">
+    Dependency Management</a>
+          </li>
+                                     <li class="none">
+                  <a href="dependency-convergence.html" title="Dependency Convergence">
+    Dependency Convergence</a>
+          </li>
+                                     <li class="none">
+                  <a href="ci-management.html" title="CI Management">
+    CI Management</a>
+          </li>
+                                     <li class="none">
+                  <a href="distribution-management.html" title="Distribution Management">
+    Distribution Management</a>
+          </li>
+                     </ul>
+              </li>
+                                                                                                                                                                                           <li class="collapsed">
+                  <a href="project-reports.html" title="Project Reports">
+    Project Reports</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Commons</li>
+                                        <li class="none">
+                  <a href="../../" title="Home">
+    Home</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/licenses/" class="externalLink" title="License">
+    License</a>
+          </li>
+                                                                               <li class="collapsed">
+                  <a href="../../components.html" title="Components">
+    Components</a>
+                    </li>
+                                                                               <li class="collapsed">
+                  <a href="../../sandbox/index.html" title="Sandbox">
+    Sandbox</a>
+                    </li>
+                                                                               <li class="collapsed">
+                  <a href="../../dormant/index.html" title="Dormant">
+    Dormant</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">General Information</li>
+                                        <li class="none">
+                  <a href="../../security.html" title="Security">
+    Security</a>
+          </li>
+                             <li class="none">
+                  <a href="../../volunteering.html" title="Volunteering">
+    Volunteering</a>
+          </li>
+                             <li class="none">
+                  <a href="../../patches.html" title="Contributing Patches">
+    Contributing Patches</a>
+          </li>
+                             <li class="none">
+                  <a href="../../building.html" title="Building Components">
+    Building Components</a>
+          </li>
+                             <li class="none">
+                  <a href="../../commons-parent-pom.html" title="Commons Parent Pom">
+    Commons Parent Pom</a>
+          </li>
+                             <li class="none">
+                  <a href="../../build-plugin/index.html" title="Commons Build Plugin">
+    Commons Build Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="../../releases/index.html" title="Releasing Components">
+    Releasing Components</a>
+          </li>
+                             <li class="none">
+                  <a href="http://wiki.apache.org/commons/FrontPage" class="externalLink" title="Wiki">
+    Wiki</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">ASF</li>
+                                        <li class="none">
+                  <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works">
+    How the ASF works</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/getinvolved.html" class="externalLink" title="Get Involved">
+    Get Involved</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/dev/" class="externalLink" title="Developer Resources">
+    Developer Resources</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/policies/conduct.html" class="externalLink" title="Code of Conduct">
+    Code of Conduct</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship">
+    Sponsorship</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks">
+    Thanks</a>
+          </li>
+                 </ul>
+              </div>
+            <div id="poweredBy">
+                                                                                                                    <a href="http://www.apache.org/events/current-event.html" title="ApacheCon" class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" src="http://www.apache.org/events/current-event-125x125.png"    />
+      </a>
+                                                                                                    <a href="http://maven.apache.org/" title="Maven" class="builtBy">
+        <img class="builtBy"  alt="Maven" src="http://maven.apache.org/images/logos/maven-feather.png"    />
+      </a>
+                      </div>
+          </td>
+          <td class="content">
+            <div class="section">
+<h2><a name="Overview"></a>Overview</h2><a name="Overview"></a>
+<p>This project uses <a class="externalLink" href="http://www.atlassian.com/software/jira">JIRA</a>.</p></div>
+<div class="section">
+<h2><a name="Issue_Management"></a>Issue Management</h2><a name="Issue_Management"></a>
+<p>Issues, bugs, and feature requests should be submitted to the following issue management system for this project.</p>
+<div class="source">
+<pre><a class="externalLink" href="http://issues.apache.org/jira/browse/JCS">http://issues.apache.org/jira/browse/JCS</a></pre></div></div>
+          </td>
+        </tr>
+      </table>
+    </div>
+
+    <div class="footer">
+      <p>Copyright &copy;                    2002-2018
+                        <a href="https://www.apache.org/">The Apache Software Foundation</a>.
+            All Rights Reserved.</p>
+                </div>
+  </body>
+
+</html>

Added: websites/production/commons/content/proper/commons-jcs/japicmp.html
==============================================================================
--- websites/production/commons/content/proper/commons-jcs/japicmp.html (added)
+++ websites/production/commons/content/proper/commons-jcs/japicmp.html Fri Sep  7 16:46:51 2018
@@ -0,0 +1,321 @@
+<!DOCTYPE html>
+<!--
+ | Generated by Apache Maven Doxia at 23 August 2018
+ | Rendered using Apache Maven Fluido Skin 1.3.0
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta charset="UTF-8" />
+    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+    <meta name="Date-Revision-yyyymmdd" content="20180823" />
+    <meta http-equiv="Content-Language" content="en" />
+    <title>JCS &#x2013; </title>
+
+  <link rel="stylesheet" href="./css/bootstrap.min.css" type="text/css" />
+  <link rel="stylesheet" href="./css/site.css" type="text/css" />
+    <link rel="stylesheet" href="./css/print.css" media="print" />
+
+  <script type="text/javascript" src="./js/jquery.min.js"></script>
+  <script type="text/javascript" src="./js/bootstrap.min.js"></script>
+  <script type="text/javascript" src="./js/prettify.min.js"></script>
+  <script type="text/javascript" src="./js/site.js"></script>
+
+              
+      </head>
+
+  <body class="composite">
+                          <a href="http://commons.apache.org/" id="bannerLeft" title="Apache Commons logo">
+                                                                                        <img class="logo-left" src="./images/commons-logo.png"  alt="Apache Commons logo"/>
+                </a>
+                                              <a href="index.html" id="bannerRight">
+                <h2>Commons JCS™</h2>
+                </a>
+          <div class="clear"></div>
+
+    <div class="navbar">
+      <div class="navbar-inner">
+        <div class="container-fluid">
+          <a class="brand" href="http://commons.apache.org/proper/commons-jcs/">Apache Commons JCS &trade;</a>
+          <ul class="nav">      
+                    
+            <li id="publishDate">Last Published: 23 August 2018</li>
+      <li class="divider">|</li> <li id="projectVersion">Version: 2.2.1</li>
+  </ul>
+                    <div class="pull-right">  <ul class="nav">
+            <li>
+                  <a href="http://www.apachecon.com/" class="externalLink" title="ApacheCon">
+    ApacheCon</a>
+      </li>
+          <li>
+                  <a href="http://www.apache.org" class="externalLink" title="Apache">
+    Apache</a>
+      </li>
+          <li>
+                  <a href="../../" title="Commons">
+    Commons</a>
+      </li>
+    </ul>
+</div>
+        </div>
+      </div>
+    </div>
+
+    <div class="container-fluid">
+      <table class="layout-table">
+        <tr>
+          <td class="sidebar">
+            <div class="well sidebar-nav">
+                    <ul class="nav nav-list">
+                                  <li class="nav-header">JCS</li>
+                                        <li class="none">
+                  <a href="index.html" title="Overview">
+    Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="JCSandJCACHE.html" title="JCS and JCACHE">
+    JCS and JCACHE</a>
+          </li>
+                             <li class="none">
+                  <a href="download_jcs.cgi" title="Downloads">
+    Downloads</a>
+          </li>
+                             <li class="none">
+                  <a href="faq.html" title="FAQ">
+    FAQ</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                        <li class="nav-header"><i class="icon-cog"></i>Development</li>
+                                        <li class="none">
+                  <a href="changes-report.html" title="Release Notes">
+    Release Notes</a>
+          </li>
+                             <li class="none">
+                  <a href="UpgradingFrom13.html" title="Upgrading from 1.3 to 2.0">
+    Upgrading from 1.3 to 2.0</a>
+          </li>
+                             <li class="none">
+                  <a href="mail-lists.html" title="Mailing Lists">
+    Mailing Lists</a>
+          </li>
+                             <li class="none">
+                  <a href="issue-tracking.html" title="Issue Tracking">
+    Issue Tracking</a>
+          </li>
+                             <li class="none">
+                  <a href="source-repository.html" title="Source Repository">
+    Source Repository</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-core/apidocs/index.html" title="Core Javadoc (SVN latest)">
+    Core Javadoc (SVN latest)</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Getting Started</li>
+                                        <li class="none">
+                  <a href="getting_started/intro.html" title="Overview">
+    Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="BasicJCSConfiguration.html" title="Basic JCS Config">
+    Basic JCS Config</a>
+          </li>
+                             <li class="none">
+                  <a href="JCSPlugins.html" title="Plugin Overview">
+    Plugin Overview</a>
+          </li>
+                             <li class="none">
+                  <a href="UsingJCSBasicWeb.html" title="Basic Web Example">
+    Basic Web Example</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">JCS User's Guide</li>
+                                                                                                                                                                                    <li class="collapsed">
+                  <a href="LocalCacheConfig.html" title="Core">
+    Core</a>
+                    </li>
+                                                                                                                                                                                                                                                                                                                         <li class="collapsed">
+                  <a href="JCSPlugins.html" title="Auxiliary">
+    Auxiliary</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Modules</li>
+                                        <li class="none">
+                  <a href="commons-jcs-core/index.html" title="Apache Commons JCS :: Core">
+    Apache Commons JCS :: Core</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache/index.html" title="Apache Commons JCS :: JCache">
+    Apache Commons JCS :: JCache</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache-tck/index.html" title="Apache Commons JCS :: JCache TCK">
+    Apache Commons JCS :: JCache TCK</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache-extras/index.html" title="Apache Commons JCS :: JCache Extras">
+    Apache Commons JCS :: JCache Extras</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-jcache-openjpa/index.html" title="Apache Commons JCS :: JCache OpenJPA">
+    Apache Commons JCS :: JCache OpenJPA</a>
+          </li>
+                             <li class="none">
+                  <a href="commons-jcs-dist/index.html" title="Apache Commons JCS :: Distribution">
+    Apache Commons JCS :: Distribution</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                        <li class="nav-header"><i class="icon-info-sign"></i>Project Documentation</li>
+                                                                                                                                                                                                                                                                                                <li class="collapsed">
+                  <a href="project-info.html" title="Project Information">
+    Project Information</a>
+                    </li>
+                                                                                                                                                                                                     <li class="expanded">
+                  <a href="project-reports.html" title="Project Reports">
+    Project Reports</a>
+                    <ul>
+                                  <li class="none">
+                  <a href="changes-report.html" title="Changes">
+    Changes</a>
+          </li>
+                                     <li class="none">
+                  <a href="jira-report.html" title="JIRA Report">
+    JIRA Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref/index.html" title="Source Xref">
+    Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="xref-test/index.html" title="Test Source Xref">
+    Test Source Xref</a>
+          </li>
+                                     <li class="none">
+                  <a href="surefire-report.html" title="Surefire Report">
+    Surefire Report</a>
+          </li>
+                                     <li class="none">
+                  <a href="rat-report.html" title="Rat Report">
+    Rat Report</a>
+          </li>
+                                       <li class="none active">
+                  <a href="japicmp.html" title="japicmp">
+    japicmp</a>
+          </li>
+                     </ul>
+              </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">Commons</li>
+                                        <li class="none">
+                  <a href="../../" title="Home">
+    Home</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/licenses/" class="externalLink" title="License">
+    License</a>
+          </li>
+                                                                               <li class="collapsed">
+                  <a href="../../components.html" title="Components">
+    Components</a>
+                    </li>
+                                                                               <li class="collapsed">
+                  <a href="../../sandbox/index.html" title="Sandbox">
+    Sandbox</a>
+                    </li>
+                                                                               <li class="collapsed">
+                  <a href="../../dormant/index.html" title="Dormant">
+    Dormant</a>
+                    </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">General Information</li>
+                                        <li class="none">
+                  <a href="../../security.html" title="Security">
+    Security</a>
+          </li>
+                             <li class="none">
+                  <a href="../../volunteering.html" title="Volunteering">
+    Volunteering</a>
+          </li>
+                             <li class="none">
+                  <a href="../../patches.html" title="Contributing Patches">
+    Contributing Patches</a>
+          </li>
+                             <li class="none">
+                  <a href="../../building.html" title="Building Components">
+    Building Components</a>
+          </li>
+                             <li class="none">
+                  <a href="../../commons-parent-pom.html" title="Commons Parent Pom">
+    Commons Parent Pom</a>
+          </li>
+                             <li class="none">
+                  <a href="../../build-plugin/index.html" title="Commons Build Plugin">
+    Commons Build Plugin</a>
+          </li>
+                             <li class="none">
+                  <a href="../../releases/index.html" title="Releasing Components">
+    Releasing Components</a>
+          </li>
+                             <li class="none">
+                  <a href="http://wiki.apache.org/commons/FrontPage" class="externalLink" title="Wiki">
+    Wiki</a>
+          </li>
+                 </ul>
+      <ul class="nav nav-list">
+                                  <li class="nav-header">ASF</li>
+                                        <li class="none">
+                  <a href="http://www.apache.org/foundation/how-it-works.html" class="externalLink" title="How the ASF works">
+    How the ASF works</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/getinvolved.html" class="externalLink" title="Get Involved">
+    Get Involved</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/dev/" class="externalLink" title="Developer Resources">
+    Developer Resources</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/policies/conduct.html" class="externalLink" title="Code of Conduct">
+    Code of Conduct</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink" title="Sponsorship">
+    Sponsorship</a>
+          </li>
+                             <li class="none">
+                  <a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="Thanks">
+    Thanks</a>
+          </li>
+                 </ul>
+              </div>
+            <div id="poweredBy">
+                                                                                                                    <a href="http://www.apache.org/events/current-event.html" title="ApacheCon" class="builtBy">
+        <img class="builtBy"  alt="ApacheCon" src="http://www.apache.org/events/current-event-125x125.png"    />
+      </a>
+                                                                                                    <a href="http://maven.apache.org/" title="Maven" class="builtBy">
+        <img class="builtBy"  alt="Maven" src="http://maven.apache.org/images/logos/maven-feather.png"    />
+      </a>
+                      </div>
+          </td>
+          <td class="content">
+            
+          </td>
+        </tr>
+      </table>
+    </div>
+
+    <div class="footer">
+      <p>Copyright &copy;                    2002-2018
+                        <a href="https://www.apache.org/">The Apache Software Foundation</a>.
+            All Rights Reserved.</p>
+                </div>
+  </body>
+
+</html>