You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by el...@apache.org on 2016/02/16 00:55:55 UTC

svn commit: r980520 [25/35] - in /websites/production/mina/content/mina-project: apidocs/ apidocs/org/apache/mina/core/ apidocs/org/apache/mina/core/buffer/ apidocs/org/apache/mina/core/buffer/class-use/ apidocs/org/apache/mina/core/class-use/ apidocs/...

Modified: websites/production/mina/content/mina-project/apidocs/src-html/org/apache/mina/example/echoserver/EchoProtocolHandler.html
==============================================================================
--- websites/production/mina/content/mina-project/apidocs/src-html/org/apache/mina/example/echoserver/EchoProtocolHandler.html (original)
+++ websites/production/mina/content/mina-project/apidocs/src-html/org/apache/mina/example/echoserver/EchoProtocolHandler.html Mon Feb 15 23:55:26 2016
@@ -28,60 +28,58 @@
 <span class="sourceLineNo">020</span>package org.apache.mina.example.echoserver;<a name="line.20"></a>
 <span class="sourceLineNo">021</span><a name="line.21"></a>
 <span class="sourceLineNo">022</span>import org.apache.mina.core.buffer.IoBuffer;<a name="line.22"></a>
-<span class="sourceLineNo">023</span>import org.apache.mina.core.future.WriteFuture;<a name="line.23"></a>
-<span class="sourceLineNo">024</span>import org.apache.mina.core.service.IoHandler;<a name="line.24"></a>
-<span class="sourceLineNo">025</span>import org.apache.mina.core.service.IoHandlerAdapter;<a name="line.25"></a>
-<span class="sourceLineNo">026</span>import org.apache.mina.core.session.IdleStatus;<a name="line.26"></a>
-<span class="sourceLineNo">027</span>import org.apache.mina.core.session.IoSession;<a name="line.27"></a>
-<span class="sourceLineNo">028</span>import org.apache.mina.core.write.WriteRequest;<a name="line.28"></a>
-<span class="sourceLineNo">029</span>import org.apache.mina.filter.ssl.SslFilter;<a name="line.29"></a>
-<span class="sourceLineNo">030</span>import org.slf4j.Logger;<a name="line.30"></a>
-<span class="sourceLineNo">031</span>import org.slf4j.LoggerFactory;<a name="line.31"></a>
-<span class="sourceLineNo">032</span><a name="line.32"></a>
-<span class="sourceLineNo">033</span>/**<a name="line.33"></a>
-<span class="sourceLineNo">034</span> * {@link IoHandler} implementation for echo server.<a name="line.34"></a>
-<span class="sourceLineNo">035</span> *<a name="line.35"></a>
-<span class="sourceLineNo">036</span> * @author &lt;a href="http://mina.apache.org"&gt;Apache MINA Project&lt;/a&gt;<a name="line.36"></a>
-<span class="sourceLineNo">037</span> */<a name="line.37"></a>
-<span class="sourceLineNo">038</span>public class EchoProtocolHandler extends IoHandlerAdapter {<a name="line.38"></a>
-<span class="sourceLineNo">039</span>    private final static Logger LOGGER = LoggerFactory.getLogger(EchoProtocolHandler.class);<a name="line.39"></a>
-<span class="sourceLineNo">040</span>    <a name="line.40"></a>
-<span class="sourceLineNo">041</span>    @Override<a name="line.41"></a>
-<span class="sourceLineNo">042</span>    public void sessionCreated(IoSession session) {<a name="line.42"></a>
-<span class="sourceLineNo">043</span>        session.getConfig().setIdleTime(IdleStatus.BOTH_IDLE, 10);<a name="line.43"></a>
-<span class="sourceLineNo">044</span><a name="line.44"></a>
-<span class="sourceLineNo">045</span>        // We're going to use SSL negotiation notification.<a name="line.45"></a>
-<span class="sourceLineNo">046</span>        session.setAttribute(SslFilter.USE_NOTIFICATION);<a name="line.46"></a>
-<span class="sourceLineNo">047</span>    }<a name="line.47"></a>
-<span class="sourceLineNo">048</span><a name="line.48"></a>
-<span class="sourceLineNo">049</span>    @Override<a name="line.49"></a>
-<span class="sourceLineNo">050</span>    public void sessionClosed(IoSession session) throws Exception {<a name="line.50"></a>
-<span class="sourceLineNo">051</span>        LOGGER.info("CLOSED");<a name="line.51"></a>
-<span class="sourceLineNo">052</span>    }<a name="line.52"></a>
-<span class="sourceLineNo">053</span><a name="line.53"></a>
-<span class="sourceLineNo">054</span>    @Override<a name="line.54"></a>
-<span class="sourceLineNo">055</span>    public void sessionOpened(IoSession session) throws Exception {<a name="line.55"></a>
-<span class="sourceLineNo">056</span>        LOGGER.info("OPENED");<a name="line.56"></a>
-<span class="sourceLineNo">057</span>    }<a name="line.57"></a>
-<span class="sourceLineNo">058</span><a name="line.58"></a>
-<span class="sourceLineNo">059</span>    @Override<a name="line.59"></a>
-<span class="sourceLineNo">060</span>    public void sessionIdle(IoSession session, IdleStatus status) {<a name="line.60"></a>
-<span class="sourceLineNo">061</span>        LOGGER.info("*** IDLE #" + session.getIdleCount(IdleStatus.BOTH_IDLE) + " ***");<a name="line.61"></a>
-<span class="sourceLineNo">062</span>    }<a name="line.62"></a>
-<span class="sourceLineNo">063</span><a name="line.63"></a>
-<span class="sourceLineNo">064</span>    @Override<a name="line.64"></a>
-<span class="sourceLineNo">065</span>    public void exceptionCaught(IoSession session, Throwable cause) {<a name="line.65"></a>
-<span class="sourceLineNo">066</span>        session.close(true);<a name="line.66"></a>
-<span class="sourceLineNo">067</span>    }<a name="line.67"></a>
-<span class="sourceLineNo">068</span><a name="line.68"></a>
-<span class="sourceLineNo">069</span>    @Override<a name="line.69"></a>
-<span class="sourceLineNo">070</span>    public void messageReceived(IoSession session, Object message)<a name="line.70"></a>
-<span class="sourceLineNo">071</span>            throws Exception {<a name="line.71"></a>
-<span class="sourceLineNo">072</span>        LOGGER.info( "Received : " + message );<a name="line.72"></a>
-<span class="sourceLineNo">073</span>        // Write the received data back to remote peer<a name="line.73"></a>
-<span class="sourceLineNo">074</span>        session.write(((IoBuffer) message).duplicate());<a name="line.74"></a>
-<span class="sourceLineNo">075</span>    }<a name="line.75"></a>
-<span class="sourceLineNo">076</span>}<a name="line.76"></a>
+<span class="sourceLineNo">023</span>import org.apache.mina.core.service.IoHandler;<a name="line.23"></a>
+<span class="sourceLineNo">024</span>import org.apache.mina.core.service.IoHandlerAdapter;<a name="line.24"></a>
+<span class="sourceLineNo">025</span>import org.apache.mina.core.session.IdleStatus;<a name="line.25"></a>
+<span class="sourceLineNo">026</span>import org.apache.mina.core.session.IoSession;<a name="line.26"></a>
+<span class="sourceLineNo">027</span>import org.apache.mina.filter.ssl.SslFilter;<a name="line.27"></a>
+<span class="sourceLineNo">028</span>import org.slf4j.Logger;<a name="line.28"></a>
+<span class="sourceLineNo">029</span>import org.slf4j.LoggerFactory;<a name="line.29"></a>
+<span class="sourceLineNo">030</span><a name="line.30"></a>
+<span class="sourceLineNo">031</span>/**<a name="line.31"></a>
+<span class="sourceLineNo">032</span> * {@link IoHandler} implementation for echo server.<a name="line.32"></a>
+<span class="sourceLineNo">033</span> *<a name="line.33"></a>
+<span class="sourceLineNo">034</span> * @author &lt;a href="http://mina.apache.org"&gt;Apache MINA Project&lt;/a&gt;<a name="line.34"></a>
+<span class="sourceLineNo">035</span> */<a name="line.35"></a>
+<span class="sourceLineNo">036</span>public class EchoProtocolHandler extends IoHandlerAdapter {<a name="line.36"></a>
+<span class="sourceLineNo">037</span>    private final static Logger LOGGER = LoggerFactory.getLogger(EchoProtocolHandler.class);<a name="line.37"></a>
+<span class="sourceLineNo">038</span>    <a name="line.38"></a>
+<span class="sourceLineNo">039</span>    @Override<a name="line.39"></a>
+<span class="sourceLineNo">040</span>    public void sessionCreated(IoSession session) {<a name="line.40"></a>
+<span class="sourceLineNo">041</span>        session.getConfig().setIdleTime(IdleStatus.BOTH_IDLE, 10);<a name="line.41"></a>
+<span class="sourceLineNo">042</span><a name="line.42"></a>
+<span class="sourceLineNo">043</span>        // We're going to use SSL negotiation notification.<a name="line.43"></a>
+<span class="sourceLineNo">044</span>        session.setAttribute(SslFilter.USE_NOTIFICATION);<a name="line.44"></a>
+<span class="sourceLineNo">045</span>    }<a name="line.45"></a>
+<span class="sourceLineNo">046</span><a name="line.46"></a>
+<span class="sourceLineNo">047</span>    @Override<a name="line.47"></a>
+<span class="sourceLineNo">048</span>    public void sessionClosed(IoSession session) throws Exception {<a name="line.48"></a>
+<span class="sourceLineNo">049</span>        LOGGER.info("CLOSED");<a name="line.49"></a>
+<span class="sourceLineNo">050</span>    }<a name="line.50"></a>
+<span class="sourceLineNo">051</span><a name="line.51"></a>
+<span class="sourceLineNo">052</span>    @Override<a name="line.52"></a>
+<span class="sourceLineNo">053</span>    public void sessionOpened(IoSession session) throws Exception {<a name="line.53"></a>
+<span class="sourceLineNo">054</span>        LOGGER.info("OPENED");<a name="line.54"></a>
+<span class="sourceLineNo">055</span>    }<a name="line.55"></a>
+<span class="sourceLineNo">056</span><a name="line.56"></a>
+<span class="sourceLineNo">057</span>    @Override<a name="line.57"></a>
+<span class="sourceLineNo">058</span>    public void sessionIdle(IoSession session, IdleStatus status) {<a name="line.58"></a>
+<span class="sourceLineNo">059</span>        LOGGER.info("*** IDLE #" + session.getIdleCount(IdleStatus.BOTH_IDLE) + " ***");<a name="line.59"></a>
+<span class="sourceLineNo">060</span>    }<a name="line.60"></a>
+<span class="sourceLineNo">061</span><a name="line.61"></a>
+<span class="sourceLineNo">062</span>    @Override<a name="line.62"></a>
+<span class="sourceLineNo">063</span>    public void exceptionCaught(IoSession session, Throwable cause) {<a name="line.63"></a>
+<span class="sourceLineNo">064</span>        session.closeNow();<a name="line.64"></a>
+<span class="sourceLineNo">065</span>    }<a name="line.65"></a>
+<span class="sourceLineNo">066</span><a name="line.66"></a>
+<span class="sourceLineNo">067</span>    @Override<a name="line.67"></a>
+<span class="sourceLineNo">068</span>    public void messageReceived(IoSession session, Object message)<a name="line.68"></a>
+<span class="sourceLineNo">069</span>            throws Exception {<a name="line.69"></a>
+<span class="sourceLineNo">070</span>        LOGGER.info( "Received : " + message );<a name="line.70"></a>
+<span class="sourceLineNo">071</span>        // Write the received data back to remote peer<a name="line.71"></a>
+<span class="sourceLineNo">072</span>        session.write(((IoBuffer) message).duplicate());<a name="line.72"></a>
+<span class="sourceLineNo">073</span>    }<a name="line.73"></a>
+<span class="sourceLineNo">074</span>}<a name="line.74"></a>
 
 
 

Modified: websites/production/mina/content/mina-project/testapidocs/allclasses-frame.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/allclasses-frame.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/allclasses-frame.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>All Classes (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>All Classes (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/allclasses-noframe.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/allclasses-noframe.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/allclasses-noframe.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>All Classes (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>All Classes (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/constant-values.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/constant-values.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/constant-values.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Constant Field Values (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Constant Field Values (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Constant Field Values (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/deprecated-list.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/deprecated-list.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/deprecated-list.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Deprecated List (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Deprecated List (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Deprecated List (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/help-doc.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/help-doc.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/help-doc.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>API Help (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>API Help (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help (Apache MINA 2.0.12 Test API)";
+            parent.document.title="API Help (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/index-all.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/index-all.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/index-all.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Index (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Index (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Index (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Index (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/index.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/index.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/index.html Mon Feb 15 23:55:26 2016
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Apache MINA 2.0.12 Test API</title>
+<title>Apache MINA 2.0.13 Test API</title>
 <script type="text/javascript">
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/DefaultIoFilterChainBuilderTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/DefaultIoFilterChainBuilderTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/DefaultIoFilterChainBuilderTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DefaultIoFilterChainBuilderTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>DefaultIoFilterChainBuilderTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DefaultIoFilterChainBuilderTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="DefaultIoFilterChainBuilderTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/FutureTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/FutureTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/FutureTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>FutureTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>FutureTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="FutureTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="FutureTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/IoFilterChainTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/IoFilterChainTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/IoFilterChainTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IoFilterChainTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>IoFilterChainTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IoFilterChainTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="IoFilterChainTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/IoServiceListenerSupportTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/IoServiceListenerSupportTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/IoServiceListenerSupportTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IoServiceListenerSupportTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>IoServiceListenerSupportTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IoServiceListenerSupportTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="IoServiceListenerSupportTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/IoBufferTest.NonserializableClass.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/IoBufferTest.NonserializableClass.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/IoBufferTest.NonserializableClass.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IoBufferTest.NonserializableClass (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>IoBufferTest.NonserializableClass (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IoBufferTest.NonserializableClass (Apache MINA 2.0.12 Test API)";
+            parent.document.title="IoBufferTest.NonserializableClass (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/IoBufferTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/IoBufferTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/IoBufferTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IoBufferTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>IoBufferTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IoBufferTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="IoBufferTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/class-use/IoBufferTest.NonserializableClass.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/class-use/IoBufferTest.NonserializableClass.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/class-use/IoBufferTest.NonserializableClass.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.buffer.IoBufferTest.NonserializableClass (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.buffer.IoBufferTest.NonserializableClass (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.buffer.IoBufferTest.NonserializableClass (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.buffer.IoBufferTest.NonserializableClass (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/class-use/IoBufferTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/class-use/IoBufferTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/class-use/IoBufferTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.buffer.IoBufferTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.buffer.IoBufferTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.buffer.IoBufferTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.buffer.IoBufferTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-frame.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-frame.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-frame.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core.buffer (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core.buffer (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-summary.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-summary.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-summary.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core.buffer (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core.buffer (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.core.buffer (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.core.buffer (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-tree.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-tree.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-tree.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core.buffer Class Hierarchy (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core.buffer Class Hierarchy (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.core.buffer Class Hierarchy (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.core.buffer Class Hierarchy (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-use.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-use.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/buffer/package-use.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.mina.core.buffer (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Package org.apache.mina.core.buffer (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Package org.apache.mina.core.buffer (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Package org.apache.mina.core.buffer (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/DefaultIoFilterChainBuilderTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/DefaultIoFilterChainBuilderTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/DefaultIoFilterChainBuilderTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.DefaultIoFilterChainBuilderTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.DefaultIoFilterChainBuilderTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.DefaultIoFilterChainBuilderTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.DefaultIoFilterChainBuilderTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/FutureTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/FutureTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/FutureTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.FutureTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.FutureTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.FutureTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.FutureTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/IoFilterChainTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/IoFilterChainTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/IoFilterChainTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.IoFilterChainTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.IoFilterChainTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.IoFilterChainTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.IoFilterChainTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/IoServiceListenerSupportTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/IoServiceListenerSupportTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/class-use/IoServiceListenerSupportTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.IoServiceListenerSupportTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.IoServiceListenerSupportTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.IoServiceListenerSupportTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.IoServiceListenerSupportTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-frame.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-frame.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-frame.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-summary.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-summary.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-summary.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.core (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.core (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-tree.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-tree.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-tree.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core Class Hierarchy (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core Class Hierarchy (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.core Class Hierarchy (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.core Class Hierarchy (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-use.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-use.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/package-use.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.mina.core (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Package org.apache.mina.core (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Package org.apache.mina.core (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Package org.apache.mina.core (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.ClientHandler.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.ClientHandler.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.ClientHandler.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.12 Test API)";
+            parent.document.title="AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.ServerHandler.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.ServerHandler.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.ServerHandler.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.12 Test API)";
+            parent.document.title="AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/AbstractIoServiceTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:40 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:38 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AbstractIoServiceTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>AbstractIoServiceTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractIoServiceTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="AbstractIoServiceTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.ClientHandler.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.ClientHandler.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.ClientHandler.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ClientHandler (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.ServerHandler.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.ServerHandler.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.ServerHandler.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.service.AbstractIoServiceTest.ServerHandler (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/class-use/AbstractIoServiceTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.core.service.AbstractIoServiceTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.core.service.AbstractIoServiceTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.core.service.AbstractIoServiceTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.core.service.AbstractIoServiceTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-frame.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-frame.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-frame.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core.service (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core.service (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-summary.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-summary.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-summary.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core.service (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core.service (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.core.service (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.core.service (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-tree.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-tree.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-tree.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.core.service Class Hierarchy (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.core.service Class Hierarchy (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.core.service Class Hierarchy (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.core.service Class Hierarchy (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-use.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-use.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/core/service/package-use.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.mina.core.service (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Package org.apache.mina.core.service (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Package org.apache.mina.core.service (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Package org.apache.mina.core.service (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/SpringMainTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/SpringMainTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/SpringMainTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:42 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SpringMainTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>SpringMainTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SpringMainTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="SpringMainTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/class-use/SpringMainTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/class-use/SpringMainTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/class-use/SpringMainTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.example.chat.SpringMainTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.example.chat.SpringMainTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.example.chat.SpringMainTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.example.chat.SpringMainTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-frame.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-frame.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-frame.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.example.chat (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.example.chat (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-summary.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-summary.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-summary.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.example.chat (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.example.chat (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.example.chat (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.example.chat (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-tree.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-tree.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-tree.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.example.chat Class Hierarchy (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.example.chat Class Hierarchy (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.example.chat Class Hierarchy (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.example.chat Class Hierarchy (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-use.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-use.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/chat/package-use.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.mina.example.chat (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Package org.apache.mina.example.chat (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Package org.apache.mina.example.chat (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Package org.apache.mina.example.chat (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/AbstractTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/AbstractTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/AbstractTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:42 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AbstractTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>AbstractTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="AbstractTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/AcceptorTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/AcceptorTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/AcceptorTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:42 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AcceptorTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>AcceptorTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AcceptorTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="AcceptorTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/ConnectorTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/ConnectorTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/ConnectorTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:42 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConnectorTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>ConnectorTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConnectorTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="ConnectorTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/AbstractTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/AbstractTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/AbstractTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.example.echoserver.AbstractTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.example.echoserver.AbstractTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.example.echoserver.AbstractTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.example.echoserver.AbstractTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/AcceptorTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/AcceptorTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/AcceptorTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.example.echoserver.AcceptorTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.example.echoserver.AcceptorTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.example.echoserver.AcceptorTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.example.echoserver.AcceptorTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/ConnectorTest.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/ConnectorTest.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/class-use/ConnectorTest.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Class org.apache.mina.example.echoserver.ConnectorTest (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Class org.apache.mina.example.echoserver.ConnectorTest (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class org.apache.mina.example.echoserver.ConnectorTest (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Class org.apache.mina.example.echoserver.ConnectorTest (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-frame.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-frame.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-frame.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.example.echoserver (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.example.echoserver (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-summary.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-summary.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-summary.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.example.echoserver (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.example.echoserver (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.example.echoserver (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.example.echoserver (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-tree.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-tree.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-tree.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:43 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.mina.example.echoserver Class Hierarchy (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>org.apache.mina.example.echoserver Class Hierarchy (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.mina.example.echoserver Class Hierarchy (Apache MINA 2.0.12 Test API)";
+            parent.document.title="org.apache.mina.example.echoserver Class Hierarchy (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {

Modified: websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-use.html
==============================================================================
--- websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-use.html (original)
+++ websites/production/mina/content/mina-project/testapidocs/org/apache/mina/example/echoserver/package-use.html Mon Feb 15 23:55:26 2016
@@ -2,10 +2,10 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (1.8.0_60) on Wed Feb 03 10:01:44 CET 2016 -->
+<!-- Generated by javadoc (1.8.0_60) on Fri Feb 12 17:59:39 CET 2016 -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Uses of Package org.apache.mina.example.echoserver (Apache MINA 2.0.12 Test API)</title>
-<meta name="date" content="2016-02-03">
+<title>Uses of Package org.apache.mina.example.echoserver (Apache MINA 2.0.13 Test API)</title>
+<meta name="date" content="2016-02-12">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -13,7 +13,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Package org.apache.mina.example.echoserver (Apache MINA 2.0.12 Test API)";
+            parent.document.title="Uses of Package org.apache.mina.example.echoserver (Apache MINA 2.0.13 Test API)";
         }
     }
     catch(err) {