You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2017/02/10 16:02:01 UTC

[01/16] incubator-juneau-website git commit: Update docs and about page.

Repository: incubator-juneau-website
Updated Branches:
  refs/heads/asf-site beb5f5d00 -> 7170135e5


http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/src-html/org/apache/juneau/internal/DelegateBeanMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/src-html/org/apache/juneau/internal/DelegateBeanMap.html b/content/site/apidocs/src-html/org/apache/juneau/internal/DelegateBeanMap.html
index 5d5ddf5..6247b40 100644
--- a/content/site/apidocs/src-html/org/apache/juneau/internal/DelegateBeanMap.html
+++ b/content/site/apidocs/src-html/org/apache/juneau/internal/DelegateBeanMap.html
@@ -123,40 +123,29 @@
 <span class="sourceLineNo">115</span>      List&lt;BeanPropertyMeta&gt; l = new ArrayList&lt;BeanPropertyMeta&gt;(keys.size());<a name="line.115"></a>
 <span class="sourceLineNo">116</span>      for (final String key : keys) {<a name="line.116"></a>
 <span class="sourceLineNo">117</span>         BeanPropertyMeta p = this.getPropertyMeta(key);<a name="line.117"></a>
-<span class="sourceLineNo">118</span>         if (overrideValues.containsKey(key)) {<a name="line.118"></a>
-<span class="sourceLineNo">119</span>            final BeanPropertyMeta p2 = p;<a name="line.119"></a>
-<span class="sourceLineNo">120</span>            p = new BeanPropertyMeta(this.meta, key) {<a name="line.120"></a>
-<span class="sourceLineNo">121</span>               @Override /* BeanPropertyMeta */<a name="line.121"></a>
-<span class="sourceLineNo">122</span>               public Object get(BeanMap&lt;?&gt; m) {<a name="line.122"></a>
-<span class="sourceLineNo">123</span>                  return overrideValues.get(key);<a name="line.123"></a>
-<span class="sourceLineNo">124</span>               }<a name="line.124"></a>
-<span class="sourceLineNo">125</span>               @Override /* BeanPropertyMeta */<a name="line.125"></a>
-<span class="sourceLineNo">126</span>               public &lt;M extends BeanPropertyMetaExtended&gt; M getExtendedMeta(Class&lt;M&gt; c) {<a name="line.126"></a>
-<span class="sourceLineNo">127</span>                  return p2.getExtendedMeta(c);<a name="line.127"></a>
-<span class="sourceLineNo">128</span>               }<a name="line.128"></a>
-<span class="sourceLineNo">129</span>            };<a name="line.129"></a>
-<span class="sourceLineNo">130</span>         }<a name="line.130"></a>
-<span class="sourceLineNo">131</span>         if (p == null)<a name="line.131"></a>
-<span class="sourceLineNo">132</span>            throw new BeanRuntimeException(super.getClassMeta().getInnerClass(), "Property ''{0}'' not found on class.", key);<a name="line.132"></a>
-<span class="sourceLineNo">133</span>         l.add(p);<a name="line.133"></a>
-<span class="sourceLineNo">134</span>      }<a name="line.134"></a>
-<span class="sourceLineNo">135</span>      return l;<a name="line.135"></a>
-<span class="sourceLineNo">136</span>   }<a name="line.136"></a>
-<span class="sourceLineNo">137</span><a name="line.137"></a>
-<span class="sourceLineNo">138</span>   private class BeanMapEntryOverride extends BeanMapEntry {<a name="line.138"></a>
-<span class="sourceLineNo">139</span>      Object value;<a name="line.139"></a>
-<span class="sourceLineNo">140</span><a name="line.140"></a>
-<span class="sourceLineNo">141</span>      private BeanMapEntryOverride(BeanMap&lt;?&gt; bm, BeanPropertyMeta bpm, Object value) {<a name="line.141"></a>
-<span class="sourceLineNo">142</span>         super(bm, bpm);<a name="line.142"></a>
-<span class="sourceLineNo">143</span>         this.value = value;<a name="line.143"></a>
-<span class="sourceLineNo">144</span>      }<a name="line.144"></a>
-<span class="sourceLineNo">145</span><a name="line.145"></a>
-<span class="sourceLineNo">146</span>      @Override /* Map.Entry */<a name="line.146"></a>
-<span class="sourceLineNo">147</span>      public Object getValue() {<a name="line.147"></a>
-<span class="sourceLineNo">148</span>         return value;<a name="line.148"></a>
-<span class="sourceLineNo">149</span>      }<a name="line.149"></a>
-<span class="sourceLineNo">150</span>   }<a name="line.150"></a>
-<span class="sourceLineNo">151</span>}<a name="line.151"></a>
+<span class="sourceLineNo">118</span>         if (overrideValues.containsKey(key))<a name="line.118"></a>
+<span class="sourceLineNo">119</span>            p = new BeanPropertyMeta.Builder(this.meta, key, overrideValues.get(key), p).build();<a name="line.119"></a>
+<span class="sourceLineNo">120</span>         if (p == null)<a name="line.120"></a>
+<span class="sourceLineNo">121</span>            throw new BeanRuntimeException(super.getClassMeta().getInnerClass(), "Property ''{0}'' not found on class.", key);<a name="line.121"></a>
+<span class="sourceLineNo">122</span>         l.add(p);<a name="line.122"></a>
+<span class="sourceLineNo">123</span>      }<a name="line.123"></a>
+<span class="sourceLineNo">124</span>      return l;<a name="line.124"></a>
+<span class="sourceLineNo">125</span>   }<a name="line.125"></a>
+<span class="sourceLineNo">126</span><a name="line.126"></a>
+<span class="sourceLineNo">127</span>   private class BeanMapEntryOverride extends BeanMapEntry {<a name="line.127"></a>
+<span class="sourceLineNo">128</span>      Object value;<a name="line.128"></a>
+<span class="sourceLineNo">129</span><a name="line.129"></a>
+<span class="sourceLineNo">130</span>      private BeanMapEntryOverride(BeanMap&lt;?&gt; bm, BeanPropertyMeta bpm, Object value) {<a name="line.130"></a>
+<span class="sourceLineNo">131</span>         super(bm, bpm);<a name="line.131"></a>
+<span class="sourceLineNo">132</span>         this.value = value;<a name="line.132"></a>
+<span class="sourceLineNo">133</span>      }<a name="line.133"></a>
+<span class="sourceLineNo">134</span><a name="line.134"></a>
+<span class="sourceLineNo">135</span>      @Override /* Map.Entry */<a name="line.135"></a>
+<span class="sourceLineNo">136</span>      public Object getValue() {<a name="line.136"></a>
+<span class="sourceLineNo">137</span>         return value;<a name="line.137"></a>
+<span class="sourceLineNo">138</span>      }<a name="line.138"></a>
+<span class="sourceLineNo">139</span>   }<a name="line.139"></a>
+<span class="sourceLineNo">140</span>}<a name="line.140"></a>
 
 
 


[09/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/ConfigResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/ConfigResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/ConfigResource.html
index 93082b2..3309e34 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/ConfigResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/ConfigResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.FileResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.FileResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.FileResource.html
index 56664f6..43137b7 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.FileResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.FileResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DirectoryResource.FileResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DirectoryResource.FileResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DirectoryResource.FileResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DirectoryResource.FileResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.html
index 8fb506f..1609733 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/DirectoryResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DirectoryResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DirectoryResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DirectoryResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DirectoryResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/LogEntryFormatter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/LogEntryFormatter.html b/content/site/apidocs/org/apache/juneau/microservice/resources/LogEntryFormatter.html
index fe150cd..4985c19 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/LogEntryFormatter.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/LogEntryFormatter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LogEntryFormatter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LogEntryFormatter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LogEntryFormatter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LogEntryFormatter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.Entry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.Entry.html b/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.Entry.html
index 12604d7..21354e1 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.Entry.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.Entry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LogParser.Entry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LogParser.Entry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LogParser.Entry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LogParser.Entry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.html b/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.html
index c11e2b2..720e9b7 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/LogParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LogParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LogParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LogParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LogParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.FileResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.FileResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.FileResource.html
index 22d2f0b..843bd59 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.FileResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.FileResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LogsResource.FileResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LogsResource.FileResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LogsResource.FileResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LogsResource.FileResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.html
index 455d387..902efca 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/LogsResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LogsResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LogsResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LogsResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LogsResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/SampleRootResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/SampleRootResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/SampleRootResource.html
index 2af2fe0..a04710e 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/SampleRootResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/SampleRootResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SampleRootResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SampleRootResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SampleRootResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SampleRootResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/ShutdownResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/ShutdownResource.html b/content/site/apidocs/org/apache/juneau/microservice/resources/ShutdownResource.html
index b8f9373..b1b5bc2 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/ShutdownResource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/ShutdownResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ShutdownResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ShutdownResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ShutdownResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ShutdownResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/package-frame.html b/content/site/apidocs/org/apache/juneau/microservice/resources/package-frame.html
index 76e3335..37d0e7f 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.microservice.resources (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.microservice.resources (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/package-summary.html b/content/site/apidocs/org/apache/juneau/microservice/resources/package-summary.html
index 3b44bc3..509448a 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.microservice.resources (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.microservice.resources (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.microservice.resources (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.microservice.resources (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/resources/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/resources/package-tree.html b/content/site/apidocs/org/apache/juneau/microservice/resources/package-tree.html
index e2e1d3a..8c2be67 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/resources/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/resources/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.microservice.resources Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.microservice.resources Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.microservice.resources Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.microservice.resources Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackInputStream.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackInputStream.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackInputStream.html
index c0ce0e7..da654c8 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackInputStream.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackInputStream.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackInputStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackInputStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackInputStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackInputStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackOutputStream.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackOutputStream.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackOutputStream.html
index 31450c9..655759e 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackOutputStream.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackOutputStream.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackOutputStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackOutputStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackOutputStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackOutputStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParser.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParser.html
index 10733a1..d46affa 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParser.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserContext.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserContext.html
index 208768d..704db97 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserSession.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserSession.html
index a2e423d..424bf2a 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializer.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializer.html
index b0af914..91fbdc8 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerContext.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerContext.html
index de84fe2..f553474 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerSession.html b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerSession.html
index 7b4f157..5788a9a 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/MsgPackSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MsgPackSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MsgPackSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MsgPackSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MsgPackSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/package-frame.html b/content/site/apidocs/org/apache/juneau/msgpack/package-frame.html
index 545a4b9..e68a20a 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.msgpack (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.msgpack (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/package-summary.html b/content/site/apidocs/org/apache/juneau/msgpack/package-summary.html
index 4eb14c4..44e4299 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.msgpack (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.msgpack (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.msgpack (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.msgpack (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/msgpack/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/msgpack/package-tree.html b/content/site/apidocs/org/apache/juneau/msgpack/package-tree.html
index 61fa0fb..703108d 100644
--- a/content/site/apidocs/org/apache/juneau/msgpack/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/msgpack/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.msgpack Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.msgpack Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.msgpack Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.msgpack Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/package-frame.html b/content/site/apidocs/org/apache/juneau/package-frame.html
index 0044002..21793e0 100644
--- a/content/site/apidocs/org/apache/juneau/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -29,6 +29,7 @@
 <li><a href="BeanMetaExtended.html" title="class in org.apache.juneau" target="classFrame">BeanMetaExtended</a></li>
 <li><a href="BeanMetaFiltered.html" title="class in org.apache.juneau" target="classFrame">BeanMetaFiltered</a></li>
 <li><a href="BeanPropertyMeta.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyMeta</a></li>
+<li><a href="BeanPropertyMeta.Builder.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyMeta.Builder</a></li>
 <li><a href="BeanPropertyMetaExtended.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyMetaExtended</a></li>
 <li><a href="BeanPropertyValue.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyValue</a></li>
 <li><a href="BeanProxyInvocationHandler.html" title="class in org.apache.juneau" target="classFrame">BeanProxyInvocationHandler</a></li>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/package-summary.html b/content/site/apidocs/org/apache/juneau/package-summary.html
index f803c9f..1ed1e01 100644
--- a/content/site/apidocs/org/apache/juneau/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -176,111 +176,117 @@
 </td>
 </tr>
 <tr class="rowColor">
+<td class="colFirst"><a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a></td>
+<td class="colLast">
+<div class="block">BeanPropertyMeta builder class.</div>
+</td>
+</tr>
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau">BeanPropertyMetaExtended</a></td>
 <td class="colLast">
 <div class="block">Defines extended language-specific metadata associated with a bean property.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau">BeanPropertyValue</a></td>
 <td class="colLast">
 <div class="block">Represents a simple bean property value and the meta-data associated with it.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/BeanProxyInvocationHandler.html" title="class in org.apache.juneau">BeanProxyInvocationHandler</a>&lt;T&gt;</td>
 <td class="colLast">
 <div class="block">Provides an <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationHandler.html?is-external=true" title="class or interface in java.lang.reflect"><code>InvocationHandler</code></a> for creating beans from bean interfaces.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/BeanRegistry.html" title="class in org.apache.juneau">BeanRegistry</a></td>
 <td class="colLast">
 <div class="block">A lookup table for resolving bean types by name.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/BeanSession.html" title="class in org.apache.juneau">BeanSession</a></td>
 <td class="colLast">
 <div class="block">Session object that lives for the duration of a single use of <a href="../../../org/apache/juneau/serializer/Serializer.html" title="class in org.apache.juneau.serializer"><code>Serializer</code></a> or <a href="../../../org/apache/juneau/parser/Parser.html" title="class in org.apache.juneau.parser"><code>Parser</code></a>.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;T&gt;</td>
 <td class="colLast">
 <div class="block">A wrapper class around the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang"><code>Class</code></a> object that provides cached information
  about that class.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/ClassMetaExtended.html" title="class in org.apache.juneau">ClassMetaExtended</a></td>
 <td class="colLast">
 <div class="block">Defines extended language-specific metadata associated with a class.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/Context.html" title="class in org.apache.juneau">Context</a></td>
 <td class="colLast">
 <div class="block">A reusable stateless thread-safe read-only configuration, typically used for creating one-time use <a href="../../../org/apache/juneau/Session.html" title="class in org.apache.juneau"><code>Session</code></a> objects.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/ContextFactory.html" title="class in org.apache.juneau">ContextFactory</a></td>
 <td class="colLast">
 <div class="block">A factory for instantiating <a href="../../../org/apache/juneau/Context.html" title="class in org.apache.juneau"><code>Context</code></a> objects.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/CoreApi.html" title="class in org.apache.juneau">CoreApi</a></td>
 <td class="colLast">
 <div class="block">Common super class for all core-API serializers, parsers, and serializer/parser groups.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/Lockable.html" title="class in org.apache.juneau">Lockable</a></td>
 <td class="colLast">
 <div class="block">Superclass of all classes that have a locked state.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/MediaRange.html" title="class in org.apache.juneau">MediaRange</a></td>
 <td class="colLast">
 <div class="block">Describes a single type used in content negotiation between an HTTP client and server, as described in
  Section 14.1 and 14.7 of RFC2616 (the HTTP/1.1 specification).</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/MediaType.html" title="class in org.apache.juneau">MediaType</a></td>
 <td class="colLast">
 <div class="block">Describes a single media type used in content negotiation between an HTTP client and server, as described in
  Section 14.1 and 14.7 of RFC2616 (the HTTP/1.1 specification).</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/ObjectList.html" title="class in org.apache.juneau">ObjectList</a></td>
 <td class="colLast">
 <div class="block">Java implementation of a JSON array.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/ObjectMap.html" title="class in org.apache.juneau">ObjectMap</a></td>
 <td class="colLast">
 <div class="block">Java implementation of a JSON object.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/PropertyNamerDashedLC.html" title="class in org.apache.juneau">PropertyNamerDashedLC</a></td>
 <td class="colLast">
 <div class="block">Converts property names to dashed-lower-case format.</div>
 </td>
 </tr>
-<tr class="altColor">
+<tr class="rowColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/PropertyNamerDefault.html" title="class in org.apache.juneau">PropertyNamerDefault</a></td>
 <td class="colLast">
 <div class="block">Default property namer.</div>
 </td>
 </tr>
-<tr class="rowColor">
+<tr class="altColor">
 <td class="colFirst"><a href="../../../org/apache/juneau/Session.html" title="class in org.apache.juneau">Session</a></td>
 <td class="colLast">
 <div class="block">A one-time-use non-thread-safe object that's meant to be used once and then thrown away.</div>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/package-tree.html b/content/site/apidocs/org/apache/juneau/package-tree.html
index 165e099..387cdac 100644
--- a/content/site/apidocs/org/apache/juneau/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -125,6 +125,7 @@
 </li>
 <li type="circle">org.apache.juneau.<a href="../../../org/apache/juneau/BeanMetaExtended.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanMetaExtended</span></a></li>
 <li type="circle">org.apache.juneau.<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMeta</span></a></li>
+<li type="circle">org.apache.juneau.<a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMeta.Builder</span></a></li>
 <li type="circle">org.apache.juneau.<a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMetaExtended</span></a></li>
 <li type="circle">org.apache.juneau.<a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyValue</span></a></li>
 <li type="circle">org.apache.juneau.<a href="../../../org/apache/juneau/BeanProxyInvocationHandler.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanProxyInvocationHandler</span></a>&lt;T&gt; (implements java.lang.reflect.<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/InvocationHandler.html?is-external=true" title="class or interface in java.lang.reflect">InvocationHandler</a>)</li>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/InputStreamParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/InputStreamParser.html b/content/site/apidocs/org/apache/juneau/parser/InputStreamParser.html
index d9445c7..777cd91 100644
--- a/content/site/apidocs/org/apache/juneau/parser/InputStreamParser.html
+++ b/content/site/apidocs/org/apache/juneau/parser/InputStreamParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>InputStreamParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>InputStreamParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="InputStreamParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="InputStreamParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParseException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParseException.html b/content/site/apidocs/org/apache/juneau/parser/ParseException.html
index ee8aabb..5ca48cb 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParseException.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParseException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParseException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParseException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParseException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParseException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/Parser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/Parser.html b/content/site/apidocs/org/apache/juneau/parser/Parser.html
index ee5b9ae..6994692 100644
--- a/content/site/apidocs/org/apache/juneau/parser/Parser.html
+++ b/content/site/apidocs/org/apache/juneau/parser/Parser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Parser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Parser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Parser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Parser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParserContext.html b/content/site/apidocs/org/apache/juneau/parser/ParserContext.html
index aa4e1ce..f2078b6 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParserGroup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParserGroup.html b/content/site/apidocs/org/apache/juneau/parser/ParserGroup.html
index ea35aec..58019e5 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParserGroup.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParserGroup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParserGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParserGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParserGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParserGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParserListener.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParserListener.html b/content/site/apidocs/org/apache/juneau/parser/ParserListener.html
index 2c414e8..b019831 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParserListener.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParserListener.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParserListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParserListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParserListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParserListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParserMatch.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParserMatch.html b/content/site/apidocs/org/apache/juneau/parser/ParserMatch.html
index 308ead8..a4c8657 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParserMatch.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParserMatch.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParserMatch (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParserMatch (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParserMatch (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParserMatch (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParserReader.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParserReader.html b/content/site/apidocs/org/apache/juneau/parser/ParserReader.html
index 99ab081..7e5df55 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParserReader.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParserReader.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParserReader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParserReader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParserReader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParserReader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ParserSession.html b/content/site/apidocs/org/apache/juneau/parser/ParserSession.html
index 9779b7a..8fc128f 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/ReaderParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/ReaderParser.html b/content/site/apidocs/org/apache/juneau/parser/ReaderParser.html
index ad82af4..a9d757a 100644
--- a/content/site/apidocs/org/apache/juneau/parser/ReaderParser.html
+++ b/content/site/apidocs/org/apache/juneau/parser/ReaderParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/package-frame.html b/content/site/apidocs/org/apache/juneau/parser/package-frame.html
index 92327c4..6065c89 100644
--- a/content/site/apidocs/org/apache/juneau/parser/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/parser/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.parser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.parser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/package-summary.html b/content/site/apidocs/org/apache/juneau/parser/package-summary.html
index 4a19735..931bbd7 100644
--- a/content/site/apidocs/org/apache/juneau/parser/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/parser/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.parser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.parser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.parser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.parser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/parser/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/parser/package-tree.html b/content/site/apidocs/org/apache/juneau/parser/package-tree.html
index e6e0e40..6fc4858 100644
--- a/content/site/apidocs/org/apache/juneau/parser/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/parser/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.parser Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.parser Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.parser Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.parser Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/plaintext/PlainTextParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/plaintext/PlainTextParser.html b/content/site/apidocs/org/apache/juneau/plaintext/PlainTextParser.html
index f45911b..0a34f64 100644
--- a/content/site/apidocs/org/apache/juneau/plaintext/PlainTextParser.html
+++ b/content/site/apidocs/org/apache/juneau/plaintext/PlainTextParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PlainTextParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PlainTextParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PlainTextParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PlainTextParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/plaintext/PlainTextSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/plaintext/PlainTextSerializer.html b/content/site/apidocs/org/apache/juneau/plaintext/PlainTextSerializer.html
index 6a7e68b..12c6d21 100644
--- a/content/site/apidocs/org/apache/juneau/plaintext/PlainTextSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/plaintext/PlainTextSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PlainTextSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PlainTextSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PlainTextSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PlainTextSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/plaintext/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/plaintext/package-frame.html b/content/site/apidocs/org/apache/juneau/plaintext/package-frame.html
index 8d2fd08..17e8b70 100644
--- a/content/site/apidocs/org/apache/juneau/plaintext/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/plaintext/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.plaintext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.plaintext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/plaintext/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/plaintext/package-summary.html b/content/site/apidocs/org/apache/juneau/plaintext/package-summary.html
index bf37652..0b8874a 100644
--- a/content/site/apidocs/org/apache/juneau/plaintext/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/plaintext/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.plaintext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.plaintext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.plaintext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.plaintext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/plaintext/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/plaintext/package-tree.html b/content/site/apidocs/org/apache/juneau/plaintext/package-tree.html
index f40eaa6..58534ee 100644
--- a/content/site/apidocs/org/apache/juneau/plaintext/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/plaintext/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.plaintext Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.plaintext Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.plaintext Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.plaintext Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/ClientVersionMatcher.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/ClientVersionMatcher.html b/content/site/apidocs/org/apache/juneau/rest/ClientVersionMatcher.html
index c6ced63..9613aec 100644
--- a/content/site/apidocs/org/apache/juneau/rest/ClientVersionMatcher.html
+++ b/content/site/apidocs/org/apache/juneau/rest/ClientVersionMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ClientVersionMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ClientVersionMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClientVersionMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ClientVersionMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/ReaderResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/ReaderResource.html b/content/site/apidocs/org/apache/juneau/rest/ReaderResource.html
index c096b33..31ca73b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/ReaderResource.html
+++ b/content/site/apidocs/org/apache/juneau/rest/ReaderResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/Redirect.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/Redirect.html b/content/site/apidocs/org/apache/juneau/rest/Redirect.html
index 252d9c5..f366a8f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/Redirect.html
+++ b/content/site/apidocs/org/apache/juneau/rest/Redirect.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Redirect (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Redirect (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Redirect (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Redirect (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/ResponseHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/ResponseHandler.html b/content/site/apidocs/org/apache/juneau/rest/ResponseHandler.html
index ed5ff58..2e975cd 100644
--- a/content/site/apidocs/org/apache/juneau/rest/ResponseHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/ResponseHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResponseHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResponseHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResponseHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResponseHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestConverter.html b/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
index a47cfb1..fdbca58 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestConverter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestConverter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestConverter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestConverter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestConverter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestException.html b/content/site/apidocs/org/apache/juneau/rest/RestException.html
index 73a1bec..83e6b07 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestException.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestGuard.html b/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
index f5dcad1..d1b7698 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestGuard.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestGuard (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestGuard (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestGuard (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestGuard (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html b/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
index 0ada3de..fa7cf30 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html b/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
index 9f2447c..ae10ef9 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestMatcherReflecting.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMatcherReflecting (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestMatcherReflecting (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestMatcherReflecting (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestMatcherReflecting (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestRequest.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestRequest.html b/content/site/apidocs/org/apache/juneau/rest/RestRequest.html
index 2f6e01b..41f0010 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestRequest.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestRequest.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestRequest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestRequest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestRequest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestRequest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestResponse.html b/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
index 9ec2916..ea15ffb 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestResponse (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestResponse (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestResponse (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestResponse (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestServlet.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServlet.html b/content/site/apidocs/org/apache/juneau/rest/RestServlet.html
index 852f82f..89b6a10 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestServlet.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestServlet.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServlet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServlet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServlet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServlet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestServletContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletContext.html b/content/site/apidocs/org/apache/juneau/rest/RestServletContext.html
index be72fbe..055628f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestServletContext.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestServletContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServletContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServletContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServletContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServletContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[04/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/IOPipe.LineProcessor.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/IOPipe.LineProcessor.html b/content/site/apidocs/org/apache/juneau/utils/IOPipe.LineProcessor.html
index f7241b2..99ea8da 100644
--- a/content/site/apidocs/org/apache/juneau/utils/IOPipe.LineProcessor.html
+++ b/content/site/apidocs/org/apache/juneau/utils/IOPipe.LineProcessor.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IOPipe.LineProcessor (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>IOPipe.LineProcessor (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IOPipe.LineProcessor (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="IOPipe.LineProcessor (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/IOPipe.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/IOPipe.html b/content/site/apidocs/org/apache/juneau/utils/IOPipe.html
index c515d06..b9956d4 100644
--- a/content/site/apidocs/org/apache/juneau/utils/IOPipe.html
+++ b/content/site/apidocs/org/apache/juneau/utils/IOPipe.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IOPipe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>IOPipe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IOPipe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="IOPipe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ManifestFile.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ManifestFile.html b/content/site/apidocs/org/apache/juneau/utils/ManifestFile.html
index 789a004..1c02064 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ManifestFile.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ManifestFile.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ManifestFile (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ManifestFile (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ManifestFile (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ManifestFile (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/MessageBundle.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/MessageBundle.html b/content/site/apidocs/org/apache/juneau/utils/MessageBundle.html
index 509cfb2..f912995 100644
--- a/content/site/apidocs/org/apache/juneau/utils/MessageBundle.html
+++ b/content/site/apidocs/org/apache/juneau/utils/MessageBundle.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MessageBundle (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MessageBundle (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MessageBundle (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MessageBundle (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/MetadataMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/MetadataMap.html b/content/site/apidocs/org/apache/juneau/utils/MetadataMap.html
index 27ea699..f2e31e2 100644
--- a/content/site/apidocs/org/apache/juneau/utils/MetadataMap.html
+++ b/content/site/apidocs/org/apache/juneau/utils/MetadataMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MetadataMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MetadataMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MetadataMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MetadataMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ObjectUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ObjectUtils.html b/content/site/apidocs/org/apache/juneau/utils/ObjectUtils.html
index c22b956..bbdba34 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ObjectUtils.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ObjectUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ObjectUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ObjectUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ObjectUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ObjectUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/PojoIntrospector.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/PojoIntrospector.html b/content/site/apidocs/org/apache/juneau/utils/PojoIntrospector.html
index f9f5f6e..6c67934 100644
--- a/content/site/apidocs/org/apache/juneau/utils/PojoIntrospector.html
+++ b/content/site/apidocs/org/apache/juneau/utils/PojoIntrospector.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PojoIntrospector (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PojoIntrospector (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PojoIntrospector (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PojoIntrospector (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/PojoQuery.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/PojoQuery.html b/content/site/apidocs/org/apache/juneau/utils/PojoQuery.html
index 4268586..c56054a 100644
--- a/content/site/apidocs/org/apache/juneau/utils/PojoQuery.html
+++ b/content/site/apidocs/org/apache/juneau/utils/PojoQuery.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PojoQuery (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PojoQuery (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PojoQuery (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PojoQuery (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/PojoRest.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/PojoRest.html b/content/site/apidocs/org/apache/juneau/utils/PojoRest.html
index 420c143..f3f1654 100644
--- a/content/site/apidocs/org/apache/juneau/utils/PojoRest.html
+++ b/content/site/apidocs/org/apache/juneau/utils/PojoRest.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PojoRest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PojoRest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PojoRest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PojoRest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/PojoRestException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/PojoRestException.html b/content/site/apidocs/org/apache/juneau/utils/PojoRestException.html
index c795222..29846f8 100644
--- a/content/site/apidocs/org/apache/juneau/utils/PojoRestException.html
+++ b/content/site/apidocs/org/apache/juneau/utils/PojoRestException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PojoRestException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PojoRestException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PojoRestException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PojoRestException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.Matcher.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.Matcher.html b/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.Matcher.html
index 1cc192e..2492e8f 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.Matcher.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.Matcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ProcBuilder.Matcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ProcBuilder.Matcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ProcBuilder.Matcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ProcBuilder.Matcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.html b/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.html
index f6d9e05..7132c22 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ProcBuilder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ProcBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ProcBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ProcBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ProcBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ZipFileList.FileEntry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ZipFileList.FileEntry.html b/content/site/apidocs/org/apache/juneau/utils/ZipFileList.FileEntry.html
index 78ea149..99ee088 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ZipFileList.FileEntry.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ZipFileList.FileEntry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ZipFileList.FileEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ZipFileList.FileEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ZipFileList.FileEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ZipFileList.FileEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ZipFileList.ZipFileEntry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ZipFileList.ZipFileEntry.html b/content/site/apidocs/org/apache/juneau/utils/ZipFileList.ZipFileEntry.html
index 97b9ded..28a4115 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ZipFileList.ZipFileEntry.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ZipFileList.ZipFileEntry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ZipFileList.ZipFileEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ZipFileList.ZipFileEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ZipFileList.ZipFileEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ZipFileList.ZipFileEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/ZipFileList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/ZipFileList.html b/content/site/apidocs/org/apache/juneau/utils/ZipFileList.html
index efa3750..7b87086 100644
--- a/content/site/apidocs/org/apache/juneau/utils/ZipFileList.html
+++ b/content/site/apidocs/org/apache/juneau/utils/ZipFileList.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ZipFileList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ZipFileList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ZipFileList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ZipFileList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/package-frame.html b/content/site/apidocs/org/apache/juneau/utils/package-frame.html
index b880c63..1f35854 100644
--- a/content/site/apidocs/org/apache/juneau/utils/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/utils/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.utils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.utils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/package-summary.html b/content/site/apidocs/org/apache/juneau/utils/package-summary.html
index 0996a5f..bca9a41 100644
--- a/content/site/apidocs/org/apache/juneau/utils/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/utils/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.utils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.utils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.utils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.utils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/package-tree.html b/content/site/apidocs/org/apache/juneau/utils/package-tree.html
index 1de345c..9ee1f0d 100644
--- a/content/site/apidocs/org/apache/juneau/utils/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/utils/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.utils Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.utils Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.utils Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.utils Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/Namespace.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/Namespace.html b/content/site/apidocs/org/apache/juneau/xml/Namespace.html
index 1e3b0ff..66ea36f 100644
--- a/content/site/apidocs/org/apache/juneau/xml/Namespace.html
+++ b/content/site/apidocs/org/apache/juneau/xml/Namespace.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Namespace (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Namespace (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Namespace (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Namespace (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/NamespaceFactory.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/NamespaceFactory.html b/content/site/apidocs/org/apache/juneau/xml/NamespaceFactory.html
index 46b82e5..ee0801d 100644
--- a/content/site/apidocs/org/apache/juneau/xml/NamespaceFactory.html
+++ b/content/site/apidocs/org/apache/juneau/xml/NamespaceFactory.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>NamespaceFactory (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>NamespaceFactory (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="NamespaceFactory (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="NamespaceFactory (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlBeanMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlBeanMeta.html b/content/site/apidocs/org/apache/juneau/xml/XmlBeanMeta.html
index 6b8e80c..8b45abc 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlBeanMeta.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlBeanMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlBeanMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlBeanMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlBeanMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlBeanMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlBeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlBeanPropertyMeta.html b/content/site/apidocs/org/apache/juneau/xml/XmlBeanPropertyMeta.html
index cfbdb93..2e55fb3 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlBeanPropertyMeta.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlBeanPropertyMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlBeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlBeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlBeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlBeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlClassMeta.html b/content/site/apidocs/org/apache/juneau/xml/XmlClassMeta.html
index a3521b5..1d97996 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlClassMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.Simple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.Simple.html b/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.Simple.html
index ea7e6c4..d2f8481 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.Simple.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.Simple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlDocSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlDocSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlDocSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlDocSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.html b/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.html
index 96ce02e..ab9b9f3 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlDocSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlParser.html b/content/site/apidocs/org/apache/juneau/xml/XmlParser.html
index c297384..0bd1a98 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlParser.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlParserContext.html b/content/site/apidocs/org/apache/juneau/xml/XmlParserContext.html
index 9cb716a..759cd2e 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlParserSession.html b/content/site/apidocs/org/apache/juneau/xml/XmlParserSession.html
index 726450d..e67a9ab 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSchemaDocSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSchemaDocSerializer.html b/content/site/apidocs/org/apache/juneau/xml/XmlSchemaDocSerializer.html
index 682bc7e..f6d9fd3 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSchemaDocSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSchemaDocSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSchemaDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSchemaDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSchemaDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSchemaDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSchemaSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSchemaSerializer.html b/content/site/apidocs/org/apache/juneau/xml/XmlSchemaSerializer.html
index a8cb17a..5348581 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSchemaSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSchemaSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSchemaSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSchemaSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSchemaSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSchemaSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Ns.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Ns.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Ns.html
index 7927a4d..d47a5a3 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Ns.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Ns.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializer.Ns (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializer.Ns (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializer.Ns (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializer.Ns (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSq.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSq.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSq.html
index 8635580..397d388 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSq.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSq.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializer.NsSq (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializer.NsSq (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializer.NsSq (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializer.NsSq (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSqReadable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSqReadable.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSqReadable.html
index 435fd00..8a6c071 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSqReadable.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.NsSqReadable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializer.NsSqReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializer.NsSqReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializer.NsSqReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializer.NsSqReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Sq.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Sq.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Sq.html
index f5620d8..41ff818 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Sq.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.Sq.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializer.Sq (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializer.Sq (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializer.Sq (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializer.Sq (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.SqReadable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.SqReadable.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.SqReadable.html
index 0835926..505e54a 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.SqReadable.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.SqReadable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializer.SqReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializer.SqReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializer.SqReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializer.SqReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.html
index 524d3c9..7ddae99 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializerContext.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializerContext.html
index 9ba08fe..8d8e711 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlSerializerSession.html b/content/site/apidocs/org/apache/juneau/xml/XmlSerializerSession.html
index f0e2da3..d54417c 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlUtils.html b/content/site/apidocs/org/apache/juneau/xml/XmlUtils.html
index 66e499b..a28a6db 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlUtils.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/XmlWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/XmlWriter.html b/content/site/apidocs/org/apache/juneau/xml/XmlWriter.html
index 39511db..62fd2fa 100644
--- a/content/site/apidocs/org/apache/juneau/xml/XmlWriter.html
+++ b/content/site/apidocs/org/apache/juneau/xml/XmlWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/Xml.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/Xml.html b/content/site/apidocs/org/apache/juneau/xml/annotation/Xml.html
index bfa7bea..21c598c 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/Xml.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/Xml.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/XmlFormat.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/XmlFormat.html b/content/site/apidocs/org/apache/juneau/xml/annotation/XmlFormat.html
index 0b5fc0c..82a7f3b 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/XmlFormat.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/XmlFormat.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlFormat (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlFormat (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlFormat (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlFormat (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/XmlNs.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/XmlNs.html b/content/site/apidocs/org/apache/juneau/xml/annotation/XmlNs.html
index 06079ee..e8e849f 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/XmlNs.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/XmlNs.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlNs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlNs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlNs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlNs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/XmlSchema.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/XmlSchema.html b/content/site/apidocs/org/apache/juneau/xml/annotation/XmlSchema.html
index ca5992c..c2a06d9 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/XmlSchema.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/XmlSchema.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XmlSchema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XmlSchema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XmlSchema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XmlSchema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/xml/annotation/package-frame.html
index dfeaeff..098edbb 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.xml.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.xml.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/xml/annotation/package-summary.html
index 6339da5..e13e8ef 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.xml.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.xml.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.xml.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.xml.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/xml/annotation/package-tree.html
index 7e6116d..c13356a 100644
--- a/content/site/apidocs/org/apache/juneau/xml/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/xml/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.xml.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.xml.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.xml.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.xml.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/package-frame.html b/content/site/apidocs/org/apache/juneau/xml/package-frame.html
index 342d142..f82888a 100644
--- a/content/site/apidocs/org/apache/juneau/xml/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/xml/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/package-summary.html b/content/site/apidocs/org/apache/juneau/xml/package-summary.html
index 5d32b29..cd9659d 100644
--- a/content/site/apidocs/org/apache/juneau/xml/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/xml/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/xml/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/xml/package-tree.html b/content/site/apidocs/org/apache/juneau/xml/package-tree.html
index 6cb298c..c10bb33 100644
--- a/content/site/apidocs/org/apache/juneau/xml/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/xml/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.xml Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.xml Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.xml Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.xml Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/overview-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/overview-frame.html b/content/site/apidocs/overview-frame.html
index d031526..ff054b2 100644
--- a/content/site/apidocs/overview-frame.html
+++ b/content/site/apidocs/overview-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Overview List (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Overview List (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/overview-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/overview-summary.html b/content/site/apidocs/overview-summary.html
index 112359c..cc0b8d3 100644
--- a/content/site/apidocs/overview-summary.html
+++ b/content/site/apidocs/overview-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Overview (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Overview (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Overview (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Overview (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -69,7 +69,7 @@
 </a></div>
 <!-- ========= END OF TOP NAVBAR ========= -->
 <div class="header">
-<h1 class="title">Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT API</h1>
+<h1 class="title">Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT API</h1>
 </div>
 <div class="header">
 <div class="subTitle">
@@ -1886,11 +1886,16 @@
             <td class='code'>
    <jk>import static</jk> org.apache.juneau.dto.html5.HtmlBuilder.*;
    
-   
    Object mytable =  
       <jsm>table</jsm>(
-         <jsm>tr</jsm>(<jsm>th</jsm>(<js>"c1"</js>),<jsm>th</jsm>(<js>"c2"</js>)),
-         <jsm>tr</jsm>(<jsm>td</jsm>(<js>"v1"</js>),<jsm>td</jsm>(<js>"v2"</js>))
+         <jsm>tr</jsm>(
+            <jsm>th</jsm>(<js>"c1"</js>),
+            <jsm>th</jsm>(<js>"c2"</js>)
+         ),
+         <jsm>tr</jsm>(
+            <jsm>td</jsm>(<js>"v1"</js>),
+            <jsm>td</jsm>(<js>"v2"</js>)
+         )
       );
 
    String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(mytable);
@@ -1908,6 +1913,48 @@
    &lt;/table&gt;
             </xt></td>
          </tr>
+         <tr>
+            <td class='code'>
+   <jk>import static</jk> org.apache.juneau.dto.html5.HtmlBuilder.*;
+      
+   Object mydiv =    
+      <jsm>div</jsm>().align(<js>"center"</js>).onmouseover(<js>"alert(\"boo!\");"</js>)
+      .children(
+         <jsm>p</jsm>(<js>"Juneau supports "</js>, <jsm>b</jsm>(<jsm>i</jsm>(<js>"mixed"</js>)), <js>" content!"</js>)
+      );
+
+   String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(mydiv);
+            </td>
+            <td class='code'><xt>
+   &lt;div <xa>align</xa>=<xs>'center'</xs> <xa>onmouseover</xa>=<xs>'alert("boo!");'</xs>&gt;
+      &lt;p&gt;<xv>Juneau supports </xv>&lt;b&gt;&lt;i&gt;<xv>mixed</xv>&lt;/i&gt;&lt;/b&gt; <xv>content!</xv>&lt;/p&gt;
+   &lt;/table&gt;
+            </xt></td>
+         </tr>
+         <tr>
+            <td class='code'>
+   <jk>import static</jk> org.apache.juneau.dto.html5.HtmlBuilder.*;
+      
+   Object myform =
+      <jsm>form</jsm>().action(<js>"/submit"</js>).method(<js>"POST"</js>)
+      .children(
+         <js>"Position (1-10000): "</js>, <jsm>input</jsm>(<js>"number"</js>).name(<js>"pos"</js>).value(1), <jsm>br</jsm>(),
+         <js>"Limit (1-10000): "</js>, <jsm>input</jsm>(<js>"number"</js>).name(<js>"limit"</js>).value(100), <jsm>br</jsm>(),
+         <jsm>button</jsm>(<js>"submit"</js>, <js>"Submit"</js>),
+         <jsm>button</jsm>(<js>"reset"</js>, <js>"Reset"</js>)
+      );    
+
+   String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(myform);
+            </td>
+            <td class='code'><xt>
+      &lt;form <xa>action</xa>=<xs>'/submit'</xs> <xa>method</xa>=<xs>'POST'</xs>&gt;
+         <xv>Position (1-10000):</xv> &lt;input <xa>name</xa>=<xs>'pos'</xs> <xa>type</xa>=<xs>'number'</xs> <xa>value</xa>=<xs>'1'</xs>&gt;&lt;br/&gt;
+         <xv>Limit (1-10000):</xv> &lt;input <xa>name</xa>=<xs>'pos'</xs> <xa>type</xa>=<xs>'number'</xs> <xa>value</xa>=<xs>'100'</xs>&gt;&lt;br/&gt;
+         &lt;button <xa>type</xa>=<xs>'submit'</xs>&gt;<xv>Submit</xv>&lt;/button&gt;
+         &lt;button <xa>type</xa>=<xs>'reset'</xs>&gt;<xv>Reset</xv>&lt;/button&gt;        
+      &lt;/form&gt;
+            </xt></td>
+         </tr>
       </table>
       <p>
          Using the HTML5 DTOs, you should be able to construct any valid HTML5 from full document bodies

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/overview-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/overview-tree.html b/content/site/apidocs/overview-tree.html
index b3554fe..8440cac 100644
--- a/content/site/apidocs/overview-tree.html
+++ b/content/site/apidocs/overview-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -245,6 +245,7 @@
 </ul>
 </li>
 <li type="circle">org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMeta</span></a></li>
+<li type="circle">org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMeta.Builder</span></a></li>
 <li type="circle">org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMetaExtended</span></a>
 <ul>
 <li type="circle">org.apache.juneau.html.<a href="org/apache/juneau/html/HtmlBeanPropertyMeta.html" title="class in org.apache.juneau.html"><span class="typeNameLink">HtmlBeanPropertyMeta</span></a></li>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/resources/juneau-doc.css
----------------------------------------------------------------------
diff --git a/content/site/apidocs/resources/juneau-doc.css b/content/site/apidocs/resources/juneau-doc.css
index 4804271..572b253 100644
--- a/content/site/apidocs/resources/juneau-doc.css
+++ b/content/site/apidocs/resources/juneau-doc.css
@@ -349,15 +349,17 @@ p.severe, p.warn, p.info {
 
 p.severe { 
 	color: DarkRed;
-	background-image: url('data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAD2klEQVRIx9WWz4tVZRjHP+feuWfuvc7kOM74IzeSk7MwypgQrBZBtBoIghtFC6F/wdCopEhdRKKbaGGLIIXIsMJAihZulBBxwFUlFqLOHceZcebeuefX+/Np8c4YcR1zFi46cODAC+/n+X7f7/M+JxIRHuVT4hE/PQ9anD15qCxeXhXvG965UbF+p7MWb+wVp81VZ+xpr+2Powe/cCvtEa1k0ezJQ6MiciLe8fKu3nXrKce99NTq4D26vYBuL9D56yqLVy5ccsbueerIiasPDZj56uBekMNrdjdq1b4+pD2P5CnSmUO0gp4aUaVCNDBEu3mTqZ++y52xB579/Ntj/wmY/vKjT+tj4/tqQxuIFmaRZA6xCqxFjAGtEaUQpcBoov51+Me3MnvlMncunDuy6+TP+1cETB3/4I3qM69889jwRvxcE0wHvAfnwubGIFrDEkBUEYBAedsObly+yOzF82++ePbyqa4U3frs3dhbd7RWjfFT1yC7C1r9U61WwR5VIMvfy2oW29iJ86zfMITL08Pnnt8adwG8sY3ekZ1byq0ZJGshRY7kGRQZkoeXPEeKAilyKAqkKKDIIc+QTpvqrWuse3L7iMvSRldMnTHjsXNIMg9WISLBHu/BOsQaMDZYpDWidFCj8lBMkYE41vaUaGbpOPD1vwBWmbGyVnidIO27SBb8F+fB2nDIKmzulQ5VFymSpUiaQE+F0sAg9XqML/Ld3QqU3lTSGZJ08LPT9L1/fFUdO/dcP1EcU6mswRVs6QJYpZH520irg2tOrvpKcDcTot5JJOvDG/R9FJhpk+Vry0pBVKG15yVwHpwJEbUmpKnI8CpHsuUAgORQqlURZ1A6x2ua97NoIk+S0X5tiOI
 a0WAc8u8skbMBoHVoLl0EmCoQXdyLcCSONE8Ry0S3RWnnbGvav9XXXw8HbO09ANaEQ7ZLCTI69IFR96B4B/U6M7fnQTjbDUg6p++2Fj4e2LZ5pK4yJC8Qa8GZALJLKowOQKODdc4g1lKqlGmLY/oG14HTXY32wpmL2iaLB+7cnESw+DxFkjaSdJBkEUkXg7J8KZqqAF0EBRHQV6XZbAO817CiV7zsfnl6/dENmwf3blm7hp7FDj7NQ7UuWIZ3S9Y5EKFUj9H1KjdmWkz+ybGGk3ceOHBcluxv/j4/f8vy4RPbN8abqhUwDpxGtAXxUIJSXEbqNW7nGX/82tLAQeCThx44ZwajUXGcGN7IruHhAXqB/t4yiNDJNAWemamMO1NcAt5uOPltVRMN4PtaVBbPawgN8YwgjC0tTYjnOnAK+OF1kdWPzP/NX8XfTeTdmoFvg/0AAAAASUVORK5CYII=');
+	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABFklEQVQ4EWPkYWEW7NLVWGUhIujCQAI48eb9nrLLN8IYpxlq7yZVM8wekCGM51xt/sMEyKGZyNGErAfDAGYeHgbRwFAGEA0DILZcSSWKGEwOwwAhV08Gmcw8BpWeSWANIM0gtrCbFwNIDh2woAu8Xr+agVNZBawBpBEEuJRUGd7u2sYAkkMHGAaAFDzqaQerA9kKAiDNMDGwABKB4QWQHMjZnCqqSMpwMzEMgPkZ5uxv926DvQMKRGwAwwDpjFy4n0HOvlOSxwAzBBQ76AAjIYFcwG9pw/Bu9w64WpAYyOCnMyYz/P3yBS4OYmAYgCJLBAfDC0ToQVHCBMoQKCIkcEB6mQ++ebdFk5fHWIaLU4kEvQyw7AwANERa0Te1fdYAAAAASUVORK5CYII=')
 }
 p.warn { 
 	color: DarkRed;
-	background-image: url('data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAADbElEQVRIx9WWQWhcVRSGv3PvzGSaTE06acVaK1ZQsRuDVrHtoiqCYKjSVUAEA12Ji+Au0kVpiXTntuJGcaFuXNWNa3HnIrjQRUHRWhJrE5NmMvPeu/fc4+LOZNJam2y68MHhPh73ff85/zn38cTMuJ+X4z5f912gpovvQq0GNY94D86DcyDbdqUEmlqmcZYYIcTPCKFjIVA7+fm9BXAOnCDiQByIZLj0FXKP9oB9J3unp9ASu3nlrKV0gpR6O1vk5C7gAXwQNietN6dcq43bux+ZeHWKZHOktIseSN8OYQjGMhgDszZm89QTdH+EzUVkRCHpPJrau2uybDfcBllDMrA0L2Mvj4suQ+pB6iHxBq797Diq87uooG/DAJ6hubEpHULTnPgEugZa5gjruJGEqc6FK6cP3VtgaEWGbsEVVC/I2MkGegOS8tqx87zyzMW8J6zgH3y6gYYLOwjkrC0lLI8jpoqpHjWNs+J7ENdAHNNvjfHG26MgDQgbuGYJWsxWXz53dAeBDM7wCFEhxgXXesET/oS4Cclo1kdp1Jp5GGIPyhX8w094Ym/hvwWSDuyAOICH4/hHzoisQLWeYbGgWW+yp9GEWIL2oFrD1VaR1uSZ8pMDx+9+0PSOWTYDs0tuFOj8DLHICdSVEXUkrUN3GTp/QOyA9XCtCdJS9xLw0r8riJFBWAhYCNPUD56S+BuEHsQAoYJYMjrSYLRZB+1meOxAdQuvvyL7HjpVfiTTdwpI+P6d4RSZeVL6wU8enpJwHWI1nKham/VqPxZLJvxV2LjaF9kESqx2gPKna4sox5ofmA4timEAh2Qz8sDhKQlLUBaQYoaniqTCp+9/jRfHex8+hYsbGa5d0IhwDX9wckp
 /X5kBvhhaFCKEAFVoWFUtuFoHyk72PnYh3oKwAaY8eaLB4897IA2zjxEU6IFvbUJiobgoja0KLITBITvn2o8ekfJ6FkhlPyrQCucbvH52FlKA5W8hdPKp16yHgasK/GPjR/SX9XPA+aFFKYGGGVdbge5qznwLXvTXDShv5k9FbwnUMjgNBajAj62jxsyWQOP0Nw6g+OrFggD4APTPhURwlu+tgLCaxXwFzW3gQUh+ZlCIiMsV9GNt7e/L+4q/PiYWmJY5c6360X8xcZsltwkwXNcLLpNTiPK//6v4B6rvGz1BOnzJAAAAAElFTkSuQmCC');
+	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAA3NCSVQICAjb4U/gAAAAY1BMVEX////ht0zds0vds0vds0vds0vds0vds0vbsUrZr0rZr0rZr0rXrUr/01H90VH7z1D5zVD3y0/1yk/zx0/wxE7swU7rwE3pvk3nvE3nu0zlukzjuUzftUvds0vZr0rXrUqBWzo+M1gKAAAAIXRSTlMAESJEVWZ3maq7zO7u//////////////////////////9zCPjNAAAACXBIWXMAAAsSAAALEgHS3X78AAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABR0RVh0Q3JlYXRpb24gVGltZQA2LzEvMTM4qUXQAAAAe0lEQVQYlV2N2RaDIAwFo6LWNhdsrV1wif//lUUownHeMmeSEHkqZkUZBVvLZSZaMVi6NJf8BB6SlroFjul2BDJg29BL8xfXGbvAlws/K7kHoaUNwYQgMPqklj4Kve4JWxy8XNKsBrGAcYm/EAXe7H7qtGI+Qool50Jnfgc2C3zDPO17AAAAAElFTkSuQmCC')
 }
 p.info { 
-	background-image: url('data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAEWklEQVRIx41WS28bVRT+zr3XY48fjZM0pamoFBolPNqiiAXbdAMItUJIrFCFZIslC8SaH8BDXbBkZ0sQIYRYIhALmiKxoUWtUF9ABUFqaFITx7Hd+jUPzrkznthp0zLy8R3PvfN993zncU14xLVwZmWOCCUQLQO0RERFvucZavB4hX9f4LF68+s31vbDoIcDfz7HQyWfc089PT+LyYk8XDeD/sC3NvAD7LS6bB3U6k0MBt4qE5VvfPX62mMJGLyUz2UqLy7N49DMBNZrfWzWB2h1A9zvhXZNOkVIaR4NkFJgojbqO9sIw6B8/cvXqvsSLJz+rDI1WSi9vHwS9aaPX//soNMPR1YRZg86uLPVh5WKP4rNla8gwHZzE54/qF7/4nT5AQLZ+VQxXxHwW+t9/LHejaYJybjy/gIWj7r4/XYXZz+4FU+RHTV/sQe417qLwB+Ur628aj1RQ81FllceAS5AAi7X4pMZKN41sdmR0QOlEGoDd+IwPzeVE299P5cQSEBF862Wvy+4mOxcLllDDEhaWY2i+4hIGY10YYrXq4pFkFQs5DJ/nXnpBZy/3BzRfARcdhqTHJEYbA/4NnpOtCtTIjhDtOsbCAP/KSN5Lqm4Xus9FJwsyBCMLLgfsiSSUGFonwXxqFXEILI47gH0OjslI0U0WSzg738H47k1Atr3Qlz+9PhYOp945yaUjmMQZ5QXu6CZ0Og0+qSWlVRo1k2j3QlGdh+90OsH2Gp6aPLc4ttXxwgMF4DhYrDmRJaKzaQ18tm0xGZJPCj2uDrv2SKKgLsM3O74CMVtDqTWZG2cQEce8DzFsbCeWOVCZB2+2dZFE0kQJC9utzwmCKGNsuBqaEaNEWj2QNbYOUUJSUTAxZcNbXYZaVyeFxSl9G9zW+A2Y8G
 GOR7tMvJkrwcRAe2SWIbQtg9LQKqhpCs2mh20Wn0MPGFlgthoWEw6AtrrgcTB6p4eNYN8Ttuq5peuKGm5G7UWN7Ag0TGxoRcx0ZgHImFqJLgMnMoYO05PGE55TyS6IB5Ud9ptDgpxalFStUngRlrC6CUyigcJSexBjnc/M6nxz0ZHCKpKDgvPD1a7vR4m3QQ/LgXa/b2XIA6+MVG6phwDh3c/P2uwWeui0wtWf/nk+TUVNUQq3+82YVQIV2O3S+6RbIxgmABWKiZxFI4eYv1dhas3mg1Supw0OzmJAj4sev06HOIqHOl1w8q++NGxMYLv3p1JiIXsyJTCEwcI53+8y8mC9y6de2btgQPnuTe/qRA5JV9NIzAGyu5st1qHVSpyDDNGND922KDgElZ/qqHR8Ko/fzhf3vfIPH72Wz7kUxVfTyB0XDipGJjJVNwSctkoFacPaBwsGtS2urj2W7MhO7/48WL1sYe+PSyIKuzCKXIKyKQzyGXSyDJoNqu5iDjPKeCK93BnsyOVv8oZU7507tm1//WvYnidLP3ARKrELy9L4+KoFu3hwhUqRSR5Lqko2bIfxn8JsXvuUrTzzQAAAABJRU5ErkJggg==');
+	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAA3NCSVQICAjb4U/gAAAAG1BMVEX///87c687c687c687c687c687c6////87c68225wXAAAACXRSTlMAEWaqu8zu///VQmatAAAACXBIWXMAAAsSAAALEgHS3X78AAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABR0RVh0Q3JlYXRpb24gVGltZQA2LzEvMTM4qUXQAAAARklEQVQImWNgYFDu6DBiAALRDiAIZGBgzAAx2gQYWDvAIIBBo6OjvaKjo4nBA8JoYeiAAhADJIKNAVcM1w43EG4F3FKYMwD5VTVUBOW+rQAAAABJRU5ErkJggg==')
 }
+p.idea { 
+	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAA3NCSVQICAjb4U/gAAAAWlBMVEX////ht0yBWzqBWzrbsUqBWzrbsUrZr0qBWzrZr0rXrUrXrUr//zP++zX/3kn/01H80FD4zFD3y0/zyE/zx07wxU7pvk3nvUzmu0zjuEzbsUrZr0rXrUrVq0nE1QREAAAAHnRSTlMAERFmd4iZu7vM3e7///////////////////////+xkXesAAAACXBIWXMAAAsSAAALEgHS3X78AAAAFHRFWHRDcmVhdGlvbiBUaW1lADYvMS8xMzipRdAAAAAcdEVYdFNvZnR3YXJlAEFkb2JlIEZpcmV3b3JrcyBDUzbovLKMAAAAf0lEQVQYlXWO2xKDIAwF8YqN4EFoq8Xw/7/ZSaAzfXGfYGdDMEYYiZlpNI2O8hFDPJm6KigHCCFT7a96ByLrFB348dGEE7B55zfgWUSUHfDOOQ/sKtY34ATgXEXMV2pF5FnXWH7pGyk/2s9sYaFYc8tSuQ/MoMHwZ/ppmXo9fQGVFAicfw5XKAAAAABJRU5ErkJggg==')}
 p.todo { 
 	color: graytext;
 }

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/serialized-form.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/serialized-form.html b/content/site/apidocs/serialized-form.html
index 53db4e3..1e7555e 100644
--- a/content/site/apidocs/serialized-form.html
+++ b/content/site/apidocs/serialized-form.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Serialized Form (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Serialized Form (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Serialized Form (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Serialized Form (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {


[16/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
Update docs and about page.

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/commit/7170135e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/tree/7170135e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/diff/7170135e

Branch: refs/heads/asf-site
Commit: 7170135e5c071f8ee5ed2fa74c03069e1396f3c2
Parents: beb5f5d
Author: JamesBognar <ja...@apache.org>
Authored: Fri Feb 10 10:59:58 2017 -0500
Committer: JamesBognar <ja...@apache.org>
Committed: Fri Feb 10 10:59:58 2017 -0500

----------------------------------------------------------------------
 content/about.html                              |   51 +-
 content/site/apidocs/allclasses-frame.html      |    3 +-
 content/site/apidocs/allclasses-noframe.html    |    3 +-
 content/site/apidocs/constant-values.html       |    4 +-
 content/site/apidocs/deprecated-list.html       |    4 +-
 content/site/apidocs/help-doc.html              |    4 +-
 content/site/apidocs/index-all.html             |   18 +-
 content/site/apidocs/index.html                 |    2 +-
 .../apidocs/org/apache/juneau/BeanContext.html  |    4 +-
 .../org/apache/juneau/BeanDictionaryList.html   |    4 +-
 .../org/apache/juneau/BeanDictionaryMap.html    |    4 +-
 .../site/apidocs/org/apache/juneau/BeanMap.html |    4 +-
 .../apidocs/org/apache/juneau/BeanMapEntry.html |    4 +-
 .../apidocs/org/apache/juneau/BeanMeta.html     |   26 +-
 .../org/apache/juneau/BeanMetaExtended.html     |    4 +-
 .../org/apache/juneau/BeanMetaFiltered.html     |    4 +-
 .../org/apache/juneau/BeanPropertyMeta.html     |   82 +-
 .../apache/juneau/BeanPropertyMetaExtended.html |    8 +-
 .../org/apache/juneau/BeanPropertyValue.html    |    4 +-
 .../juneau/BeanProxyInvocationHandler.html      |    4 +-
 .../apidocs/org/apache/juneau/BeanRegistry.html |    4 +-
 .../org/apache/juneau/BeanRuntimeException.html |    4 +-
 .../apidocs/org/apache/juneau/BeanSession.html  |    4 +-
 .../apidocs/org/apache/juneau/ClassMeta.html    |    4 +-
 .../org/apache/juneau/ClassMetaExtended.html    |    4 +-
 .../org/apache/juneau/ConfigException.html      |    4 +-
 .../site/apidocs/org/apache/juneau/Context.html |    4 +-
 .../juneau/ContextFactory.PropertyMap.html      |    4 +-
 .../org/apache/juneau/ContextFactory.html       |    4 +-
 .../site/apidocs/org/apache/juneau/CoreApi.html |    4 +-
 .../apidocs/org/apache/juneau/Delegate.html     |    4 +-
 .../org/apache/juneau/FormattedException.html   |    4 +-
 .../juneau/FormattedRuntimeException.html       |    4 +-
 .../juneau/InvalidDataConversionException.html  |    4 +-
 .../apidocs/org/apache/juneau/Lockable.html     |    4 +-
 .../org/apache/juneau/LockedException.html      |    4 +-
 .../apidocs/org/apache/juneau/MediaRange.html   |    4 +-
 .../apidocs/org/apache/juneau/MediaType.html    |    4 +-
 .../apidocs/org/apache/juneau/ObjectList.html   |    4 +-
 .../apidocs/org/apache/juneau/ObjectMap.html    |    4 +-
 .../org/apache/juneau/PropertyNamer.html        |    4 +-
 .../apache/juneau/PropertyNamerDashedLC.html    |    4 +-
 .../org/apache/juneau/PropertyNamerDefault.html |    4 +-
 .../site/apidocs/org/apache/juneau/Session.html |    4 +-
 .../apidocs/org/apache/juneau/Streamable.html   |    4 +-
 .../apidocs/org/apache/juneau/Visibility.html   |    4 +-
 .../apidocs/org/apache/juneau/Writable.html     |    4 +-
 .../org/apache/juneau/annotation/Bean.html      |    4 +-
 .../juneau/annotation/BeanConstructor.html      |    4 +-
 .../apache/juneau/annotation/BeanIgnore.html    |    4 +-
 .../org/apache/juneau/annotation/BeanParam.html |    4 +-
 .../apache/juneau/annotation/BeanProperty.html  |    4 +-
 .../org/apache/juneau/annotation/Consumes.html  |    4 +-
 .../apache/juneau/annotation/NameProperty.html  |    4 +-
 .../org/apache/juneau/annotation/Null.html      |    4 +-
 .../apache/juneau/annotation/Overrideable.html  |    4 +-
 .../juneau/annotation/ParentProperty.html       |    4 +-
 .../org/apache/juneau/annotation/Pojo.html      |    4 +-
 .../org/apache/juneau/annotation/Produces.html  |    4 +-
 .../apache/juneau/annotation/Remoteable.html    |    4 +-
 .../apache/juneau/annotation/ThreadSafe.html    |    4 +-
 .../org/apache/juneau/annotation/URI.html       |    4 +-
 .../apache/juneau/annotation/package-frame.html |    2 +-
 .../juneau/annotation/package-summary.html      |    4 +-
 .../apache/juneau/annotation/package-tree.html  |    4 +-
 .../org/apache/juneau/csv/CsvSerializer.html    |    4 +-
 .../org/apache/juneau/csv/package-frame.html    |    2 +-
 .../org/apache/juneau/csv/package-summary.html  |    4 +-
 .../org/apache/juneau/csv/package-tree.html     |    4 +-
 .../apidocs/org/apache/juneau/dto/Link.html     |    4 +-
 .../org/apache/juneau/dto/ResultSetList.html    |    4 +-
 .../org/apache/juneau/dto/atom/AtomBuilder.html |    4 +-
 .../org/apache/juneau/dto/atom/Category.html    |    4 +-
 .../org/apache/juneau/dto/atom/Common.html      |    4 +-
 .../org/apache/juneau/dto/atom/CommonEntry.html |    4 +-
 .../org/apache/juneau/dto/atom/Content.html     |    4 +-
 .../org/apache/juneau/dto/atom/Entry.html       |    4 +-
 .../org/apache/juneau/dto/atom/Feed.html        |    4 +-
 .../org/apache/juneau/dto/atom/Generator.html   |    4 +-
 .../org/apache/juneau/dto/atom/Icon.html        |    4 +-
 .../apidocs/org/apache/juneau/dto/atom/Id.html  |    4 +-
 .../org/apache/juneau/dto/atom/Link.html        |    4 +-
 .../org/apache/juneau/dto/atom/Logo.html        |    4 +-
 .../org/apache/juneau/dto/atom/Person.html      |    4 +-
 .../org/apache/juneau/dto/atom/Source.html      |    4 +-
 .../org/apache/juneau/dto/atom/Text.html        |    4 +-
 .../apache/juneau/dto/atom/package-frame.html   |    2 +-
 .../apache/juneau/dto/atom/package-summary.html |    4 +-
 .../apache/juneau/dto/atom/package-tree.html    |    4 +-
 .../org/apache/juneau/dto/cognos/Column.html    |    4 +-
 .../apache/juneau/dto/cognos/DataSet.Row.html   |    4 +-
 .../org/apache/juneau/dto/cognos/DataSet.html   |    4 +-
 .../apache/juneau/dto/cognos/package-frame.html |    2 +-
 .../juneau/dto/cognos/package-summary.html      |    4 +-
 .../apache/juneau/dto/cognos/package-tree.html  |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/A.html  |    4 +-
 .../org/apache/juneau/dto/html5/Abbr.html       |    4 +-
 .../org/apache/juneau/dto/html5/Address.html    |    4 +-
 .../org/apache/juneau/dto/html5/Area.html       |    4 +-
 .../org/apache/juneau/dto/html5/Article.html    |    4 +-
 .../org/apache/juneau/dto/html5/Aside.html      |    4 +-
 .../org/apache/juneau/dto/html5/Audio.html      |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/B.html  |    4 +-
 .../org/apache/juneau/dto/html5/Base.html       |    4 +-
 .../org/apache/juneau/dto/html5/Bdi.html        |    4 +-
 .../org/apache/juneau/dto/html5/Bdo.html        |    4 +-
 .../org/apache/juneau/dto/html5/Blockquote.html |    4 +-
 .../org/apache/juneau/dto/html5/Body.html       |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Br.html |    4 +-
 .../org/apache/juneau/dto/html5/Button.html     |    4 +-
 .../org/apache/juneau/dto/html5/Canvas.html     |    4 +-
 .../org/apache/juneau/dto/html5/Caption.html    |    4 +-
 .../org/apache/juneau/dto/html5/Cite.html       |    4 +-
 .../org/apache/juneau/dto/html5/Code.html       |    4 +-
 .../org/apache/juneau/dto/html5/Col.html        |    4 +-
 .../org/apache/juneau/dto/html5/Colgroup.html   |    4 +-
 .../org/apache/juneau/dto/html5/Data.html       |    4 +-
 .../org/apache/juneau/dto/html5/Datalist.html   |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Dd.html |    4 +-
 .../org/apache/juneau/dto/html5/Del.html        |    4 +-
 .../org/apache/juneau/dto/html5/Dfn.html        |    4 +-
 .../org/apache/juneau/dto/html5/Div.html        |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Dl.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Dt.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Em.html |    4 +-
 .../org/apache/juneau/dto/html5/Embed.html      |    4 +-
 .../org/apache/juneau/dto/html5/Fieldset.html   |    4 +-
 .../org/apache/juneau/dto/html5/Figcaption.html |    4 +-
 .../org/apache/juneau/dto/html5/Figure.html     |    4 +-
 .../org/apache/juneau/dto/html5/Footer.html     |    4 +-
 .../org/apache/juneau/dto/html5/Form.html       |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/H1.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/H2.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/H3.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/H4.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/H5.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/H6.html |    4 +-
 .../org/apache/juneau/dto/html5/Head.html       |    4 +-
 .../org/apache/juneau/dto/html5/Header.html     |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Hr.html |    4 +-
 .../org/apache/juneau/dto/html5/Html.html       |    4 +-
 .../juneau/dto/html5/HtmlBeanDictionary.html    |    4 +-
 .../apache/juneau/dto/html5/HtmlBuilder.html    |    4 +-
 .../apache/juneau/dto/html5/HtmlElement.html    |    4 +-
 .../juneau/dto/html5/HtmlElementContainer.html  |    4 +-
 .../juneau/dto/html5/HtmlElementEmpty.html      |    4 +-
 .../juneau/dto/html5/HtmlElementMixed.html      |    4 +-
 .../juneau/dto/html5/HtmlElementText.html       |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/I.html  |    4 +-
 .../org/apache/juneau/dto/html5/Iframe.html     |    4 +-
 .../org/apache/juneau/dto/html5/Img.html        |    4 +-
 .../org/apache/juneau/dto/html5/Input.html      |    4 +-
 .../org/apache/juneau/dto/html5/Ins.html        |    4 +-
 .../org/apache/juneau/dto/html5/Kbd.html        |    4 +-
 .../org/apache/juneau/dto/html5/Keygen.html     |    4 +-
 .../org/apache/juneau/dto/html5/Label.html      |    4 +-
 .../org/apache/juneau/dto/html5/Legend.html     |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Li.html |    4 +-
 .../org/apache/juneau/dto/html5/Link.html       |    4 +-
 .../org/apache/juneau/dto/html5/Main.html       |    4 +-
 .../org/apache/juneau/dto/html5/Map.html        |    4 +-
 .../org/apache/juneau/dto/html5/Mark.html       |    4 +-
 .../org/apache/juneau/dto/html5/Meta.html       |    4 +-
 .../org/apache/juneau/dto/html5/Meter.html      |    4 +-
 .../org/apache/juneau/dto/html5/Nav.html        |    4 +-
 .../org/apache/juneau/dto/html5/Noscript.html   |    4 +-
 .../org/apache/juneau/dto/html5/Object2.html    |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Ol.html |    4 +-
 .../org/apache/juneau/dto/html5/Optgroup.html   |    4 +-
 .../org/apache/juneau/dto/html5/Option.html     |    4 +-
 .../org/apache/juneau/dto/html5/Output.html     |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/P.html  |    4 +-
 .../org/apache/juneau/dto/html5/Param.html      |    4 +-
 .../org/apache/juneau/dto/html5/Pre.html        |    4 +-
 .../org/apache/juneau/dto/html5/Progress.html   |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Q.html  |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Rb.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Rp.html |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Rt.html |    4 +-
 .../org/apache/juneau/dto/html5/Rtc.html        |    4 +-
 .../org/apache/juneau/dto/html5/Ruby.html       |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/S.html  |    4 +-
 .../org/apache/juneau/dto/html5/Samp.html       |    4 +-
 .../org/apache/juneau/dto/html5/Script.html     |    4 +-
 .../org/apache/juneau/dto/html5/Section.html    |    4 +-
 .../org/apache/juneau/dto/html5/Select.html     |    4 +-
 .../org/apache/juneau/dto/html5/Small.html      |    4 +-
 .../org/apache/juneau/dto/html5/Source.html     |    4 +-
 .../org/apache/juneau/dto/html5/Span.html       |    4 +-
 .../org/apache/juneau/dto/html5/Strong.html     |    4 +-
 .../org/apache/juneau/dto/html5/Style.html      |    4 +-
 .../org/apache/juneau/dto/html5/Sub.html        |    4 +-
 .../org/apache/juneau/dto/html5/Sup.html        |    4 +-
 .../org/apache/juneau/dto/html5/Table.html      |    4 +-
 .../org/apache/juneau/dto/html5/Tbody.html      |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Td.html |    4 +-
 .../org/apache/juneau/dto/html5/Template.html   |    4 +-
 .../org/apache/juneau/dto/html5/Textarea.html   |    4 +-
 .../org/apache/juneau/dto/html5/Tfoot.html      |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Th.html |    4 +-
 .../org/apache/juneau/dto/html5/Thead.html      |    4 +-
 .../org/apache/juneau/dto/html5/Time.html       |    4 +-
 .../org/apache/juneau/dto/html5/Title.html      |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Tr.html |    4 +-
 .../org/apache/juneau/dto/html5/Track.html      |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/U.html  |    4 +-
 .../apidocs/org/apache/juneau/dto/html5/Ul.html |    4 +-
 .../org/apache/juneau/dto/html5/Var.html        |    4 +-
 .../org/apache/juneau/dto/html5/Video.html      |    4 +-
 .../org/apache/juneau/dto/html5/Wbr.html        |    4 +-
 .../apache/juneau/dto/html5/package-frame.html  |    2 +-
 .../juneau/dto/html5/package-summary.html       |   50 +-
 .../apache/juneau/dto/html5/package-tree.html   |    4 +-
 .../apache/juneau/dto/jsonschema/JsonType.html  |    4 +-
 .../juneau/dto/jsonschema/JsonTypeArray.html    |    4 +-
 .../Schema.BooleanOrSchemaArraySwap.html        |    4 +-
 .../jsonschema/Schema.BooleanOrSchemaSwap.html  |    4 +-
 .../Schema.JsonTypeOrJsonTypeArraySwap.html     |    4 +-
 .../Schema.SchemaOrSchemaArraySwap.html         |    4 +-
 .../apache/juneau/dto/jsonschema/Schema.html    |    4 +-
 .../juneau/dto/jsonschema/SchemaArray.html      |    4 +-
 .../apache/juneau/dto/jsonschema/SchemaMap.html |    4 +-
 .../juneau/dto/jsonschema/SchemaProperty.html   |    4 +-
 .../jsonschema/SchemaPropertySimpleArray.html   |    4 +-
 .../apache/juneau/dto/jsonschema/SchemaRef.html |    4 +-
 .../juneau/dto/jsonschema/package-frame.html    |    2 +-
 .../juneau/dto/jsonschema/package-summary.html  |    4 +-
 .../juneau/dto/jsonschema/package-tree.html     |    4 +-
 .../org/apache/juneau/dto/package-frame.html    |    2 +-
 .../org/apache/juneau/dto/package-summary.html  |    4 +-
 .../org/apache/juneau/dto/package-tree.html     |    4 +-
 .../org/apache/juneau/dto/swagger/Contact.html  |    4 +-
 .../dto/swagger/ExternalDocumentation.html      |    4 +-
 .../apache/juneau/dto/swagger/HeaderInfo.html   |    4 +-
 .../org/apache/juneau/dto/swagger/Info.html     |    4 +-
 .../org/apache/juneau/dto/swagger/Items.html    |    4 +-
 .../org/apache/juneau/dto/swagger/License.html  |    4 +-
 .../apache/juneau/dto/swagger/Operation.html    |    4 +-
 .../juneau/dto/swagger/ParameterInfo.html       |    4 +-
 .../apache/juneau/dto/swagger/ResponseInfo.html |    4 +-
 .../apache/juneau/dto/swagger/SchemaInfo.html   |    4 +-
 .../juneau/dto/swagger/SecurityScheme.html      |    4 +-
 .../org/apache/juneau/dto/swagger/Swagger.html  |    4 +-
 .../org/apache/juneau/dto/swagger/Tag.html      |    4 +-
 .../org/apache/juneau/dto/swagger/Xml.html      |    4 +-
 .../juneau/dto/swagger/package-frame.html       |    2 +-
 .../juneau/dto/swagger/package-summary.html     |    4 +-
 .../apache/juneau/dto/swagger/package-tree.html |    4 +-
 .../org/apache/juneau/encoders/Encoder.html     |    4 +-
 .../apache/juneau/encoders/EncoderGroup.html    |    4 +-
 .../apache/juneau/encoders/EncoderMatch.html    |    4 +-
 .../org/apache/juneau/encoders/GzipEncoder.html |    4 +-
 .../apache/juneau/encoders/IdentityEncoder.html |    4 +-
 .../apache/juneau/encoders/package-frame.html   |    2 +-
 .../apache/juneau/encoders/package-summary.html |    4 +-
 .../apache/juneau/encoders/package-tree.html    |    4 +-
 .../juneau/html/HtmlBeanPropertyMeta.html       |    4 +-
 .../org/apache/juneau/html/HtmlClassMeta.html   |    4 +-
 .../apache/juneau/html/HtmlDocSerializer.html   |    4 +-
 .../juneau/html/HtmlDocSerializerContext.html   |    4 +-
 .../juneau/html/HtmlDocSerializerSession.html   |    4 +-
 .../org/apache/juneau/html/HtmlLink.html        |    4 +-
 .../org/apache/juneau/html/HtmlParser.html      |    4 +-
 .../apache/juneau/html/HtmlParserContext.html   |    4 +-
 .../apache/juneau/html/HtmlParserSession.html   |    4 +-
 .../juneau/html/HtmlSchemaDocSerializer.html    |    4 +-
 .../apache/juneau/html/HtmlSerializer.Sq.html   |    4 +-
 .../juneau/html/HtmlSerializer.SqReadable.html  |    4 +-
 .../org/apache/juneau/html/HtmlSerializer.html  |    4 +-
 .../juneau/html/HtmlSerializerContext.html      |    4 +-
 .../juneau/html/HtmlSerializerSession.html      |    4 +-
 .../juneau/html/HtmlStrippedDocSerializer.html  |    4 +-
 .../org/apache/juneau/html/HtmlWriter.html      |    4 +-
 .../apache/juneau/html/SimpleHtmlWriter.html    |    4 +-
 .../org/apache/juneau/html/annotation/Html.html |    4 +-
 .../juneau/html/annotation/package-frame.html   |    2 +-
 .../juneau/html/annotation/package-summary.html |    4 +-
 .../juneau/html/annotation/package-tree.html    |    4 +-
 .../org/apache/juneau/html/package-frame.html   |    2 +-
 .../org/apache/juneau/html/package-summary.html |    4 +-
 .../org/apache/juneau/html/package-tree.html    |    4 +-
 .../org/apache/juneau/ini/ConfigFile.html       |    4 +-
 .../org/apache/juneau/ini/ConfigFileFormat.html |    4 +-
 .../org/apache/juneau/ini/ConfigFileImpl.html   |    4 +-
 .../apache/juneau/ini/ConfigFileListener.html   |    4 +-
 .../apache/juneau/ini/ConfigFileWrapped.html    |    4 +-
 .../org/apache/juneau/ini/ConfigMgr.html        |    4 +-
 .../org/apache/juneau/ini/ConfigUtils.html      |    4 +-
 .../apidocs/org/apache/juneau/ini/Encoder.html  |    4 +-
 .../org/apache/juneau/ini/EntryListener.html    |    4 +-
 .../apidocs/org/apache/juneau/ini/Section.html  |    4 +-
 .../org/apache/juneau/ini/SectionListener.html  |    4 +-
 .../org/apache/juneau/ini/XorEncoder.html       |    4 +-
 .../org/apache/juneau/ini/package-frame.html    |    2 +-
 .../org/apache/juneau/ini/package-summary.html  |    4 +-
 .../org/apache/juneau/ini/package-tree.html     |    4 +-
 .../org/apache/juneau/internal/ArrayUtils.html  |    4 +-
 .../org/apache/juneau/internal/AsciiSet.html    |    4 +-
 .../apache/juneau/internal/ByteArrayCache.html  |    4 +-
 .../juneau/internal/ByteArrayInOutStream.html   |    4 +-
 .../juneau/internal/CharSequenceReader.html     |    4 +-
 .../internal/ClassUtils.ClassComparator.html    |    4 +-
 .../org/apache/juneau/internal/ClassUtils.html  |    4 +-
 .../apache/juneau/internal/CollectionUtils.html |    4 +-
 .../apache/juneau/internal/DelegateBeanMap.html |    4 +-
 .../apache/juneau/internal/DelegateList.html    |    4 +-
 .../org/apache/juneau/internal/DelegateMap.html |    4 +-
 .../org/apache/juneau/internal/FileUtils.html   |    4 +-
 .../org/apache/juneau/internal/FilteredMap.html |    4 +-
 .../org/apache/juneau/internal/HashCode.html    |    4 +-
 .../org/apache/juneau/internal/IOUtils.html     |    4 +-
 .../apache/juneau/internal/IdentityList.html    |    4 +-
 .../apache/juneau/internal/JuneauLogger.html    |    4 +-
 .../org/apache/juneau/internal/KeywordSet.html  |    4 +-
 .../apache/juneau/internal/MultiIterable.html   |    4 +-
 .../org/apache/juneau/internal/MultiSet.html    |    4 +-
 .../apache/juneau/internal/ReflectionUtils.html |    4 +-
 .../org/apache/juneau/internal/SimpleMap.html   |    4 +-
 .../juneau/internal/StringBuilderWriter.html    |    4 +-
 .../org/apache/juneau/internal/StringUtils.html |    4 +-
 .../apache/juneau/internal/TeeOutputStream.html |    4 +-
 .../org/apache/juneau/internal/TeeWriter.html   |    4 +-
 .../apache/juneau/internal/ThrowableUtils.html  |    4 +-
 .../org/apache/juneau/internal/Utils.html       |    4 +-
 .../org/apache/juneau/internal/Version.html     |    4 +-
 .../apache/juneau/internal/VersionRange.html    |    4 +-
 .../apache/juneau/internal/package-frame.html   |    2 +-
 .../apache/juneau/internal/package-summary.html |    4 +-
 .../apache/juneau/internal/package-tree.html    |    4 +-
 .../org/apache/juneau/jena/Constants.html       |    4 +-
 .../org/apache/juneau/jena/RdfBeanMeta.html     |    4 +-
 .../apache/juneau/jena/RdfBeanPropertyMeta.html |    4 +-
 .../org/apache/juneau/jena/RdfClassMeta.html    |    4 +-
 .../apache/juneau/jena/RdfCollectionFormat.html |    4 +-
 .../apache/juneau/jena/RdfCommonContext.html    |    4 +-
 .../org/apache/juneau/jena/RdfParser.N3.html    |    4 +-
 .../apache/juneau/jena/RdfParser.NTriple.html   |    4 +-
 .../apache/juneau/jena/RdfParser.Turtle.html    |    4 +-
 .../org/apache/juneau/jena/RdfParser.Xml.html   |    4 +-
 .../org/apache/juneau/jena/RdfParser.html       |    4 +-
 .../apache/juneau/jena/RdfParserContext.html    |    4 +-
 .../apache/juneau/jena/RdfParserSession.html    |    4 +-
 .../apache/juneau/jena/RdfSerializer.N3.html    |    4 +-
 .../juneau/jena/RdfSerializer.NTriple.html      |    4 +-
 .../juneau/jena/RdfSerializer.Turtle.html       |    4 +-
 .../apache/juneau/jena/RdfSerializer.Xml.html   |    4 +-
 .../juneau/jena/RdfSerializer.XmlAbbrev.html    |    4 +-
 .../org/apache/juneau/jena/RdfSerializer.html   |    4 +-
 .../juneau/jena/RdfSerializerContext.html       |    4 +-
 .../juneau/jena/RdfSerializerSession.html       |    4 +-
 .../org/apache/juneau/jena/RdfUtils.html        |    4 +-
 .../org/apache/juneau/jena/annotation/Rdf.html  |    4 +-
 .../apache/juneau/jena/annotation/RdfNs.html    |    4 +-
 .../juneau/jena/annotation/RdfSchema.html       |    4 +-
 .../juneau/jena/annotation/package-frame.html   |    2 +-
 .../juneau/jena/annotation/package-summary.html |    4 +-
 .../juneau/jena/annotation/package-tree.html    |    4 +-
 .../org/apache/juneau/jena/package-frame.html   |    2 +-
 .../org/apache/juneau/jena/package-summary.html |    4 +-
 .../org/apache/juneau/jena/package-tree.html    |    4 +-
 .../juneau/jso/JavaSerializedObjectParser.html  |    4 +-
 .../jso/JavaSerializedObjectSerializer.html     |    4 +-
 .../org/apache/juneau/jso/package-frame.html    |    2 +-
 .../org/apache/juneau/jso/package-summary.html  |    4 +-
 .../org/apache/juneau/jso/package-tree.html     |    4 +-
 .../org/apache/juneau/json/JsonClassMeta.html   |    4 +-
 .../org/apache/juneau/json/JsonParser.html      |    4 +-
 .../apache/juneau/json/JsonParserContext.html   |    4 +-
 .../apache/juneau/json/JsonParserSession.html   |    4 +-
 .../juneau/json/JsonSchemaSerializer.html       |    4 +-
 .../juneau/json/JsonSerializer.Readable.html    |    4 +-
 .../juneau/json/JsonSerializer.Simple.html      |    4 +-
 .../json/JsonSerializer.SimpleReadable.html     |    4 +-
 .../json/JsonSerializer.SimpleReadableSafe.html |    4 +-
 .../org/apache/juneau/json/JsonSerializer.html  |    4 +-
 .../juneau/json/JsonSerializerContext.html      |    4 +-
 .../juneau/json/JsonSerializerSession.html      |    4 +-
 .../org/apache/juneau/json/JsonWriter.html      |    4 +-
 .../org/apache/juneau/json/annotation/Json.html |    4 +-
 .../juneau/json/annotation/package-frame.html   |    2 +-
 .../juneau/json/annotation/package-summary.html |    4 +-
 .../juneau/json/annotation/package-tree.html    |    4 +-
 .../org/apache/juneau/json/package-frame.html   |    2 +-
 .../org/apache/juneau/json/package-summary.html |    4 +-
 .../org/apache/juneau/json/package-tree.html    |    4 +-
 .../juneau/microservice/Microservice.html       |    4 +-
 .../apache/juneau/microservice/Resource.html    |    4 +-
 .../juneau/microservice/ResourceGroup.html      |    4 +-
 .../juneau/microservice/ResourceJena.html       |    4 +-
 .../juneau/microservice/RestMicroservice.html   |    4 +-
 .../juneau/microservice/package-frame.html      |    2 +-
 .../juneau/microservice/package-summary.html    |    4 +-
 .../juneau/microservice/package-tree.html       |    4 +-
 .../microservice/resources/ConfigResource.html  |    4 +-
 .../DirectoryResource.FileResource.html         |    4 +-
 .../resources/DirectoryResource.html            |    4 +-
 .../resources/LogEntryFormatter.html            |    4 +-
 .../microservice/resources/LogParser.Entry.html |    4 +-
 .../microservice/resources/LogParser.html       |    4 +-
 .../resources/LogsResource.FileResource.html    |    4 +-
 .../microservice/resources/LogsResource.html    |    4 +-
 .../resources/SampleRootResource.html           |    4 +-
 .../resources/ShutdownResource.html             |    4 +-
 .../microservice/resources/package-frame.html   |    2 +-
 .../microservice/resources/package-summary.html |    4 +-
 .../microservice/resources/package-tree.html    |    4 +-
 .../juneau/msgpack/MsgPackInputStream.html      |    4 +-
 .../juneau/msgpack/MsgPackOutputStream.html     |    4 +-
 .../apache/juneau/msgpack/MsgPackParser.html    |    4 +-
 .../juneau/msgpack/MsgPackParserContext.html    |    4 +-
 .../juneau/msgpack/MsgPackParserSession.html    |    4 +-
 .../juneau/msgpack/MsgPackSerializer.html       |    4 +-
 .../msgpack/MsgPackSerializerContext.html       |    4 +-
 .../msgpack/MsgPackSerializerSession.html       |    4 +-
 .../apache/juneau/msgpack/package-frame.html    |    2 +-
 .../apache/juneau/msgpack/package-summary.html  |    4 +-
 .../org/apache/juneau/msgpack/package-tree.html |    4 +-
 .../org/apache/juneau/package-frame.html        |    3 +-
 .../org/apache/juneau/package-summary.html      |   44 +-
 .../apidocs/org/apache/juneau/package-tree.html |    5 +-
 .../apache/juneau/parser/InputStreamParser.html |    4 +-
 .../apache/juneau/parser/ParseException.html    |    4 +-
 .../org/apache/juneau/parser/Parser.html        |    4 +-
 .../org/apache/juneau/parser/ParserContext.html |    4 +-
 .../org/apache/juneau/parser/ParserGroup.html   |    4 +-
 .../apache/juneau/parser/ParserListener.html    |    4 +-
 .../org/apache/juneau/parser/ParserMatch.html   |    4 +-
 .../org/apache/juneau/parser/ParserReader.html  |    4 +-
 .../org/apache/juneau/parser/ParserSession.html |    4 +-
 .../org/apache/juneau/parser/ReaderParser.html  |    4 +-
 .../org/apache/juneau/parser/package-frame.html |    2 +-
 .../apache/juneau/parser/package-summary.html   |    4 +-
 .../org/apache/juneau/parser/package-tree.html  |    4 +-
 .../juneau/plaintext/PlainTextParser.html       |    4 +-
 .../juneau/plaintext/PlainTextSerializer.html   |    4 +-
 .../apache/juneau/plaintext/package-frame.html  |    2 +-
 .../juneau/plaintext/package-summary.html       |    4 +-
 .../apache/juneau/plaintext/package-tree.html   |    4 +-
 .../juneau/rest/ClientVersionMatcher.html       |    4 +-
 .../org/apache/juneau/rest/ReaderResource.html  |    4 +-
 .../org/apache/juneau/rest/Redirect.html        |    4 +-
 .../org/apache/juneau/rest/ResponseHandler.html |    4 +-
 .../org/apache/juneau/rest/RestConverter.html   |    4 +-
 .../org/apache/juneau/rest/RestException.html   |    4 +-
 .../org/apache/juneau/rest/RestGuard.html       |    4 +-
 .../org/apache/juneau/rest/RestMatcher.html     |    4 +-
 .../juneau/rest/RestMatcherReflecting.html      |    4 +-
 .../org/apache/juneau/rest/RestRequest.html     |    4 +-
 .../org/apache/juneau/rest/RestResponse.html    |    4 +-
 .../org/apache/juneau/rest/RestServlet.html     |    4 +-
 .../apache/juneau/rest/RestServletContext.html  |    4 +-
 .../apache/juneau/rest/RestServletDefault.html  |    4 +-
 .../juneau/rest/RestServletException.html       |    4 +-
 .../juneau/rest/RestServletGroupDefault.html    |    4 +-
 .../org/apache/juneau/rest/RestUtils.html       |    4 +-
 .../org/apache/juneau/rest/StreamResource.html  |    4 +-
 .../org/apache/juneau/rest/UrlPathPattern.html  |    4 +-
 .../org/apache/juneau/rest/annotation/Body.html |    4 +-
 .../apache/juneau/rest/annotation/FormData.html |    4 +-
 .../juneau/rest/annotation/HasFormData.html     |    4 +-
 .../apache/juneau/rest/annotation/HasQuery.html |    4 +-
 .../apache/juneau/rest/annotation/Header.html   |    4 +-
 .../apache/juneau/rest/annotation/Inherit.html  |    4 +-
 .../apache/juneau/rest/annotation/Messages.html |    4 +-
 .../apache/juneau/rest/annotation/Method.html   |    4 +-
 .../juneau/rest/annotation/Parameter.html       |    4 +-
 .../org/apache/juneau/rest/annotation/Path.html |    4 +-
 .../juneau/rest/annotation/PathRemainder.html   |    4 +-
 .../juneau/rest/annotation/Properties.html      |    4 +-
 .../apache/juneau/rest/annotation/Property.html |    4 +-
 .../apache/juneau/rest/annotation/Query.html    |    4 +-
 .../apache/juneau/rest/annotation/Response.html |    4 +-
 .../juneau/rest/annotation/RestMethod.html      |    4 +-
 .../juneau/rest/annotation/RestResource.html    |    4 +-
 .../juneau/rest/annotation/package-frame.html   |    2 +-
 .../juneau/rest/annotation/package-summary.html |    4 +-
 .../juneau/rest/annotation/package-tree.html    |    4 +-
 .../juneau/rest/client/AllowAllRedirects.html   |    4 +-
 .../apache/juneau/rest/client/DateHeader.html   |    4 +-
 .../apache/juneau/rest/client/HttpMethod.html   |    4 +-
 .../juneau/rest/client/NameValuePairs.html      |    4 +-
 .../juneau/rest/client/ResponsePattern.html     |    4 +-
 .../org/apache/juneau/rest/client/RestCall.html |    4 +-
 .../juneau/rest/client/RestCallException.html   |    4 +-
 .../juneau/rest/client/RestCallInterceptor.html |    4 +-
 .../juneau/rest/client/RestCallLogger.html      |    4 +-
 .../apache/juneau/rest/client/RestClient.html   |    4 +-
 .../juneau/rest/client/RestRequestEntity.html   |    4 +-
 .../org/apache/juneau/rest/client/RetryOn.html  |    4 +-
 .../rest/client/SSLOpts.CertValidate.html       |    4 +-
 .../juneau/rest/client/SSLOpts.HostVerify.html  |    4 +-
 .../org/apache/juneau/rest/client/SSLOpts.html  |    4 +-
 .../rest/client/SerializedNameValuePair.html    |    4 +-
 .../rest/client/SimpleX509TrustManager.html     |    4 +-
 .../juneau/rest/client/package-frame.html       |    2 +-
 .../juneau/rest/client/package-summary.html     |    4 +-
 .../apache/juneau/rest/client/package-tree.html |    4 +-
 .../juneau/rest/converters/Introspectable.html  |    4 +-
 .../juneau/rest/converters/Queryable.html       |    4 +-
 .../juneau/rest/converters/Traversable.html     |    4 +-
 .../juneau/rest/converters/package-frame.html   |    2 +-
 .../juneau/rest/converters/package-summary.html |    4 +-
 .../juneau/rest/converters/package-tree.html    |    4 +-
 .../apache/juneau/rest/jaxrs/BaseProvider.html  |    4 +-
 .../juneau/rest/jaxrs/DefaultProvider.html      |    4 +-
 .../juneau/rest/jaxrs/JuneauProvider.html       |    4 +-
 .../apache/juneau/rest/jaxrs/package-frame.html |    2 +-
 .../juneau/rest/jaxrs/package-summary.html      |    4 +-
 .../apache/juneau/rest/jaxrs/package-tree.html  |    4 +-
 .../rest/jaxrs/rdf/DefaultJenaProvider.html     |    4 +-
 .../juneau/rest/jaxrs/rdf/package-frame.html    |    2 +-
 .../juneau/rest/jaxrs/rdf/package-summary.html  |    4 +-
 .../juneau/rest/jaxrs/rdf/package-tree.html     |    4 +-
 .../rest/jena/RestServletJenaDefault.html       |    4 +-
 .../rest/jena/RestServletJenaGroupDefault.html  |    4 +-
 .../apache/juneau/rest/jena/package-frame.html  |    2 +-
 .../juneau/rest/jena/package-summary.html       |    4 +-
 .../apache/juneau/rest/jena/package-tree.html   |    4 +-
 ...BeanDescription.BeanPropertyDescription.html |    4 +-
 .../juneau/rest/labels/BeanDescription.html     |    4 +-
 .../rest/labels/ChildResourceDescriptions.html  |    4 +-
 .../juneau/rest/labels/NameDescription.html     |    4 +-
 .../juneau/rest/labels/ResourceDescription.html |    4 +-
 .../apache/juneau/rest/labels/ResourceLink.html |    4 +-
 .../juneau/rest/labels/package-frame.html       |    2 +-
 .../juneau/rest/labels/package-summary.html     |    4 +-
 .../apache/juneau/rest/labels/package-tree.html |    4 +-
 .../rest/matchers/MultipartFormDataMatcher.html |    4 +-
 .../rest/matchers/UrlEncodedFormMatcher.html    |    4 +-
 .../juneau/rest/matchers/package-frame.html     |    2 +-
 .../juneau/rest/matchers/package-summary.html   |    4 +-
 .../juneau/rest/matchers/package-tree.html      |    4 +-
 .../org/apache/juneau/rest/package-frame.html   |    2 +-
 .../org/apache/juneau/rest/package-summary.html |    4 +-
 .../org/apache/juneau/rest/package-tree.html    |    4 +-
 .../remoteable/RemoteableServiceProperties.html |    4 +-
 .../rest/remoteable/RemoteableServlet.html      |    4 +-
 .../juneau/rest/remoteable/package-frame.html   |    2 +-
 .../juneau/rest/remoteable/package-summary.html |    4 +-
 .../juneau/rest/remoteable/package-tree.html    |    4 +-
 .../juneau/rest/response/DefaultHandler.html    |    4 +-
 .../rest/response/InputStreamHandler.html       |    4 +-
 .../juneau/rest/response/ReaderHandler.html     |    4 +-
 .../juneau/rest/response/RedirectHandler.html   |    4 +-
 .../juneau/rest/response/StreamableHandler.html |    4 +-
 .../juneau/rest/response/WritableHandler.html   |    4 +-
 .../response/ZipFileListResponseHandler.html    |    4 +-
 .../juneau/rest/response/package-frame.html     |    2 +-
 .../juneau/rest/response/package-summary.html   |    4 +-
 .../juneau/rest/response/package-tree.html      |    4 +-
 .../juneau/rest/vars/LocalizationVar.html       |    4 +-
 .../org/apache/juneau/rest/vars/RequestVar.html |    4 +-
 .../rest/vars/SerializedRequestAttrVar.html     |    4 +-
 .../juneau/rest/vars/ServletInitParamVar.html   |    4 +-
 .../apache/juneau/rest/vars/UrlEncodeVar.html   |    4 +-
 .../apache/juneau/rest/vars/package-frame.html  |    2 +-
 .../juneau/rest/vars/package-summary.html       |    4 +-
 .../apache/juneau/rest/vars/package-tree.html   |    4 +-
 .../serializer/OutputStreamSerializer.html      |    4 +-
 .../juneau/serializer/SerializeException.html   |    4 +-
 .../apache/juneau/serializer/Serializer.html    |    4 +-
 .../juneau/serializer/SerializerContext.html    |    4 +-
 .../juneau/serializer/SerializerGroup.html      |    4 +-
 .../juneau/serializer/SerializerMatch.html      |    4 +-
 .../juneau/serializer/SerializerSession.html    |    4 +-
 .../juneau/serializer/SerializerWriter.html     |    4 +-
 .../apache/juneau/serializer/StringObject.html  |    4 +-
 .../juneau/serializer/WriterSerializer.html     |    4 +-
 .../apache/juneau/serializer/package-frame.html |    2 +-
 .../juneau/serializer/package-summary.html      |    4 +-
 .../apache/juneau/serializer/package-tree.html  |    4 +-
 .../apache/juneau/soap/SoapXmlSerializer.html   |    4 +-
 .../juneau/soap/SoapXmlSerializerContext.html   |    4 +-
 .../org/apache/juneau/soap/package-frame.html   |    2 +-
 .../org/apache/juneau/soap/package-summary.html |    4 +-
 .../org/apache/juneau/soap/package-tree.html    |    4 +-
 .../org/apache/juneau/svl/DefaultingVar.html    |    4 +-
 .../apidocs/org/apache/juneau/svl/MapVar.html   |    4 +-
 .../org/apache/juneau/svl/MultipartVar.html     |    4 +-
 .../org/apache/juneau/svl/SimpleVar.html        |    4 +-
 .../org/apache/juneau/svl/StreamedVar.html      |    4 +-
 .../site/apidocs/org/apache/juneau/svl/Var.html |    4 +-
 .../org/apache/juneau/svl/VarResolver.html      |    4 +-
 .../apache/juneau/svl/VarResolverContext.html   |    4 +-
 .../apache/juneau/svl/VarResolverSession.html   |    4 +-
 .../org/apache/juneau/svl/package-frame.html    |    2 +-
 .../org/apache/juneau/svl/package-summary.html  |    4 +-
 .../org/apache/juneau/svl/package-tree.html     |    4 +-
 .../org/apache/juneau/svl/vars/ArgsVar.html     |    4 +-
 .../apache/juneau/svl/vars/ConfigFileVar.html   |    4 +-
 .../apache/juneau/svl/vars/EnvVariablesVar.html |    4 +-
 .../apache/juneau/svl/vars/ManifestFileVar.html |    4 +-
 .../juneau/svl/vars/SystemPropertiesVar.html    |    4 +-
 .../apache/juneau/svl/vars/package-frame.html   |    2 +-
 .../apache/juneau/svl/vars/package-summary.html |    4 +-
 .../apache/juneau/svl/vars/package-tree.html    |    4 +-
 .../transform/AnnotationBeanFilterBuilder.html  |    4 +-
 .../org/apache/juneau/transform/BeanFilter.html |    4 +-
 .../juneau/transform/BeanFilterBuilder.html     |    4 +-
 .../transform/InterfaceBeanFilterBuilder.html   |    4 +-
 .../org/apache/juneau/transform/MapSwap.html    |    4 +-
 .../org/apache/juneau/transform/PojoSwap.html   |    4 +-
 .../org/apache/juneau/transform/StringSwap.html |    4 +-
 .../apache/juneau/transform/SurrogateSwap.html  |    4 +-
 .../apache/juneau/transform/package-frame.html  |    2 +-
 .../juneau/transform/package-summary.html       |    4 +-
 .../apache/juneau/transform/package-tree.html   |    4 +-
 .../juneau/transforms/BeanStringSwap.html       |    4 +-
 .../juneau/transforms/ByteArrayBase64Swap.html  |    4 +-
 .../juneau/transforms/CalendarLongSwap.html     |    4 +-
 .../juneau/transforms/CalendarMapSwap.html      |    4 +-
 .../transforms/CalendarSwap.DateFull.html       |    4 +-
 .../transforms/CalendarSwap.DateLong.html       |    4 +-
 .../transforms/CalendarSwap.DateMedium.html     |    4 +-
 .../transforms/CalendarSwap.DateShort.html      |    4 +-
 .../transforms/CalendarSwap.DateSimple.html     |    4 +-
 .../transforms/CalendarSwap.DateTimeFull.html   |    4 +-
 .../transforms/CalendarSwap.DateTimeLong.html   |    4 +-
 .../transforms/CalendarSwap.DateTimeMedium.html |    4 +-
 .../transforms/CalendarSwap.DateTimeShort.html  |    4 +-
 .../transforms/CalendarSwap.DateTimeSimple.html |    4 +-
 .../transforms/CalendarSwap.ISO8601DT.html      |    4 +-
 .../transforms/CalendarSwap.ISO8601DTP.html     |    4 +-
 .../transforms/CalendarSwap.ISO8601DTPZ.html    |    4 +-
 .../transforms/CalendarSwap.ISO8601DTZ.html     |    4 +-
 .../transforms/CalendarSwap.RFC2822D.html       |    4 +-
 .../transforms/CalendarSwap.RFC2822DT.html      |    4 +-
 .../transforms/CalendarSwap.RFC2822DTZ.html     |    4 +-
 .../transforms/CalendarSwap.TimeFull.html       |    4 +-
 .../transforms/CalendarSwap.TimeLong.html       |    4 +-
 .../transforms/CalendarSwap.TimeMedium.html     |    4 +-
 .../transforms/CalendarSwap.TimeShort.html      |    4 +-
 .../transforms/CalendarSwap.TimeSimple.html     |    4 +-
 .../transforms/CalendarSwap.ToString.html       |    4 +-
 .../apache/juneau/transforms/CalendarSwap.html  |    4 +-
 .../apache/juneau/transforms/DateLongSwap.html  |    4 +-
 .../apache/juneau/transforms/DateMapSwap.html   |    4 +-
 .../juneau/transforms/DateSwap.DateFull.html    |    4 +-
 .../juneau/transforms/DateSwap.DateLong.html    |    4 +-
 .../juneau/transforms/DateSwap.DateMedium.html  |    4 +-
 .../juneau/transforms/DateSwap.DateShort.html   |    4 +-
 .../juneau/transforms/DateSwap.DateSimple.html  |    4 +-
 .../transforms/DateSwap.DateTimeFull.html       |    4 +-
 .../transforms/DateSwap.DateTimeLong.html       |    4 +-
 .../transforms/DateSwap.DateTimeMedium.html     |    4 +-
 .../transforms/DateSwap.DateTimeShort.html      |    4 +-
 .../transforms/DateSwap.DateTimeSimple.html     |    4 +-
 .../juneau/transforms/DateSwap.ISO8601DT.html   |    4 +-
 .../juneau/transforms/DateSwap.ISO8601DTP.html  |    4 +-
 .../juneau/transforms/DateSwap.ISO8601DTPZ.html |    4 +-
 .../juneau/transforms/DateSwap.ISO8601DTZ.html  |    4 +-
 .../juneau/transforms/DateSwap.RFC2822D.html    |    4 +-
 .../juneau/transforms/DateSwap.RFC2822DT.html   |    4 +-
 .../juneau/transforms/DateSwap.RFC2822DTZ.html  |    4 +-
 .../juneau/transforms/DateSwap.TimeFull.html    |    4 +-
 .../juneau/transforms/DateSwap.TimeLong.html    |    4 +-
 .../juneau/transforms/DateSwap.TimeMedium.html  |    4 +-
 .../juneau/transforms/DateSwap.TimeShort.html   |    4 +-
 .../juneau/transforms/DateSwap.TimeSimple.html  |    4 +-
 .../juneau/transforms/DateSwap.ToString.html    |    4 +-
 .../org/apache/juneau/transforms/DateSwap.html  |    4 +-
 .../juneau/transforms/EnumerationSwap.html      |    4 +-
 .../apache/juneau/transforms/IteratorSwap.html  |    4 +-
 .../juneau/transforms/ReaderSwap.Html.html      |    4 +-
 .../juneau/transforms/ReaderSwap.Json.html      |    4 +-
 .../juneau/transforms/ReaderSwap.PlainText.html |    4 +-
 .../juneau/transforms/ReaderSwap.Xml.html       |    4 +-
 .../apache/juneau/transforms/ReaderSwap.html    |    4 +-
 .../transforms/XMLGregorianCalendarSwap.html    |    4 +-
 .../apache/juneau/transforms/package-frame.html |    2 +-
 .../juneau/transforms/package-summary.html      |    4 +-
 .../apache/juneau/transforms/package-tree.html  |    4 +-
 .../juneau/urlencoding/UonParser.Decoding.html  |    4 +-
 .../apache/juneau/urlencoding/UonParser.html    |    4 +-
 .../juneau/urlencoding/UonParserContext.html    |    4 +-
 .../juneau/urlencoding/UonParserSession.html    |    4 +-
 .../apache/juneau/urlencoding/UonReader.html    |    4 +-
 .../urlencoding/UonSerializer.Encoding.html     |    4 +-
 .../urlencoding/UonSerializer.Readable.html     |    4 +-
 .../urlencoding/UonSerializer.Simple.html       |    4 +-
 .../UonSerializer.SimpleEncoding.html           |    4 +-
 .../juneau/urlencoding/UonSerializer.html       |    4 +-
 .../urlencoding/UonSerializerContext.html       |    4 +-
 .../urlencoding/UonSerializerSession.html       |    4 +-
 .../apache/juneau/urlencoding/UonWriter.html    |    4 +-
 .../urlencoding/UrlEncodingClassMeta.html       |    4 +-
 .../juneau/urlencoding/UrlEncodingContext.html  |    4 +-
 .../juneau/urlencoding/UrlEncodingParser.html   |    4 +-
 .../urlencoding/UrlEncodingParserContext.html   |    4 +-
 .../urlencoding/UrlEncodingParserSession.html   |    4 +-
 .../UrlEncodingSerializer.Readable.html         |    4 +-
 .../UrlEncodingSerializer.Simple.html           |    4 +-
 .../UrlEncodingSerializer.SimpleExpanded.html   |    4 +-
 .../urlencoding/UrlEncodingSerializer.html      |    4 +-
 .../UrlEncodingSerializerContext.html           |    4 +-
 .../UrlEncodingSerializerSession.html           |    4 +-
 .../urlencoding/annotation/UrlEncoding.html     |    4 +-
 .../urlencoding/annotation/package-frame.html   |    2 +-
 .../urlencoding/annotation/package-summary.html |    4 +-
 .../urlencoding/annotation/package-tree.html    |    4 +-
 .../juneau/urlencoding/package-frame.html       |    2 +-
 .../juneau/urlencoding/package-summary.html     |    4 +-
 .../apache/juneau/urlencoding/package-tree.html |    4 +-
 .../apidocs/org/apache/juneau/utils/Args.html   |    4 +-
 .../juneau/utils/IOPipe.LineProcessor.html      |    4 +-
 .../apidocs/org/apache/juneau/utils/IOPipe.html |    4 +-
 .../org/apache/juneau/utils/ManifestFile.html   |    4 +-
 .../org/apache/juneau/utils/MessageBundle.html  |    4 +-
 .../org/apache/juneau/utils/MetadataMap.html    |    4 +-
 .../org/apache/juneau/utils/ObjectUtils.html    |    4 +-
 .../apache/juneau/utils/PojoIntrospector.html   |    4 +-
 .../org/apache/juneau/utils/PojoQuery.html      |    4 +-
 .../org/apache/juneau/utils/PojoRest.html       |    4 +-
 .../apache/juneau/utils/PojoRestException.html  |    4 +-
 .../juneau/utils/ProcBuilder.Matcher.html       |    4 +-
 .../org/apache/juneau/utils/ProcBuilder.html    |    4 +-
 .../juneau/utils/ZipFileList.FileEntry.html     |    4 +-
 .../juneau/utils/ZipFileList.ZipFileEntry.html  |    4 +-
 .../org/apache/juneau/utils/ZipFileList.html    |    4 +-
 .../org/apache/juneau/utils/package-frame.html  |    2 +-
 .../apache/juneau/utils/package-summary.html    |    4 +-
 .../org/apache/juneau/utils/package-tree.html   |    4 +-
 .../org/apache/juneau/xml/Namespace.html        |    4 +-
 .../org/apache/juneau/xml/NamespaceFactory.html |    4 +-
 .../org/apache/juneau/xml/XmlBeanMeta.html      |    4 +-
 .../apache/juneau/xml/XmlBeanPropertyMeta.html  |    4 +-
 .../org/apache/juneau/xml/XmlClassMeta.html     |    4 +-
 .../juneau/xml/XmlDocSerializer.Simple.html     |    4 +-
 .../org/apache/juneau/xml/XmlDocSerializer.html |    4 +-
 .../org/apache/juneau/xml/XmlParser.html        |    4 +-
 .../org/apache/juneau/xml/XmlParserContext.html |    4 +-
 .../org/apache/juneau/xml/XmlParserSession.html |    4 +-
 .../juneau/xml/XmlSchemaDocSerializer.html      |    4 +-
 .../apache/juneau/xml/XmlSchemaSerializer.html  |    4 +-
 .../org/apache/juneau/xml/XmlSerializer.Ns.html |    4 +-
 .../apache/juneau/xml/XmlSerializer.NsSq.html   |    4 +-
 .../juneau/xml/XmlSerializer.NsSqReadable.html  |    4 +-
 .../org/apache/juneau/xml/XmlSerializer.Sq.html |    4 +-
 .../juneau/xml/XmlSerializer.SqReadable.html    |    4 +-
 .../org/apache/juneau/xml/XmlSerializer.html    |    4 +-
 .../apache/juneau/xml/XmlSerializerContext.html |    4 +-
 .../apache/juneau/xml/XmlSerializerSession.html |    4 +-
 .../apidocs/org/apache/juneau/xml/XmlUtils.html |    4 +-
 .../org/apache/juneau/xml/XmlWriter.html        |    4 +-
 .../org/apache/juneau/xml/annotation/Xml.html   |    4 +-
 .../apache/juneau/xml/annotation/XmlFormat.html |    4 +-
 .../org/apache/juneau/xml/annotation/XmlNs.html |    4 +-
 .../apache/juneau/xml/annotation/XmlSchema.html |    4 +-
 .../juneau/xml/annotation/package-frame.html    |    2 +-
 .../juneau/xml/annotation/package-summary.html  |    4 +-
 .../juneau/xml/annotation/package-tree.html     |    4 +-
 .../org/apache/juneau/xml/package-frame.html    |    2 +-
 .../org/apache/juneau/xml/package-summary.html  |    4 +-
 .../org/apache/juneau/xml/package-tree.html     |    4 +-
 content/site/apidocs/overview-frame.html        |    2 +-
 content/site/apidocs/overview-summary.html      |   59 +-
 content/site/apidocs/overview-tree.html         |    5 +-
 content/site/apidocs/resources/juneau-doc.css   |    8 +-
 content/site/apidocs/serialized-form.html       |    4 +-
 .../src-html/org/apache/juneau/BeanMeta.html    |  985 +++++-----
 .../org/apache/juneau/BeanPropertyMeta.html     | 1722 +++++++++---------
 .../apache/juneau/internal/DelegateBeanMap.html |   57 +-
 762 files changed, 3098 insertions(+), 2915 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/about.html
----------------------------------------------------------------------
diff --git a/content/about.html b/content/about.html
index 179b68f..1a3969e 100644
--- a/content/about.html
+++ b/content/about.html
@@ -156,6 +156,7 @@
 		and vis-versa during parsing.  Beans can also be tailored in various ways.  
 		See <a href='http://juneau.incubator.apache.org/site/apidocs/overview-summary.html#Core.PojoCategories'>here</a> for a list of supported POJO types.
 	</p>
+	<br><hr>
 	<p>
 		<code>SerializerGroup</code> and <code>ParserGroup</code> classes allow serializers and parsers 
 		to be retrieved by W3C-compliant HTTP <code>Accept</code> and <code>Content-Type</code> values...
@@ -178,38 +179,38 @@
 
 	Person p = pg.getParser(<js>"text/json"</js>).parse(myReader, Person.<jk>class</jk>);
 	</p>
+	<br><br><hr>
 	<p>
 		Data Transfer Object libraries are provided for a variety of languages that allow you to serialize commonly-used
 		documents.  
 	</p>
 	<p>	
-		HTML5 documents and fragments can be constructed using the HTML5 DTOs:
+		HTML5 documents and fragments can be constructed using the HTML5 DTOs and HTML or XML serializers:
 	</p>
 	<p class='bcode'>
 	<jk>import static</jk> org.apache.juneau.dto.html5.HtmlBuilder.*;
-	
-	Object mytable = 	
-		<jsm>table</jsm>(
-			<jsm>tr</jsm>(<jsm>th</jsm>(<js>"c1"</js>),<jsm>th</jsm>(<js>"c2"</js>)),
-			<jsm>tr</jsm>(<jsm>td</jsm>(<js>"v1"</js>),<jsm>td</jsm>(<js>"v2"</js>))
-		);
+		
+	Object myform =
+		<jsm>form</jsm>().action(<js>"/submit"</js>).method(<js>"POST"</js>)
+		.children(
+			<js>"Position (1-10000): "</js>, <jsm>input</jsm>(<js>"number"</js>).name(<js>"pos"</js>).value(1), <jsm>br</jsm>(),
+			<js>"Limit (1-10000): "</js>, <jsm>input</jsm>(<js>"number"</js>).name(<js>"limit"</js>).value(100), <jsm>br</jsm>(),
+			<jsm>button</jsm>(<js>"submit"</js>, <js>"Submit"</js>),
+			<jsm>button</jsm>(<js>"reset"</js>, <js>"Reset"</js>)
+		); 	
 
-	String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(mytable);
+	String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(myform);
 	</p>
 	<p class='bcode'><xt>
-	&lt;table&gt;
-		&lt;tr&gt;
-			&lt;th&gt;<xv>c1</xv>&lt;/th&gt;
-			&lt;th&gt;<xv>c2</xv>&lt;/th&gt;
-		&lt;/tr&gt;
-		&lt;tr&gt;
-			&lt;td&gt;<xv>v1</xv>&lt;/td&gt;
-			&lt;td&gt;<xv>v2</xv>&lt;/td&gt;
-		&lt;/tr&gt;
-	&lt;/table&gt;
+		&lt;form <xa>action</xa>=<xs>'/submit'</xs> <xa>method</xa>=<xs>'POST'</xs>&gt;
+			<xv>Position (1-10000):</xv> &lt;input <xa>name</xa>=<xs>'pos'</xs> <xa>type</xa>=<xs>'number'</xs> <xa>value</xa>=<xs>'1'</xs>&gt;&lt;br/&gt;
+			<xv>Limit (1-10000):</xv> &lt;input <xa>name</xa>=<xs>'pos'</xs> <xa>type</xa>=<xs>'number'</xs> <xa>value</xa>=<xs>'100'</xs>&gt;&lt;br/&gt;
+			&lt;button <xa>type</xa>=<xs>'submit'</xs>&gt;<xv>Submit</xv>&lt;/button&gt;
+			&lt;button <xa>type</xa>=<xs>'reset'</xs>&gt;<xv>Reset</xv>&lt;/button&gt;			 
+		&lt;/form&gt;
 	</xt></p>
 	<p>	
-		ATOM feeds can be constructed using the ATOM DTOs:
+		ATOM feeds can be constructed using the ATOM DTOs and XML serializer:
 	</p>
 	<p class='bcode'>
 	<jk>import static</jk> org.apache.juneau.dto.atom.AtomBuilder.*;
@@ -269,6 +270,11 @@
 	<xt>&lt;/feed&gt;</xt>		
 	</p>
 	<p>
+		Note that these DTOs can also be serialized to any of the other supported languages such as JSON or MessagePack!
+		And they can be parsed back into their original objects!
+	</p>
+	<br><hr>
+	<p>
 		The REST server API builds upon the <code>SerializerGroup</code> and <code>ParserGroup</code> classes 
 		to provide annotated REST servlets that automatically negotiate the HTTP media types and allow the developer
 		to work with requests, responses, headers, path variables, query parameters, and form data as POJOs.
@@ -492,6 +498,7 @@
 		<li>Optional JAX-RS integration.
 		<li>much more!....
 	</ul>
+	<br><hr>
 	<p>
 		The REST client API allows you to access REST interfaces using POJOs...
 	</p>
@@ -513,6 +520,7 @@
 	p.load(reader);
 	<jk>int</jk> returnCode = client.doPost(url + <js>"/systemProperties"</js>, p).execute();
 	</p>
+	<br><br><hr>
 	<p>
 		The remote proxy interface API allows you to invoke POJO methods using REST...
 	</p>
@@ -527,7 +535,7 @@
 	<p>
 		Since the remote proxy API is built on top of REST, it can be debugged using nothing more than a browser.
 	</p>
-
+	<br><hr>
 	<p>
 		The config file API allows you to interact with INI files using POJOs.  
 		A sophisticated variable language is provided for referencing environment variables, system properties, other config file entries, and a host of other types.
@@ -594,6 +602,7 @@
 	String myArg = cf.getString(<js>"MySection/myArg"</js>); 
 	String firstArg = cf.getString(<js>"MySection/firstArg"</js>); 
 	</p>
+	<br><br><hr>
 	<p>
 		The microservice API combines all the features above with a built-in Jetty server to produce a lightweight 
 		REST service packaged as two simple files:
@@ -605,7 +614,7 @@
 	<p>
 		The microservice API was originally designed for and particularly suited for use as Docker images.
 	</p>
-
+	<br><hr>
 	<h5 class='toc'>More information</h5>
 	<p>
 		All user documentation for this project is maintained in its <a class='doclink' href='http://juneau.incubator.apache.org/site/apidocs/index.html' target="_top">Javadocs</a>.

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/allclasses-frame.html b/content/site/apidocs/allclasses-frame.html
index 9b37c30..4d9ad6d 100644
--- a/content/site/apidocs/allclasses-frame.html
+++ b/content/site/apidocs/allclasses-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>All Classes (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>All Classes (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -49,6 +49,7 @@
 <li><a href="org/apache/juneau/annotation/BeanParam.html" title="annotation in org.apache.juneau.annotation" target="classFrame">BeanParam</a></li>
 <li><a href="org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation" target="classFrame">BeanProperty</a></li>
 <li><a href="org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyMeta</a></li>
+<li><a href="org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyMeta.Builder</a></li>
 <li><a href="org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyMetaExtended</a></li>
 <li><a href="org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau" target="classFrame">BeanPropertyValue</a></li>
 <li><a href="org/apache/juneau/BeanProxyInvocationHandler.html" title="class in org.apache.juneau" target="classFrame">BeanProxyInvocationHandler</a></li>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/allclasses-noframe.html b/content/site/apidocs/allclasses-noframe.html
index 2ba7e9f..b11fafb 100644
--- a/content/site/apidocs/allclasses-noframe.html
+++ b/content/site/apidocs/allclasses-noframe.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>All Classes (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>All Classes (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -49,6 +49,7 @@
 <li><a href="org/apache/juneau/annotation/BeanParam.html" title="annotation in org.apache.juneau.annotation">BeanParam</a></li>
 <li><a href="org/apache/juneau/annotation/BeanProperty.html" title="annotation in org.apache.juneau.annotation">BeanProperty</a></li>
 <li><a href="org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a></li>
+<li><a href="org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a></li>
 <li><a href="org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau">BeanPropertyMetaExtended</a></li>
 <li><a href="org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau">BeanPropertyValue</a></li>
 <li><a href="org/apache/juneau/BeanProxyInvocationHandler.html" title="class in org.apache.juneau">BeanProxyInvocationHandler</a></li>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/constant-values.html b/content/site/apidocs/constant-values.html
index e780067..8538431 100644
--- a/content/site/apidocs/constant-values.html
+++ b/content/site/apidocs/constant-values.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Constant Field Values (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Constant Field Values (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Constant Field Values (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/deprecated-list.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/deprecated-list.html b/content/site/apidocs/deprecated-list.html
index 64bb0a3..ffa0435 100644
--- a/content/site/apidocs/deprecated-list.html
+++ b/content/site/apidocs/deprecated-list.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Deprecated List (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Deprecated List (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Deprecated List (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/help-doc.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/help-doc.html b/content/site/apidocs/help-doc.html
index d6c3a49..92b7e28 100644
--- a/content/site/apidocs/help-doc.html
+++ b/content/site/apidocs/help-doc.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>API Help (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>API Help (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="API Help (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/index-all.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/index-all.html b/content/site/apidocs/index-all.html
index 9a49b91..9dd4511 100644
--- a/content/site/apidocs/index-all.html
+++ b/content/site/apidocs/index-all.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Index (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Index (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style">
 <script type="text/javascript" src="script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Index (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Index (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -2055,9 +2055,13 @@
 <dd>
 <div class="block">Contains metadata about a bean property.</div>
 </dd>
-<dt><span class="memberNameLink"><a href="org/apache/juneau/BeanPropertyMeta.html#BeanPropertyMeta-org.apache.juneau.BeanMeta-java.lang.String-">BeanPropertyMeta(BeanMeta&lt;?&gt;, String)</a></span> - Constructor for class org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a></dt>
+<dt><span class="memberNameLink"><a href="org/apache/juneau/BeanPropertyMeta.html#BeanPropertyMeta-org.apache.juneau.BeanPropertyMeta.Builder-">BeanPropertyMeta(BeanPropertyMeta.Builder)</a></span> - Constructor for class org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a></dt>
 <dd>
-<div class="block">Constructor.</div>
+<div class="block">Creates a new BeanPropertyMeta using the contents of the specified builder.</div>
+</dd>
+<dt><a href="org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMeta.Builder</span></a> - Class in <a href="org/apache/juneau/package-summary.html">org.apache.juneau</a></dt>
+<dd>
+<div class="block">BeanPropertyMeta builder class.</div>
 </dd>
 <dt><a href="org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau"><span class="typeNameLink">BeanPropertyMetaExtended</span></a> - Class in <a href="org/apache/juneau/package-summary.html">org.apache.juneau</a></dt>
 <dd>
@@ -2176,10 +2180,16 @@
 <dd>
 <div class="block">Specifies the temporary buffer size.</div>
 </dd>
+<dt><span class="memberNameLink"><a href="org/apache/juneau/BeanPropertyMeta.Builder.html#build--">build()</a></span> - Method in class org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/juneau/transform/BeanFilterBuilder.html#build--">build()</a></span> - Method in class org.apache.juneau.transform.<a href="org/apache/juneau/transform/BeanFilterBuilder.html" title="class in org.apache.juneau.transform">BeanFilterBuilder</a></dt>
 <dd>
 <div class="block">Creates a <a href="org/apache/juneau/transform/BeanFilter.html" title="class in org.apache.juneau.transform"><code>BeanFilter</code></a> with settings in this builder class.</div>
 </dd>
+<dt><span class="memberNameLink"><a href="org/apache/juneau/BeanPropertyMeta.Builder.html#Builder-org.apache.juneau.BeanMeta-java.lang.String-java.lang.Object-org.apache.juneau.BeanPropertyMeta-">Builder(BeanMeta&lt;?&gt;, String, Object, BeanPropertyMeta)</a></span> - Constructor for class org.apache.juneau.<a href="org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a></dt>
+<dd>
+<div class="block">BeanPropertyMeta builder for delegate classes.</div>
+</dd>
 <dt><a href="org/apache/juneau/dto/html5/Button.html" title="class in org.apache.juneau.dto.html5"><span class="typeNameLink">Button</span></a> - Class in <a href="org/apache/juneau/dto/html5/package-summary.html">org.apache.juneau.dto.html5</a></dt>
 <dd>
 <div class="block">DTO for an HTML <a class="./org/apache/juneau/dto/html5/doclink" href="https://www.w3.org/TR/html5/forms.html#the-button-element">&lt;button&gt;</a> element.</div>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/index.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/index.html b/content/site/apidocs/index.html
index 67f252a..65081a2 100644
--- a/content/site/apidocs/index.html
+++ b/content/site/apidocs/index.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT</title>
+<title>Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT</title>
 <script type="text/javascript">
     targetPage = "" + window.location.search;
     if (targetPage != "" && targetPage != "undefined")

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanContext.html b/content/site/apidocs/org/apache/juneau/BeanContext.html
index dea2cad..ebb2734 100644
--- a/content/site/apidocs/org/apache/juneau/BeanContext.html
+++ b/content/site/apidocs/org/apache/juneau/BeanContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html b/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
index 4cc80c4..4dc05a6 100644
--- a/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
+++ b/content/site/apidocs/org/apache/juneau/BeanDictionaryList.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanDictionaryList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanDictionaryList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanDictionaryList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanDictionaryList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanDictionaryMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanDictionaryMap.html b/content/site/apidocs/org/apache/juneau/BeanDictionaryMap.html
index 40beaa0..3562a49 100644
--- a/content/site/apidocs/org/apache/juneau/BeanDictionaryMap.html
+++ b/content/site/apidocs/org/apache/juneau/BeanDictionaryMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanDictionaryMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanDictionaryMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanDictionaryMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanDictionaryMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMap.html b/content/site/apidocs/org/apache/juneau/BeanMap.html
index c7751aa..8613f94 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMap.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMapEntry.html b/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
index 1657532..87f7a0d 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMapEntry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanMapEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanMapEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanMapEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanMapEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMeta.html b/content/site/apidocs/org/apache/juneau/BeanMeta.html
index 5d584bc..5b984fe 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMeta.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -488,7 +488,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <li class="blockList">
 <h4>getClassMeta</h4>
 <pre><a href="../../../org/apache/juneau/annotation/BeanIgnore.html" title="annotation in org.apache.juneau.annotation">@BeanIgnore</a>
-public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.416">getClassMeta</a>()</pre>
+public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.415">getClassMeta</a>()</pre>
 <div class="block">Returns the <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> of this bean.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -502,7 +502,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getDictionaryName</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.425">getDictionaryName</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.424">getDictionaryName</a>()</pre>
 <div class="block">Returns the dictionary name for this bean as defined through the <a href="../../../org/apache/juneau/annotation/Bean.html#typeName--"><code>Bean.typeName()</code></a> annotation.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -516,7 +516,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getSubTypeProperty</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.436">getSubTypeProperty</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.435">getSubTypeProperty</a>()</pre>
 <div class="block">Returns the subtype property of this bean if it has one.
  <p>
  The subtype is specified using the <a href="../../../org/apache/juneau/annotation/Bean.html#subTypeProperty--"><code>Bean.subTypeProperty()</code></a> annotation.</div>
@@ -532,7 +532,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>isSubTyped</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.446">isSubTyped</a>()</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.445">isSubTyped</a>()</pre>
 <div class="block">Returns <jk>true</jk> if this bean has subtypes associated with it.
  Subtypes are defined using the <a href="../../../org/apache/juneau/annotation/Bean.html#subTypes--"><code>Bean.subTypes()</code></a> annotation.</div>
 <dl>
@@ -547,7 +547,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getTypeProperty</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.456">getTypeProperty</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.455">getTypeProperty</a>()</pre>
 <div class="block">Returns a mock bean property that resolves to the name <js>"_type"</js> and whose value always resolves
    to the dictionary name of the bean.</div>
 <dl>
@@ -562,7 +562,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMetas</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.617">getPropertyMetas</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.616">getPropertyMetas</a>()</pre>
 <div class="block">Returns the metadata on all properties associated with this bean.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -576,7 +576,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMetas</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.627">getPropertyMetas</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>...&nbsp;pNames)</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</a>&lt;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.626">getPropertyMetas</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>...&nbsp;pNames)</pre>
 <div class="block">Returns the metadata on the specified list of properties.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -592,7 +592,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getExtendedMeta</h4>
-<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanMetaExtended.html" title="class in org.apache.juneau">BeanMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.642">getExtendedMeta</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;M&gt;&nbsp;metaDataClass)</pre>
+<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanMetaExtended.html" title="class in org.apache.juneau">BeanMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.641">getExtendedMeta</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;M&gt;&nbsp;metaDataClass)</pre>
 <div class="block">Returns the language-specified extended metadata on this bean class.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -608,7 +608,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>getPropertyMeta</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.653">getPropertyMeta</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau">BeanPropertyMeta</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.652">getPropertyMeta</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
 <div class="block">Returns metadata about the specified property.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -625,7 +625,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockList">
 <li class="blockList">
 <h4>newBean</h4>
-<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.668">newBean</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;outer)
+<pre>protected&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="type parameter in BeanMeta">T</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.667">newBean</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;outer)
              throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a>,
                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/InstantiationException.html?is-external=true" title="class or interface in java.lang">InstantiationException</a>,
                     <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalAccessException.html?is-external=true" title="class or interface in java.lang">IllegalAccessException</a>,
@@ -650,7 +650,7 @@ public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in
 <ul class="blockListLast">
 <li class="blockList">
 <h4>toString</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.798">toString</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanMeta.html#line.811">toString</a>()</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanMetaExtended.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMetaExtended.html b/content/site/apidocs/org/apache/juneau/BeanMetaExtended.html
index bacaa30..566fbaa 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMetaExtended.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMetaExtended.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanMetaExtended (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanMetaExtended (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanMetaExtended (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanMetaExtended (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanMetaFiltered.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanMetaFiltered.html b/content/site/apidocs/org/apache/juneau/BeanMetaFiltered.html
index cd563e8..17bf502 100644
--- a/content/site/apidocs/org/apache/juneau/BeanMetaFiltered.html
+++ b/content/site/apidocs/org/apache/juneau/BeanMetaFiltered.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanMetaFiltered (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanMetaFiltered (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanMetaFiltered (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanMetaFiltered (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {


[07/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jena/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jena/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/jena/package-frame.html
index fbf9189..dc9b65a 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jena/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jena/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jena/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jena/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/jena/package-summary.html
index a6d04fc..f08e5d0 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jena/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jena/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.jena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.jena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jena/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jena/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/jena/package-tree.html
index 090ea85..4934841 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jena/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jena/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jena Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jena Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.jena Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.jena Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.BeanPropertyDescription.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.BeanPropertyDescription.html b/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.BeanPropertyDescription.html
index 89f2583..4b7c6f8 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.BeanPropertyDescription.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.BeanPropertyDescription.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanDescription.BeanPropertyDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanDescription.BeanPropertyDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanDescription.BeanPropertyDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanDescription.BeanPropertyDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.html b/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.html
index 4e41d5f..ae8d5f1 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/BeanDescription.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/ChildResourceDescriptions.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/ChildResourceDescriptions.html b/content/site/apidocs/org/apache/juneau/rest/labels/ChildResourceDescriptions.html
index 58ba643..616ab5a 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/ChildResourceDescriptions.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/ChildResourceDescriptions.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ChildResourceDescriptions (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ChildResourceDescriptions (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ChildResourceDescriptions (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ChildResourceDescriptions (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/NameDescription.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/NameDescription.html b/content/site/apidocs/org/apache/juneau/rest/labels/NameDescription.html
index cd5a9a2..16c85cc 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/NameDescription.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/NameDescription.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>NameDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>NameDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="NameDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="NameDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/ResourceDescription.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/ResourceDescription.html b/content/site/apidocs/org/apache/juneau/rest/labels/ResourceDescription.html
index 90e172f..c51def4 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/ResourceDescription.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/ResourceDescription.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResourceDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResourceDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResourceDescription (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResourceDescription (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/ResourceLink.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/ResourceLink.html b/content/site/apidocs/org/apache/juneau/rest/labels/ResourceLink.html
index bc9bace..2d92952 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/ResourceLink.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/ResourceLink.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResourceLink (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResourceLink (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResourceLink (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResourceLink (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/labels/package-frame.html
index 1b54fc4..e7d9dba 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.labels (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.labels (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/labels/package-summary.html
index 1c937b1..fa2badc 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.labels (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.labels (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.labels (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.labels (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/labels/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/labels/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/labels/package-tree.html
index 3b09331..fa580e0 100644
--- a/content/site/apidocs/org/apache/juneau/rest/labels/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/labels/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.labels Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.labels Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.labels Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.labels Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/matchers/MultipartFormDataMatcher.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/matchers/MultipartFormDataMatcher.html b/content/site/apidocs/org/apache/juneau/rest/matchers/MultipartFormDataMatcher.html
index 8ed40fb..27889c0 100644
--- a/content/site/apidocs/org/apache/juneau/rest/matchers/MultipartFormDataMatcher.html
+++ b/content/site/apidocs/org/apache/juneau/rest/matchers/MultipartFormDataMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MultipartFormDataMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MultipartFormDataMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MultipartFormDataMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MultipartFormDataMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.html b/content/site/apidocs/org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.html
index 55a8f29..7d25fda 100644
--- a/content/site/apidocs/org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.html
+++ b/content/site/apidocs/org/apache/juneau/rest/matchers/UrlEncodedFormMatcher.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodedFormMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodedFormMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodedFormMatcher (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodedFormMatcher (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/matchers/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/matchers/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/matchers/package-frame.html
index d6a9931..948ae87 100644
--- a/content/site/apidocs/org/apache/juneau/rest/matchers/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/matchers/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.matchers (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.matchers (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/matchers/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/matchers/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/matchers/package-summary.html
index 713015b..c225a07 100644
--- a/content/site/apidocs/org/apache/juneau/rest/matchers/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/matchers/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.matchers (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.matchers (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.matchers (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.matchers (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/matchers/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/matchers/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/matchers/package-tree.html
index 8e7767e..4b977e6 100644
--- a/content/site/apidocs/org/apache/juneau/rest/matchers/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/matchers/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.matchers Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.matchers Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.matchers Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.matchers Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/package-frame.html
index 91c4dfb..6d168f3 100644
--- a/content/site/apidocs/org/apache/juneau/rest/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/package-summary.html
index 65e390c..7e4358f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/package-tree.html
index dfec89e..3ff5a00 100644
--- a/content/site/apidocs/org/apache/juneau/rest/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServiceProperties.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServiceProperties.html b/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServiceProperties.html
index b7345d9..bee1044 100644
--- a/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServiceProperties.html
+++ b/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServiceProperties.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RemoteableServiceProperties (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RemoteableServiceProperties (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RemoteableServiceProperties (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RemoteableServiceProperties (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServlet.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServlet.html b/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServlet.html
index 862a97f..58125c2 100644
--- a/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServlet.html
+++ b/content/site/apidocs/org/apache/juneau/rest/remoteable/RemoteableServlet.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RemoteableServlet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RemoteableServlet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RemoteableServlet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RemoteableServlet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/remoteable/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/remoteable/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/remoteable/package-frame.html
index 71da0bf..392582d 100644
--- a/content/site/apidocs/org/apache/juneau/rest/remoteable/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/remoteable/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.remoteable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.remoteable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/remoteable/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/remoteable/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/remoteable/package-summary.html
index 75e9397..c8b6bd0 100644
--- a/content/site/apidocs/org/apache/juneau/rest/remoteable/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/remoteable/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.remoteable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.remoteable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.remoteable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.remoteable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/remoteable/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/remoteable/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/remoteable/package-tree.html
index 1d233fa..cb2898c 100644
--- a/content/site/apidocs/org/apache/juneau/rest/remoteable/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/remoteable/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.remoteable Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.remoteable Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.remoteable Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.remoteable Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/DefaultHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/DefaultHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/DefaultHandler.html
index 54142c9..c91a04a 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/DefaultHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/DefaultHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DefaultHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DefaultHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DefaultHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DefaultHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/InputStreamHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/InputStreamHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/InputStreamHandler.html
index 8addc0e..270fc81 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/InputStreamHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/InputStreamHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>InputStreamHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>InputStreamHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="InputStreamHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="InputStreamHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/ReaderHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/ReaderHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/ReaderHandler.html
index 772258d..072c03b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/ReaderHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/ReaderHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/RedirectHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/RedirectHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/RedirectHandler.html
index 58d6dd6..397bcfc 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/RedirectHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/RedirectHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RedirectHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RedirectHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RedirectHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RedirectHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/StreamableHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/StreamableHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/StreamableHandler.html
index 5c57a9e..2ef41af 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/StreamableHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/StreamableHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StreamableHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StreamableHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StreamableHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StreamableHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/WritableHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/WritableHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/WritableHandler.html
index 2f8b6f1..ff3779f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/WritableHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/WritableHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>WritableHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>WritableHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="WritableHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="WritableHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/ZipFileListResponseHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/ZipFileListResponseHandler.html b/content/site/apidocs/org/apache/juneau/rest/response/ZipFileListResponseHandler.html
index 6ec9fd6..f8732b9 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/ZipFileListResponseHandler.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/ZipFileListResponseHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ZipFileListResponseHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ZipFileListResponseHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ZipFileListResponseHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ZipFileListResponseHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/response/package-frame.html
index 036c3af..5473ec9 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.response (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.response (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/response/package-summary.html
index 25230e0..b1945cc 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.response (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.response (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.response (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.response (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/response/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/response/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/response/package-tree.html
index 1c48eb9..04abd43 100644
--- a/content/site/apidocs/org/apache/juneau/rest/response/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/response/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.response Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.response Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.response Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.response Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/LocalizationVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/LocalizationVar.html b/content/site/apidocs/org/apache/juneau/rest/vars/LocalizationVar.html
index 796f2ff..366dada 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/LocalizationVar.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/LocalizationVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LocalizationVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LocalizationVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LocalizationVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LocalizationVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/RequestVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/RequestVar.html b/content/site/apidocs/org/apache/juneau/rest/vars/RequestVar.html
index 3be359d..a45b606 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/RequestVar.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/RequestVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RequestVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RequestVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RequestVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RequestVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/SerializedRequestAttrVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/SerializedRequestAttrVar.html b/content/site/apidocs/org/apache/juneau/rest/vars/SerializedRequestAttrVar.html
index bf18602..f34f7a5 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/SerializedRequestAttrVar.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/SerializedRequestAttrVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializedRequestAttrVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializedRequestAttrVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializedRequestAttrVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializedRequestAttrVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/ServletInitParamVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/ServletInitParamVar.html b/content/site/apidocs/org/apache/juneau/rest/vars/ServletInitParamVar.html
index 4d8e212..619fbc1 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/ServletInitParamVar.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/ServletInitParamVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ServletInitParamVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ServletInitParamVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ServletInitParamVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ServletInitParamVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/UrlEncodeVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/UrlEncodeVar.html b/content/site/apidocs/org/apache/juneau/rest/vars/UrlEncodeVar.html
index 142d41c..6845879 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/UrlEncodeVar.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/UrlEncodeVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodeVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodeVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodeVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodeVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/vars/package-frame.html
index 95f17ab..c1f78c3 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.vars (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.vars (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/vars/package-summary.html
index d12a441..b1d73f8 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.vars (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.vars (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.vars (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.vars (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/vars/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/vars/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/vars/package-tree.html
index a4b885b..49ddd44 100644
--- a/content/site/apidocs/org/apache/juneau/rest/vars/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/vars/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.vars Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.vars Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.vars Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.vars Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/OutputStreamSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/OutputStreamSerializer.html b/content/site/apidocs/org/apache/juneau/serializer/OutputStreamSerializer.html
index 781afef..78d5ae8 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/OutputStreamSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/OutputStreamSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>OutputStreamSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>OutputStreamSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="OutputStreamSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="OutputStreamSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/SerializeException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/SerializeException.html b/content/site/apidocs/org/apache/juneau/serializer/SerializeException.html
index e7fb448..915e5fb 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/SerializeException.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/SerializeException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializeException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializeException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializeException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializeException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/Serializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/Serializer.html b/content/site/apidocs/org/apache/juneau/serializer/Serializer.html
index bc9dc21..b8386f8 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/Serializer.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/Serializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Serializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Serializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Serializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Serializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/SerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/SerializerContext.html b/content/site/apidocs/org/apache/juneau/serializer/SerializerContext.html
index 84bd002..db29512 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/SerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/SerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/SerializerGroup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/SerializerGroup.html b/content/site/apidocs/org/apache/juneau/serializer/SerializerGroup.html
index 6ac6c83..e7094b1 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/SerializerGroup.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/SerializerGroup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializerGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializerGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializerGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializerGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/SerializerMatch.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/SerializerMatch.html b/content/site/apidocs/org/apache/juneau/serializer/SerializerMatch.html
index 1177db9..3badf5f 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/SerializerMatch.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/SerializerMatch.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializerMatch (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializerMatch (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializerMatch (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializerMatch (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/SerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/SerializerSession.html b/content/site/apidocs/org/apache/juneau/serializer/SerializerSession.html
index e47e9f9..86e2a93 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/SerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/SerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/SerializerWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/SerializerWriter.html b/content/site/apidocs/org/apache/juneau/serializer/SerializerWriter.html
index ddcc693..96a6bbb 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/SerializerWriter.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/SerializerWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializerWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializerWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializerWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializerWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/StringObject.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/StringObject.html b/content/site/apidocs/org/apache/juneau/serializer/StringObject.html
index 1b79a96..a94761c 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/StringObject.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/StringObject.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StringObject (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StringObject (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StringObject (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StringObject (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/WriterSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/WriterSerializer.html b/content/site/apidocs/org/apache/juneau/serializer/WriterSerializer.html
index 8f6e50e..6b439bb 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/WriterSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/WriterSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>WriterSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>WriterSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="WriterSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="WriterSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/package-frame.html b/content/site/apidocs/org/apache/juneau/serializer/package-frame.html
index 7e6a6a4..d0dbacd 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.serializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.serializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/package-summary.html b/content/site/apidocs/org/apache/juneau/serializer/package-summary.html
index 0c0626d..392288c 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.serializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.serializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.serializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.serializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/serializer/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/serializer/package-tree.html b/content/site/apidocs/org/apache/juneau/serializer/package-tree.html
index f163075..daa3f1f 100644
--- a/content/site/apidocs/org/apache/juneau/serializer/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/serializer/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.serializer Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.serializer Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.serializer Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.serializer Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializer.html b/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializer.html
index 01a2f50..1347b3f 100644
--- a/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SoapXmlSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SoapXmlSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SoapXmlSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SoapXmlSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializerContext.html b/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializerContext.html
index e39a2ad..f169519 100644
--- a/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/soap/SoapXmlSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SoapXmlSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SoapXmlSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SoapXmlSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SoapXmlSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/soap/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/soap/package-frame.html b/content/site/apidocs/org/apache/juneau/soap/package-frame.html
index 6be4056..2b7f3b6 100644
--- a/content/site/apidocs/org/apache/juneau/soap/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/soap/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.soap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.soap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/soap/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/soap/package-summary.html b/content/site/apidocs/org/apache/juneau/soap/package-summary.html
index 77f4672..cf7b486 100644
--- a/content/site/apidocs/org/apache/juneau/soap/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/soap/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.soap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.soap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.soap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.soap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/soap/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/soap/package-tree.html b/content/site/apidocs/org/apache/juneau/soap/package-tree.html
index a1b7060..e9f1ec0 100644
--- a/content/site/apidocs/org/apache/juneau/soap/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/soap/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.soap Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.soap Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.soap Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.soap Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/DefaultingVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/DefaultingVar.html b/content/site/apidocs/org/apache/juneau/svl/DefaultingVar.html
index 1b7b078..06f41ba 100644
--- a/content/site/apidocs/org/apache/juneau/svl/DefaultingVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/DefaultingVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DefaultingVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DefaultingVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DefaultingVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DefaultingVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/MapVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/MapVar.html b/content/site/apidocs/org/apache/juneau/svl/MapVar.html
index 330f102..d9f29e0 100644
--- a/content/site/apidocs/org/apache/juneau/svl/MapVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/MapVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MapVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MapVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MapVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MapVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/MultipartVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/MultipartVar.html b/content/site/apidocs/org/apache/juneau/svl/MultipartVar.html
index 7cd2e02..c5a7125 100644
--- a/content/site/apidocs/org/apache/juneau/svl/MultipartVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/MultipartVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MultipartVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MultipartVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MultipartVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MultipartVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[10/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/package-tree.html b/content/site/apidocs/org/apache/juneau/internal/package-tree.html
index fbc6666..8dafd83 100644
--- a/content/site/apidocs/org/apache/juneau/internal/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/internal/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.internal Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.internal Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.internal Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.internal Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/Constants.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/Constants.html b/content/site/apidocs/org/apache/juneau/jena/Constants.html
index 14302a6..43b22fc 100644
--- a/content/site/apidocs/org/apache/juneau/jena/Constants.html
+++ b/content/site/apidocs/org/apache/juneau/jena/Constants.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Constants (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Constants (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constants (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Constants (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html b/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
index 53022e0..40f47e2 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfBeanMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfBeanMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfBeanMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfBeanMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfBeanMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html b/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
index f6786ae..967b785 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfBeanPropertyMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfBeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfBeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfBeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfBeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html b/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
index b83483f..068622d 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfClassMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfCollectionFormat.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfCollectionFormat.html b/content/site/apidocs/org/apache/juneau/jena/RdfCollectionFormat.html
index 7efa499..d721fc5 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfCollectionFormat.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfCollectionFormat.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfCollectionFormat (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfCollectionFormat (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfCollectionFormat (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfCollectionFormat (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfCommonContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfCommonContext.html b/content/site/apidocs/org/apache/juneau/jena/RdfCommonContext.html
index 1ee61ff..165bbe1 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfCommonContext.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfCommonContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfCommonContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfCommonContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfCommonContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfCommonContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParser.N3.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParser.N3.html b/content/site/apidocs/org/apache/juneau/jena/RdfParser.N3.html
index 678a5aa..07d7315 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParser.N3.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParser.N3.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParser.N3 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParser.N3 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParser.N3 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParser.N3 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParser.NTriple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParser.NTriple.html b/content/site/apidocs/org/apache/juneau/jena/RdfParser.NTriple.html
index 56278b1..f1ce14d 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParser.NTriple.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParser.NTriple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParser.NTriple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParser.NTriple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParser.NTriple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParser.NTriple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParser.Turtle.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParser.Turtle.html b/content/site/apidocs/org/apache/juneau/jena/RdfParser.Turtle.html
index 00bd42e..0164816 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParser.Turtle.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParser.Turtle.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParser.Turtle (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParser.Turtle (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParser.Turtle (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParser.Turtle (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParser.Xml.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParser.Xml.html b/content/site/apidocs/org/apache/juneau/jena/RdfParser.Xml.html
index e159f91..9833257 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParser.Xml.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParser.Xml.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParser.Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParser.Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParser.Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParser.Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParser.html b/content/site/apidocs/org/apache/juneau/jena/RdfParser.html
index 6b958fd..58b6c05 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParser.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParserContext.html b/content/site/apidocs/org/apache/juneau/jena/RdfParserContext.html
index 065209f..791b2cd 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfParserSession.html b/content/site/apidocs/org/apache/juneau/jena/RdfParserSession.html
index 1115967..ce32765 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.N3.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.N3.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.N3.html
index 2f6d809..e33b1f4 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.N3.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.N3.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializer.N3 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializer.N3 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializer.N3 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializer.N3 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.NTriple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.NTriple.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.NTriple.html
index 7d54329..9f4173b 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.NTriple.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.NTriple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializer.NTriple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializer.NTriple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializer.NTriple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializer.NTriple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Turtle.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Turtle.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Turtle.html
index 8353033..574c181 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Turtle.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Turtle.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializer.Turtle (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializer.Turtle (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializer.Turtle (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializer.Turtle (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Xml.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Xml.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Xml.html
index 59b0646..53874bb 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Xml.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.Xml.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializer.Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializer.Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializer.Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializer.Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.XmlAbbrev.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.XmlAbbrev.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.XmlAbbrev.html
index a6c8c54..695400f 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.XmlAbbrev.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.XmlAbbrev.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializer.XmlAbbrev (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializer.XmlAbbrev (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializer.XmlAbbrev (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializer.XmlAbbrev (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.html
index b4efa35..ffe667a 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializerContext.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializerContext.html
index 37584bb..8b41592 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfSerializerSession.html b/content/site/apidocs/org/apache/juneau/jena/RdfSerializerSession.html
index d911535..51bb218 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/RdfUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/RdfUtils.html b/content/site/apidocs/org/apache/juneau/jena/RdfUtils.html
index 7559d04..7a8f388 100644
--- a/content/site/apidocs/org/apache/juneau/jena/RdfUtils.html
+++ b/content/site/apidocs/org/apache/juneau/jena/RdfUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/annotation/Rdf.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/annotation/Rdf.html b/content/site/apidocs/org/apache/juneau/jena/annotation/Rdf.html
index 80de5ec..34fd774 100644
--- a/content/site/apidocs/org/apache/juneau/jena/annotation/Rdf.html
+++ b/content/site/apidocs/org/apache/juneau/jena/annotation/Rdf.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Rdf (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Rdf (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Rdf (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Rdf (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/annotation/RdfNs.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/annotation/RdfNs.html b/content/site/apidocs/org/apache/juneau/jena/annotation/RdfNs.html
index 5659100..7226b79 100644
--- a/content/site/apidocs/org/apache/juneau/jena/annotation/RdfNs.html
+++ b/content/site/apidocs/org/apache/juneau/jena/annotation/RdfNs.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfNs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfNs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfNs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfNs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/annotation/RdfSchema.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/annotation/RdfSchema.html b/content/site/apidocs/org/apache/juneau/jena/annotation/RdfSchema.html
index 10e7e6c..ec4c3de 100644
--- a/content/site/apidocs/org/apache/juneau/jena/annotation/RdfSchema.html
+++ b/content/site/apidocs/org/apache/juneau/jena/annotation/RdfSchema.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RdfSchema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RdfSchema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RdfSchema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RdfSchema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/jena/annotation/package-frame.html
index 0766180..1846b66 100644
--- a/content/site/apidocs/org/apache/juneau/jena/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/jena/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jena.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jena.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/jena/annotation/package-summary.html
index afa8490..c19c647 100644
--- a/content/site/apidocs/org/apache/juneau/jena/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/jena/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jena.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jena.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.jena.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.jena.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/jena/annotation/package-tree.html
index a064157..12fcbd2 100644
--- a/content/site/apidocs/org/apache/juneau/jena/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/jena/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jena.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jena.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.jena.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.jena.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/package-frame.html b/content/site/apidocs/org/apache/juneau/jena/package-frame.html
index 44965df..7a9c62b 100644
--- a/content/site/apidocs/org/apache/juneau/jena/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/jena/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/package-summary.html b/content/site/apidocs/org/apache/juneau/jena/package-summary.html
index b310d3f..6d302a1 100644
--- a/content/site/apidocs/org/apache/juneau/jena/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/jena/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.jena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.jena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jena/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jena/package-tree.html b/content/site/apidocs/org/apache/juneau/jena/package-tree.html
index 0541a46..e4e66b3 100644
--- a/content/site/apidocs/org/apache/juneau/jena/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/jena/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jena Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jena Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.jena Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.jena Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectParser.html b/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectParser.html
index 450ccd5..ff46d21 100644
--- a/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectParser.html
+++ b/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JavaSerializedObjectParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JavaSerializedObjectParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JavaSerializedObjectParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JavaSerializedObjectParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectSerializer.html b/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectSerializer.html
index 0ac7696..c2d2c30 100644
--- a/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/jso/JavaSerializedObjectSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JavaSerializedObjectSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JavaSerializedObjectSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JavaSerializedObjectSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JavaSerializedObjectSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jso/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jso/package-frame.html b/content/site/apidocs/org/apache/juneau/jso/package-frame.html
index f2da869..608199c 100644
--- a/content/site/apidocs/org/apache/juneau/jso/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/jso/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jso (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jso (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jso/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jso/package-summary.html b/content/site/apidocs/org/apache/juneau/jso/package-summary.html
index a7256f9..9f7b1b9 100644
--- a/content/site/apidocs/org/apache/juneau/jso/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/jso/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jso (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jso (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.jso (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.jso (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/jso/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/jso/package-tree.html b/content/site/apidocs/org/apache/juneau/jso/package-tree.html
index 1b0cf2d..b4f4c0f 100644
--- a/content/site/apidocs/org/apache/juneau/jso/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/jso/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.jso Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.jso Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.jso Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.jso Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonClassMeta.html b/content/site/apidocs/org/apache/juneau/json/JsonClassMeta.html
index e3f9201..ac1b8b3 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonClassMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonParser.html b/content/site/apidocs/org/apache/juneau/json/JsonParser.html
index bbfd185..019dcec 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonParser.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonParserContext.html b/content/site/apidocs/org/apache/juneau/json/JsonParserContext.html
index 1cc6752..ba7bcc3 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonParserSession.html b/content/site/apidocs/org/apache/juneau/json/JsonParserSession.html
index affb56b..44cbe33 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSchemaSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSchemaSerializer.html b/content/site/apidocs/org/apache/juneau/json/JsonSchemaSerializer.html
index 0c57941..c2f2d70 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSchemaSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSchemaSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSchemaSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSchemaSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSchemaSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSchemaSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Readable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Readable.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Readable.html
index b0ba24a..5e6af61 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Readable.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Readable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializer.Readable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializer.Readable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializer.Readable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializer.Readable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Simple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Simple.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Simple.html
index a2f6cb1..7b9a4d7 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Simple.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.Simple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadable.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadable.html
index 4aab2aa..240f408 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadable.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializer.SimpleReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializer.SimpleReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializer.SimpleReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializer.SimpleReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadableSafe.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadableSafe.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadableSafe.html
index 00f34f7..fff0109 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadableSafe.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.SimpleReadableSafe.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializer.SimpleReadableSafe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializer.SimpleReadableSafe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializer.SimpleReadableSafe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializer.SimpleReadableSafe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.html
index 793cc0b..d41dfac 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializerContext.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializerContext.html
index 8a64226..aa4eab5 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonSerializerSession.html b/content/site/apidocs/org/apache/juneau/json/JsonSerializerSession.html
index d18c4c3..2aef2d4 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/JsonWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/JsonWriter.html b/content/site/apidocs/org/apache/juneau/json/JsonWriter.html
index 057df05..f6f42da 100644
--- a/content/site/apidocs/org/apache/juneau/json/JsonWriter.html
+++ b/content/site/apidocs/org/apache/juneau/json/JsonWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/annotation/Json.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/annotation/Json.html b/content/site/apidocs/org/apache/juneau/json/annotation/Json.html
index cb61c59..10b6911 100644
--- a/content/site/apidocs/org/apache/juneau/json/annotation/Json.html
+++ b/content/site/apidocs/org/apache/juneau/json/annotation/Json.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/json/annotation/package-frame.html
index 94ae7de..fa9b49a 100644
--- a/content/site/apidocs/org/apache/juneau/json/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/json/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.json.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.json.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/json/annotation/package-summary.html
index 1ad0f01..061526e 100644
--- a/content/site/apidocs/org/apache/juneau/json/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/json/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.json.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.json.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.json.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.json.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/json/annotation/package-tree.html
index 013a46a..2a21d0d 100644
--- a/content/site/apidocs/org/apache/juneau/json/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/json/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.json.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.json.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.json.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.json.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/package-frame.html b/content/site/apidocs/org/apache/juneau/json/package-frame.html
index 1ef5748..5b271fa 100644
--- a/content/site/apidocs/org/apache/juneau/json/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/json/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/package-summary.html b/content/site/apidocs/org/apache/juneau/json/package-summary.html
index a4303f2..d5166da 100644
--- a/content/site/apidocs/org/apache/juneau/json/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/json/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/json/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/json/package-tree.html b/content/site/apidocs/org/apache/juneau/json/package-tree.html
index a7416b2..0877ad8 100644
--- a/content/site/apidocs/org/apache/juneau/json/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/json/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.json Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.json Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.json Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.json Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/Microservice.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/Microservice.html b/content/site/apidocs/org/apache/juneau/microservice/Microservice.html
index 9472b7d..b18347a 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/Microservice.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/Microservice.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Microservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Microservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Microservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Microservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/Resource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/Resource.html b/content/site/apidocs/org/apache/juneau/microservice/Resource.html
index e3ccd2f..62edacb 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/Resource.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/Resource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Resource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Resource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Resource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Resource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/ResourceGroup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/ResourceGroup.html b/content/site/apidocs/org/apache/juneau/microservice/ResourceGroup.html
index 4528a6c..8f5d4d4 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/ResourceGroup.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/ResourceGroup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResourceGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResourceGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResourceGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResourceGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/ResourceJena.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/ResourceJena.html b/content/site/apidocs/org/apache/juneau/microservice/ResourceJena.html
index 02b8e9c..f92ec52 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/ResourceJena.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/ResourceJena.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResourceJena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResourceJena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResourceJena (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResourceJena (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/RestMicroservice.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/RestMicroservice.html b/content/site/apidocs/org/apache/juneau/microservice/RestMicroservice.html
index e020df9..0292739 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/RestMicroservice.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/RestMicroservice.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMicroservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestMicroservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestMicroservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestMicroservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/package-frame.html b/content/site/apidocs/org/apache/juneau/microservice/package-frame.html
index 555d185..8dec189 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.microservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.microservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/package-summary.html b/content/site/apidocs/org/apache/juneau/microservice/package-summary.html
index 5338927..bb2d037 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.microservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.microservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.microservice (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.microservice (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/microservice/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/microservice/package-tree.html b/content/site/apidocs/org/apache/juneau/microservice/package-tree.html
index b742aeb..f079af6 100644
--- a/content/site/apidocs/org/apache/juneau/microservice/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/microservice/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.microservice Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.microservice Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.microservice Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.microservice Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[15/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html b/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
index 478816a..1b69bf6 100644
--- a/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
+++ b/content/site/apidocs/org/apache/juneau/BeanPropertyMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
 <div class="subNav">
 <ul class="navList">
 <li><a href="../../../org/apache/juneau/BeanMetaFiltered.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+<li><a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../index.html?org/apache/juneau/BeanPropertyMeta.html" target="_top">Frames</a></li>
@@ -73,7 +73,7 @@ var activeTableTab = "activeTableTab";
 <div>
 <ul class="subNavList">
 <li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
 <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
 <li><a href="#method.summary">Method</a></li>
@@ -123,6 +123,27 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <div class="summary">
 <ul class="blockList">
 <li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<ul class="blockList">
+<li class="blockList"><a name="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colLast" scope="col">Class and Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a></span></code>
+<div class="block">BeanPropertyMeta builder class.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
 <!-- ======== CONSTRUCTOR SUMMARY ======== -->
 <ul class="blockList">
 <li class="blockList"><a name="constructor.summary">
@@ -137,9 +158,8 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 </tr>
 <tr class="altColor">
 <td class="colFirst"><code>protected </code></td>
-<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/BeanPropertyMeta.html#BeanPropertyMeta-org.apache.juneau.BeanMeta-java.lang.String-">BeanPropertyMeta</a></span>(<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;?&gt;&nbsp;beanMeta,
-                <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code>
-<div class="block">Constructor.</div>
+<td class="colLast"><code><span class="memberNameLink"><a href="../../../org/apache/juneau/BeanPropertyMeta.html#BeanPropertyMeta-org.apache.juneau.BeanPropertyMeta.Builder-">BeanPropertyMeta</a></span>(<a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a>&nbsp;b)</code>
+<div class="block">Creates a new BeanPropertyMeta using the contents of the specified builder.</div>
 </td>
 </tr>
 </table>
@@ -286,19 +306,17 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <!--   -->
 </a>
 <h3>Constructor Detail</h3>
-<a name="BeanPropertyMeta-org.apache.juneau.BeanMeta-java.lang.String-">
+<a name="BeanPropertyMeta-org.apache.juneau.BeanPropertyMeta.Builder-">
 <!--   -->
 </a>
 <ul class="blockListLast">
 <li class="blockList">
 <h4>BeanPropertyMeta</h4>
-<pre>protected&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.68">BeanPropertyMeta</a>(<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;?&gt;&nbsp;beanMeta,
-                           <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</pre>
-<div class="block">Constructor.</div>
+<pre>protected&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.235">BeanPropertyMeta</a>(<a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau">BeanPropertyMeta.Builder</a>&nbsp;b)</pre>
+<div class="block">Creates a new BeanPropertyMeta using the contents of the specified builder.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
-<dd><code>beanMeta</code> - The metadata of the bean containing this property.</dd>
-<dd><code>name</code> - This property name.</dd>
+<dd><code>b</code> - The builder to copy fields from.</dd>
 </dl>
 </li>
 </ul>
@@ -316,7 +334,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <ul class="blockList">
 <li class="blockList">
 <h4>getName</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.91">getName</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.257">getName</a>()</pre>
 <div class="block">Returns the name of this bean property.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -331,7 +349,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 <li class="blockList">
 <h4>getBeanMeta</h4>
 <pre><a href="../../../org/apache/juneau/annotation/BeanIgnore.html" title="annotation in org.apache.juneau.annotation">@BeanIgnore</a>
-public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.101">getBeanMeta</a>()</pre>
+public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in org.apache.juneau">BeanMeta</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.267">getBeanMeta</a>()</pre>
 <div class="block">Returns the bean meta that this property belongs to.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -345,7 +363,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getGetter</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.110">getGetter</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.276">getGetter</a>()</pre>
 <div class="block">Returns the getter method for this property.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -359,7 +377,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getSetter</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.119">getSetter</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Method.html?is-external=true" title="class or interface in java.lang.reflect">Method</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.285">getSetter</a>()</pre>
 <div class="block">Returns the setter method for this property.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -373,7 +391,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getField</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Field.html?is-external=true" title="class or interface in java.lang.reflect">Field</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.128">getField</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/reflect/Field.html?is-external=true" title="class or interface in java.lang.reflect">Field</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.294">getField</a>()</pre>
 <div class="block">Returns the field for this property.</div>
 <dl>
 <dt><span class="returnLabel">Returns:</span></dt>
@@ -387,7 +405,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getClassMeta</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.141">getClassMeta</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau">ClassMeta</a>&lt;?&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.307">getClassMeta</a>()</pre>
 <div class="block">Returns the <a href="../../../org/apache/juneau/ClassMeta.html" title="class in org.apache.juneau"><code>ClassMeta</code></a> of the class of this property.
  <p>
  If this property or the property type class has a <a href="../../../org/apache/juneau/transform/PojoSwap.html" title="class in org.apache.juneau.transform"><code>PojoSwap</code></a> associated with it, this
@@ -405,7 +423,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getBeanRegistry</h4>
-<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanRegistry.html" title="class in org.apache.juneau">BeanRegistry</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.156">getBeanRegistry</a>()</pre>
+<pre>public&nbsp;<a href="../../../org/apache/juneau/BeanRegistry.html" title="class in org.apache.juneau">BeanRegistry</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.320">getBeanRegistry</a>()</pre>
 <div class="block">Returns the bean dictionary in use for this bean property.
  The order of lookup for the dictionary is as follows:
  <ol>
@@ -424,7 +442,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>isUri</h4>
-<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.218">isUri</a>()</pre>
+<pre>public&nbsp;boolean&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.336">isUri</a>()</pre>
 <div class="block">Returns <jk>true</jk> if this bean property is a URI.
  <p>
  A bean property can be considered a URI if any of the following are true:
@@ -445,7 +463,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getProperties</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.228">getProperties</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.346">getProperties</a>()</pre>
 <div class="block">Returns the override list of properties defined through a <a href="../../../org/apache/juneau/annotation/BeanProperty.html#properties--"><code>BeanProperty.properties()</code></a> annotation
   on this property.</div>
 <dl>
@@ -460,7 +478,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>getExtendedMeta</h4>
-<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau">BeanPropertyMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.238">getExtendedMeta</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;M&gt;&nbsp;c)</pre>
+<pre>public&nbsp;&lt;M extends <a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau">BeanPropertyMetaExtended</a>&gt;&nbsp;M&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.356">getExtendedMeta</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;M&gt;&nbsp;c)</pre>
 <div class="block">Returns the language-specified extended metadata on this bean property.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -476,7 +494,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>get</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.329">get</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m)</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.368">get</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m)</pre>
 <div class="block">Equivalent to calling <a href="../../../org/apache/juneau/BeanMap.html#get-java.lang.Object-"><code>BeanMap.get(Object)</code></a>, but is faster since it avoids looking up the property meta.</div>
 <dl>
 <dt><span class="paramLabel">Parameters:</span></dt>
@@ -492,7 +510,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>set</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.402">set</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.444">set</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                   <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)
            throws <a href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in org.apache.juneau">BeanRuntimeException</a></pre>
 <div class="block">Equivalent to calling <a href="../../../org/apache/juneau/BeanMap.html#put-java.lang.String-java.lang.Object-"><code>BeanMap.put(String, Object)</code></a>, but is faster since it avoids
@@ -514,7 +532,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>setArray</h4>
-<pre>protected&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.611">setArray</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;bean,
+<pre>protected&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.653">setArray</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;bean,
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&nbsp;l)
                  throws <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a>,
                         <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalAccessException.html?is-external=true" title="class or interface in java.lang">IllegalAccessException</a>,
@@ -538,7 +556,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>add</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.630">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.672">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                 <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)
          throws <a href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in org.apache.juneau">BeanRuntimeException</a></pre>
 <div class="block">Adds a value to a <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util"><code>Collection</code></a> or array property.
@@ -559,7 +577,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>add</h4>
-<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.724">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
+<pre>public&nbsp;void&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.766">add</a>(<a href="../../../org/apache/juneau/BeanMap.html" title="class in org.apache.juneau">BeanMap</a>&lt;?&gt;&nbsp;m,
                 <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;key,
                 <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;value)
          throws <a href="../../../org/apache/juneau/BeanRuntimeException.html" title="class in org.apache.juneau">BeanRuntimeException</a></pre>
@@ -580,7 +598,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockList">
 <li class="blockList">
 <h4>findAnnotations</h4>
-<pre>public&nbsp;&lt;A extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Annotation.html?is-external=true" title="class or interface in java.lang.annotation">Annotation</a>&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;A&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.825">findAnnotations</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;A&gt;&nbsp;a)</pre>
+<pre>public&nbsp;&lt;A extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/annotation/Annotation.html?is-external=true" title="class or interface in java.lang.annotation">Annotation</a>&gt;&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/util/List.html?is-external=true" title="class or interface in java.util">List</a>&lt;A&gt;&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.867">findAnnotations</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;A&gt;&nbsp;a)</pre>
 <div class="block">Returns all instances of the specified annotation in the hierarchy of this bean property.
  <p>
  Searches through the class hierarchy (e.g. superclasses, interfaces, packages) for all
@@ -599,7 +617,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <ul class="blockListLast">
 <li class="blockList">
 <h4>toString</h4>
-<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.897">toString</a>()</pre>
+<pre>public&nbsp;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../src-html/org/apache/juneau/BeanPropertyMeta.html#line.939">toString</a>()</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
 <dd><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
@@ -634,7 +652,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <div class="subNav">
 <ul class="navList">
 <li><a href="../../../org/apache/juneau/BeanMetaFiltered.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
-<li><a href="../../../org/apache/juneau/BeanPropertyMetaExtended.html" title="class in org.apache.juneau"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
+<li><a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
 </ul>
 <ul class="navList">
 <li><a href="../../../index.html?org/apache/juneau/BeanPropertyMeta.html" target="_top">Frames</a></li>
@@ -658,7 +676,7 @@ public&nbsp;<a href="../../../org/apache/juneau/BeanMeta.html" title="class in o
 <div>
 <ul class="subNavList">
 <li>Summary:&nbsp;</li>
-<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
 <li>Field&nbsp;|&nbsp;</li>
 <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
 <li><a href="#method.summary">Method</a></li>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanPropertyMetaExtended.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanPropertyMetaExtended.html b/content/site/apidocs/org/apache/juneau/BeanPropertyMetaExtended.html
index 3993db2..6d13c8c 100644
--- a/content/site/apidocs/org/apache/juneau/BeanPropertyMetaExtended.html
+++ b/content/site/apidocs/org/apache/juneau/BeanPropertyMetaExtended.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanPropertyMetaExtended (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanPropertyMetaExtended (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanPropertyMetaExtended (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanPropertyMetaExtended (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -48,7 +48,7 @@ var activeTableTab = "activeTableTab";
 </div>
 <div class="subNav">
 <ul class="navList">
-<li><a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
 <li><a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
 </ul>
 <ul class="navList">
@@ -249,7 +249,7 @@ extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?
 </div>
 <div class="subNav">
 <ul class="navList">
-<li><a href="../../../org/apache/juneau/BeanPropertyMeta.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
+<li><a href="../../../org/apache/juneau/BeanPropertyMeta.Builder.html" title="class in org.apache.juneau"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
 <li><a href="../../../org/apache/juneau/BeanPropertyValue.html" title="class in org.apache.juneau"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
 </ul>
 <ul class="navList">

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanPropertyValue.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanPropertyValue.html b/content/site/apidocs/org/apache/juneau/BeanPropertyValue.html
index e1afdc2..1e15ad0 100644
--- a/content/site/apidocs/org/apache/juneau/BeanPropertyValue.html
+++ b/content/site/apidocs/org/apache/juneau/BeanPropertyValue.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanPropertyValue (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanPropertyValue (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanPropertyValue (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanPropertyValue (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanProxyInvocationHandler.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanProxyInvocationHandler.html b/content/site/apidocs/org/apache/juneau/BeanProxyInvocationHandler.html
index 7737ecd..ffd2e90 100644
--- a/content/site/apidocs/org/apache/juneau/BeanProxyInvocationHandler.html
+++ b/content/site/apidocs/org/apache/juneau/BeanProxyInvocationHandler.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanProxyInvocationHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanProxyInvocationHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanProxyInvocationHandler (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanProxyInvocationHandler (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanRegistry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanRegistry.html b/content/site/apidocs/org/apache/juneau/BeanRegistry.html
index 62e7b0b..2401e64 100644
--- a/content/site/apidocs/org/apache/juneau/BeanRegistry.html
+++ b/content/site/apidocs/org/apache/juneau/BeanRegistry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanRegistry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanRegistry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanRegistry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanRegistry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanRuntimeException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanRuntimeException.html b/content/site/apidocs/org/apache/juneau/BeanRuntimeException.html
index 8d4bda9..67ab2b3 100644
--- a/content/site/apidocs/org/apache/juneau/BeanRuntimeException.html
+++ b/content/site/apidocs/org/apache/juneau/BeanRuntimeException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanRuntimeException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanRuntimeException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanRuntimeException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanRuntimeException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/BeanSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/BeanSession.html b/content/site/apidocs/org/apache/juneau/BeanSession.html
index b84bf50..dc28ddb 100644
--- a/content/site/apidocs/org/apache/juneau/BeanSession.html
+++ b/content/site/apidocs/org/apache/juneau/BeanSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ClassMeta.html b/content/site/apidocs/org/apache/juneau/ClassMeta.html
index 33e486c..4e75f11 100644
--- a/content/site/apidocs/org/apache/juneau/ClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/ClassMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ClassMetaExtended.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ClassMetaExtended.html b/content/site/apidocs/org/apache/juneau/ClassMetaExtended.html
index b69598b..eec121c 100644
--- a/content/site/apidocs/org/apache/juneau/ClassMetaExtended.html
+++ b/content/site/apidocs/org/apache/juneau/ClassMetaExtended.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ClassMetaExtended (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ClassMetaExtended (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClassMetaExtended (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ClassMetaExtended (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ConfigException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ConfigException.html b/content/site/apidocs/org/apache/juneau/ConfigException.html
index 4998d97..a73ec9d 100644
--- a/content/site/apidocs/org/apache/juneau/ConfigException.html
+++ b/content/site/apidocs/org/apache/juneau/ConfigException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Context.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Context.html b/content/site/apidocs/org/apache/juneau/Context.html
index 2dc3842..7f4e537 100644
--- a/content/site/apidocs/org/apache/juneau/Context.html
+++ b/content/site/apidocs/org/apache/juneau/Context.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Context (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Context (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Context (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Context (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html b/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html
index e7a410c..014c90d 100644
--- a/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html
+++ b/content/site/apidocs/org/apache/juneau/ContextFactory.PropertyMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ContextFactory.PropertyMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ContextFactory.PropertyMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ContextFactory.PropertyMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ContextFactory.PropertyMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ContextFactory.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ContextFactory.html b/content/site/apidocs/org/apache/juneau/ContextFactory.html
index 315aecd..104007e 100644
--- a/content/site/apidocs/org/apache/juneau/ContextFactory.html
+++ b/content/site/apidocs/org/apache/juneau/ContextFactory.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ContextFactory (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ContextFactory (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ContextFactory (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ContextFactory (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/CoreApi.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/CoreApi.html b/content/site/apidocs/org/apache/juneau/CoreApi.html
index 363d1b7..cf2a042 100644
--- a/content/site/apidocs/org/apache/juneau/CoreApi.html
+++ b/content/site/apidocs/org/apache/juneau/CoreApi.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CoreApi (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CoreApi (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CoreApi (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CoreApi (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Delegate.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Delegate.html b/content/site/apidocs/org/apache/juneau/Delegate.html
index 166a381..899d7bb 100644
--- a/content/site/apidocs/org/apache/juneau/Delegate.html
+++ b/content/site/apidocs/org/apache/juneau/Delegate.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Delegate (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Delegate (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Delegate (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Delegate (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/FormattedException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/FormattedException.html b/content/site/apidocs/org/apache/juneau/FormattedException.html
index c89150d..d02ef45 100644
--- a/content/site/apidocs/org/apache/juneau/FormattedException.html
+++ b/content/site/apidocs/org/apache/juneau/FormattedException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>FormattedException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>FormattedException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="FormattedException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="FormattedException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/FormattedRuntimeException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/FormattedRuntimeException.html b/content/site/apidocs/org/apache/juneau/FormattedRuntimeException.html
index 890fa99..96e2b4a 100644
--- a/content/site/apidocs/org/apache/juneau/FormattedRuntimeException.html
+++ b/content/site/apidocs/org/apache/juneau/FormattedRuntimeException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>FormattedRuntimeException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>FormattedRuntimeException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="FormattedRuntimeException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="FormattedRuntimeException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/InvalidDataConversionException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/InvalidDataConversionException.html b/content/site/apidocs/org/apache/juneau/InvalidDataConversionException.html
index 66dc55f..76c99ae 100644
--- a/content/site/apidocs/org/apache/juneau/InvalidDataConversionException.html
+++ b/content/site/apidocs/org/apache/juneau/InvalidDataConversionException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>InvalidDataConversionException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>InvalidDataConversionException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="InvalidDataConversionException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="InvalidDataConversionException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Lockable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Lockable.html b/content/site/apidocs/org/apache/juneau/Lockable.html
index 23b9fc0..ce43262 100644
--- a/content/site/apidocs/org/apache/juneau/Lockable.html
+++ b/content/site/apidocs/org/apache/juneau/Lockable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Lockable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Lockable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Lockable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Lockable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/LockedException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/LockedException.html b/content/site/apidocs/org/apache/juneau/LockedException.html
index 9b08b8f..b585c6d 100644
--- a/content/site/apidocs/org/apache/juneau/LockedException.html
+++ b/content/site/apidocs/org/apache/juneau/LockedException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>LockedException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>LockedException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="LockedException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="LockedException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/MediaRange.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/MediaRange.html b/content/site/apidocs/org/apache/juneau/MediaRange.html
index 1f9538c..401dc64 100644
--- a/content/site/apidocs/org/apache/juneau/MediaRange.html
+++ b/content/site/apidocs/org/apache/juneau/MediaRange.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MediaRange (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MediaRange (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MediaRange (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MediaRange (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/MediaType.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/MediaType.html b/content/site/apidocs/org/apache/juneau/MediaType.html
index eb78110..e4ab111 100644
--- a/content/site/apidocs/org/apache/juneau/MediaType.html
+++ b/content/site/apidocs/org/apache/juneau/MediaType.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MediaType (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MediaType (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MediaType (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MediaType (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ObjectList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ObjectList.html b/content/site/apidocs/org/apache/juneau/ObjectList.html
index d604f0c..605bbd8 100644
--- a/content/site/apidocs/org/apache/juneau/ObjectList.html
+++ b/content/site/apidocs/org/apache/juneau/ObjectList.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ObjectList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ObjectList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ObjectList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ObjectList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ObjectMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ObjectMap.html b/content/site/apidocs/org/apache/juneau/ObjectMap.html
index 51b2128..182da3c 100644
--- a/content/site/apidocs/org/apache/juneau/ObjectMap.html
+++ b/content/site/apidocs/org/apache/juneau/ObjectMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ObjectMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ObjectMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ObjectMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ObjectMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/PropertyNamer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/PropertyNamer.html b/content/site/apidocs/org/apache/juneau/PropertyNamer.html
index 980bc6d..b3f0260 100644
--- a/content/site/apidocs/org/apache/juneau/PropertyNamer.html
+++ b/content/site/apidocs/org/apache/juneau/PropertyNamer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PropertyNamer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PropertyNamer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PropertyNamer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PropertyNamer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/PropertyNamerDashedLC.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/PropertyNamerDashedLC.html b/content/site/apidocs/org/apache/juneau/PropertyNamerDashedLC.html
index a14c975..f3665a5 100644
--- a/content/site/apidocs/org/apache/juneau/PropertyNamerDashedLC.html
+++ b/content/site/apidocs/org/apache/juneau/PropertyNamerDashedLC.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PropertyNamerDashedLC (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PropertyNamerDashedLC (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PropertyNamerDashedLC (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PropertyNamerDashedLC (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/PropertyNamerDefault.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/PropertyNamerDefault.html b/content/site/apidocs/org/apache/juneau/PropertyNamerDefault.html
index 39b9edd..92478ce 100644
--- a/content/site/apidocs/org/apache/juneau/PropertyNamerDefault.html
+++ b/content/site/apidocs/org/apache/juneau/PropertyNamerDefault.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PropertyNamerDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PropertyNamerDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PropertyNamerDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PropertyNamerDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Session.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Session.html b/content/site/apidocs/org/apache/juneau/Session.html
index ed565c9..8d04dfd 100644
--- a/content/site/apidocs/org/apache/juneau/Session.html
+++ b/content/site/apidocs/org/apache/juneau/Session.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Session (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Session (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Session (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Session (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Streamable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Streamable.html b/content/site/apidocs/org/apache/juneau/Streamable.html
index 1a3a32f..7b6226f 100644
--- a/content/site/apidocs/org/apache/juneau/Streamable.html
+++ b/content/site/apidocs/org/apache/juneau/Streamable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Streamable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Streamable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Streamable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Streamable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Visibility.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Visibility.html b/content/site/apidocs/org/apache/juneau/Visibility.html
index b7f5eb5..e10fe41 100644
--- a/content/site/apidocs/org/apache/juneau/Visibility.html
+++ b/content/site/apidocs/org/apache/juneau/Visibility.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Visibility (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Visibility (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Visibility (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Visibility (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/Writable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/Writable.html b/content/site/apidocs/org/apache/juneau/Writable.html
index ba6fee7..0e31f5e 100644
--- a/content/site/apidocs/org/apache/juneau/Writable.html
+++ b/content/site/apidocs/org/apache/juneau/Writable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Writable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Writable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Writable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Writable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Bean.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Bean.html b/content/site/apidocs/org/apache/juneau/annotation/Bean.html
index da16f47..b3fc685 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Bean.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Bean.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Bean (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Bean (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Bean (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Bean (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/BeanConstructor.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/BeanConstructor.html b/content/site/apidocs/org/apache/juneau/annotation/BeanConstructor.html
index cf68534..903d444 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/BeanConstructor.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/BeanConstructor.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanConstructor (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanConstructor (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanConstructor (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanConstructor (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/BeanIgnore.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/BeanIgnore.html b/content/site/apidocs/org/apache/juneau/annotation/BeanIgnore.html
index 5ec06f4..931bc4a 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/BeanIgnore.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/BeanIgnore.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanIgnore (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanIgnore (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanIgnore (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanIgnore (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/BeanParam.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/BeanParam.html b/content/site/apidocs/org/apache/juneau/annotation/BeanParam.html
index 7ec0085..ce05bba 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/BeanParam.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/BeanParam.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanParam (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanParam (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanParam (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanParam (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/BeanProperty.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/BeanProperty.html b/content/site/apidocs/org/apache/juneau/annotation/BeanProperty.html
index 95b7e7a..93ffb52 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/BeanProperty.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/BeanProperty.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Consumes.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Consumes.html b/content/site/apidocs/org/apache/juneau/annotation/Consumes.html
index 1f59850..61ae121 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Consumes.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Consumes.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Consumes (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Consumes (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Consumes (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Consumes (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html b/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html
index 3546206..7042f66 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/NameProperty.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>NameProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>NameProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="NameProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="NameProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Null.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Null.html b/content/site/apidocs/org/apache/juneau/annotation/Null.html
index fc17e21..c05bd0f 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Null.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Null.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Null (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Null (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Null (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Null (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Overrideable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Overrideable.html b/content/site/apidocs/org/apache/juneau/annotation/Overrideable.html
index 290347b..206d117 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Overrideable.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Overrideable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Overrideable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Overrideable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Overrideable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Overrideable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html b/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html
index 540d64a..6685a42 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/ParentProperty.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParentProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParentProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParentProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParentProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Pojo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Pojo.html b/content/site/apidocs/org/apache/juneau/annotation/Pojo.html
index f398d13..578eb57 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Pojo.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Pojo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Pojo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Pojo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Pojo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Pojo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Produces.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Produces.html b/content/site/apidocs/org/apache/juneau/annotation/Produces.html
index ba3f57a..d2dce69 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Produces.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Produces.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Produces (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Produces (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Produces (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Produces (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/Remoteable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/Remoteable.html b/content/site/apidocs/org/apache/juneau/annotation/Remoteable.html
index 61ad210..b8ea1bc 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/Remoteable.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/Remoteable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Remoteable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Remoteable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Remoteable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Remoteable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html b/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html
index d0d679a..9d78f13 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/ThreadSafe.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ThreadSafe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ThreadSafe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThreadSafe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ThreadSafe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/URI.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/URI.html b/content/site/apidocs/org/apache/juneau/annotation/URI.html
index 962c8f2..ee7a554 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/URI.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/URI.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>URI (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>URI (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="URI (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="URI (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/annotation/package-frame.html
index 16d4b3d..6c3c719 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/annotation/package-summary.html
index 3d99339..c78674d 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[13/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/H2.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/H2.html b/content/site/apidocs/org/apache/juneau/dto/html5/H2.html
index aa4b6d5..291e326 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/H2.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/H2.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>H2 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>H2 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="H2 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="H2 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/H3.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/H3.html b/content/site/apidocs/org/apache/juneau/dto/html5/H3.html
index f961b00..8a165d7 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/H3.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/H3.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>H3 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>H3 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="H3 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="H3 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/H4.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/H4.html b/content/site/apidocs/org/apache/juneau/dto/html5/H4.html
index bdd7561..7ed2b7d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/H4.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/H4.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>H4 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>H4 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="H4 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="H4 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/H5.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/H5.html b/content/site/apidocs/org/apache/juneau/dto/html5/H5.html
index fefd9a9..8048750 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/H5.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/H5.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>H5 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>H5 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="H5 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="H5 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/H6.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/H6.html b/content/site/apidocs/org/apache/juneau/dto/html5/H6.html
index 35da977..89096d8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/H6.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/H6.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>H6 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>H6 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="H6 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="H6 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Head.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Head.html b/content/site/apidocs/org/apache/juneau/dto/html5/Head.html
index a68607d..5a40413 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Head.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Head.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Head (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Head (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Head (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Head (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Header.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Header.html b/content/site/apidocs/org/apache/juneau/dto/html5/Header.html
index e92d008..064f64c 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Header.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Header.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Header (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Header (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Header (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Header (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Hr.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Hr.html b/content/site/apidocs/org/apache/juneau/dto/html5/Hr.html
index 3007c7b..e4e34bf 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Hr.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Hr.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Hr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Hr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Hr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Hr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Html.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Html.html b/content/site/apidocs/org/apache/juneau/dto/html5/Html.html
index ccec147..399634f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Html.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Html.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBeanDictionary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBeanDictionary.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBeanDictionary.html
index e67ddae..267b88c 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBeanDictionary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBeanDictionary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlBeanDictionary (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlBeanDictionary (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlBeanDictionary (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlBeanDictionary (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBuilder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBuilder.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBuilder.html
index 5a26a12..acb1c86 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBuilder.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlBuilder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElement.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElement.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElement.html
index 7a3cd3c..752aa59 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElement.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElement.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlElement (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlElement (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlElement (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlElement (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementContainer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementContainer.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementContainer.html
index febc793..52a6b17 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementContainer.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementContainer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlElementContainer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlElementContainer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlElementContainer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlElementContainer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementEmpty.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementEmpty.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementEmpty.html
index 8ab4043..cd18a4c 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementEmpty.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementEmpty.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlElementEmpty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlElementEmpty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlElementEmpty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlElementEmpty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementMixed.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementMixed.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementMixed.html
index 5c95a6f..5b88b5f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementMixed.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementMixed.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlElementMixed (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlElementMixed (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlElementMixed (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlElementMixed (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementText.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementText.html b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementText.html
index 1317c21..862295d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementText.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/HtmlElementText.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlElementText (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlElementText (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlElementText (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlElementText (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/I.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/I.html b/content/site/apidocs/org/apache/juneau/dto/html5/I.html
index d6c675c..07ef8dc 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/I.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/I.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>I (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>I (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="I (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="I (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Iframe.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Iframe.html b/content/site/apidocs/org/apache/juneau/dto/html5/Iframe.html
index 401ee52..2793ecc 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Iframe.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Iframe.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Iframe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Iframe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Iframe (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Iframe (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Img.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Img.html b/content/site/apidocs/org/apache/juneau/dto/html5/Img.html
index ba849f2..936f7b9 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Img.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Img.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Img (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Img (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Img (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Img (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Input.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Input.html b/content/site/apidocs/org/apache/juneau/dto/html5/Input.html
index 2c7e506..3337aab 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Input.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Input.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Input (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Input (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Input (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Input (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Ins.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Ins.html b/content/site/apidocs/org/apache/juneau/dto/html5/Ins.html
index 02af52a..2191479 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Ins.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Ins.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Ins (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Ins (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Ins (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Ins (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Kbd.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Kbd.html b/content/site/apidocs/org/apache/juneau/dto/html5/Kbd.html
index 0006f06..71256ac 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Kbd.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Kbd.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Kbd (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Kbd (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Kbd (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Kbd (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Keygen.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Keygen.html b/content/site/apidocs/org/apache/juneau/dto/html5/Keygen.html
index 9ff2e3d..b3c8139 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Keygen.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Keygen.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Keygen (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Keygen (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Keygen (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Keygen (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Label.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Label.html b/content/site/apidocs/org/apache/juneau/dto/html5/Label.html
index 40ec618..2dc9fb9 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Label.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Label.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Label (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Label (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Label (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Label (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Legend.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Legend.html b/content/site/apidocs/org/apache/juneau/dto/html5/Legend.html
index ced2aa6..486073e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Legend.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Legend.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Legend (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Legend (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Legend (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Legend (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Li.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Li.html b/content/site/apidocs/org/apache/juneau/dto/html5/Li.html
index ca6a46d..dac9e6b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Li.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Li.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Li (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Li (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Li (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Li (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Link.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Link.html b/content/site/apidocs/org/apache/juneau/dto/html5/Link.html
index 7f3c4e6..ec5aec8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Link.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Link.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Link (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Link (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Link (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Link (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Main.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Main.html b/content/site/apidocs/org/apache/juneau/dto/html5/Main.html
index 4c2cfc8..74205ae 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Main.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Main.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Main (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Main (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Main (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Main (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Map.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Map.html b/content/site/apidocs/org/apache/juneau/dto/html5/Map.html
index 93fef42..47c6119 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Map.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Map.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Map (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Map (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Map (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Map (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Mark.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Mark.html b/content/site/apidocs/org/apache/juneau/dto/html5/Mark.html
index 470f542..0eeeadb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Mark.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Mark.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Mark (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Mark (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Mark (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Mark (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Meta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Meta.html b/content/site/apidocs/org/apache/juneau/dto/html5/Meta.html
index 9429b64..5c17ca8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Meta.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Meta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Meta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Meta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Meta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Meta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Meter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Meter.html b/content/site/apidocs/org/apache/juneau/dto/html5/Meter.html
index c3226e1..27be864 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Meter.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Meter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Meter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Meter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Meter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Meter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Nav.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Nav.html b/content/site/apidocs/org/apache/juneau/dto/html5/Nav.html
index eb4e574..58b6133 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Nav.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Nav.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Nav (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Nav (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Nav (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Nav (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Noscript.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Noscript.html b/content/site/apidocs/org/apache/juneau/dto/html5/Noscript.html
index dbfd3d8..d1b48f2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Noscript.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Noscript.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Noscript (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Noscript (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Noscript (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Noscript (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Object2.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Object2.html b/content/site/apidocs/org/apache/juneau/dto/html5/Object2.html
index 2365a60..610f071 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Object2.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Object2.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Object2 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Object2 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Object2 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Object2 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Ol.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Ol.html b/content/site/apidocs/org/apache/juneau/dto/html5/Ol.html
index baecf89..ca59929 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Ol.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Ol.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Ol (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Ol (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Ol (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Ol (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Optgroup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Optgroup.html b/content/site/apidocs/org/apache/juneau/dto/html5/Optgroup.html
index e13b026..5864fa2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Optgroup.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Optgroup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Optgroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Optgroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Optgroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Optgroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Option.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Option.html b/content/site/apidocs/org/apache/juneau/dto/html5/Option.html
index fc50a9b..bcecda6 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Option.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Option.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Option (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Option (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Option (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Option (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Output.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Output.html b/content/site/apidocs/org/apache/juneau/dto/html5/Output.html
index 7131d6e..1208a2b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Output.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Output.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Output (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Output (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Output (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Output (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/P.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/P.html b/content/site/apidocs/org/apache/juneau/dto/html5/P.html
index 8a4fc79..02d54ee 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/P.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/P.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>P (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>P (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="P (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="P (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Param.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Param.html b/content/site/apidocs/org/apache/juneau/dto/html5/Param.html
index 11e5151..3e9550e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Param.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Param.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Param (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Param (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Param (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Param (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Pre.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Pre.html b/content/site/apidocs/org/apache/juneau/dto/html5/Pre.html
index 3afb934..03d7a44 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Pre.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Pre.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Pre (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Pre (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Pre (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Pre (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Progress.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Progress.html b/content/site/apidocs/org/apache/juneau/dto/html5/Progress.html
index 95190ab..0b25905 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Progress.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Progress.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Progress (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Progress (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Progress (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Progress (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Q.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Q.html b/content/site/apidocs/org/apache/juneau/dto/html5/Q.html
index d518d82..b61528b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Q.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Q.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Q (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Q (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Q (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Q (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Rb.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Rb.html b/content/site/apidocs/org/apache/juneau/dto/html5/Rb.html
index 4e46bbf..88203e6 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Rb.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Rb.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Rb (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Rb (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Rb (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Rb (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Rp.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Rp.html b/content/site/apidocs/org/apache/juneau/dto/html5/Rp.html
index 46d1164..d329cdb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Rp.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Rp.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Rp (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Rp (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Rp (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Rp (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Rt.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Rt.html b/content/site/apidocs/org/apache/juneau/dto/html5/Rt.html
index 409b1fa..9d20e89 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Rt.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Rt.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Rt (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Rt (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Rt (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Rt (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Rtc.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Rtc.html b/content/site/apidocs/org/apache/juneau/dto/html5/Rtc.html
index 0569953..f1cedad 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Rtc.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Rtc.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Rtc (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Rtc (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Rtc (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Rtc (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Ruby.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Ruby.html b/content/site/apidocs/org/apache/juneau/dto/html5/Ruby.html
index ba3ff7b..790ba34 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Ruby.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Ruby.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Ruby (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Ruby (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Ruby (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Ruby (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/S.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/S.html b/content/site/apidocs/org/apache/juneau/dto/html5/S.html
index 9d6b655..6f01fb2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/S.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/S.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>S (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>S (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="S (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="S (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Samp.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Samp.html b/content/site/apidocs/org/apache/juneau/dto/html5/Samp.html
index cfd9d35..92d22b3 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Samp.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Samp.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Samp (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Samp (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Samp (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Samp (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Script.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Script.html b/content/site/apidocs/org/apache/juneau/dto/html5/Script.html
index 8270361..59c74a8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Script.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Script.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Script (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Script (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Script (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Script (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Section.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Section.html b/content/site/apidocs/org/apache/juneau/dto/html5/Section.html
index eb3cdba..375f0f9 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Section.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Section.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Section (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Section (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Section (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Section (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Select.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Select.html b/content/site/apidocs/org/apache/juneau/dto/html5/Select.html
index e4b0b32..7468ef6 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Select.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Select.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Select (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Select (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Select (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Select (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Small.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Small.html b/content/site/apidocs/org/apache/juneau/dto/html5/Small.html
index d2edf25..1d61cc8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Small.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Small.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Small (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Small (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Small (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Small (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Source.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Source.html b/content/site/apidocs/org/apache/juneau/dto/html5/Source.html
index 05db511..17ed7b3 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Source.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Source.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Source (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Source (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Source (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Source (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Span.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Span.html b/content/site/apidocs/org/apache/juneau/dto/html5/Span.html
index e5d89e8..bb0a48e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Span.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Span.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Span (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Span (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Span (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Span (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Strong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Strong.html b/content/site/apidocs/org/apache/juneau/dto/html5/Strong.html
index 9a960ec..b5514be 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Strong.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Strong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Strong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Strong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Strong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Strong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Style.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Style.html b/content/site/apidocs/org/apache/juneau/dto/html5/Style.html
index bafe1ce..631be77 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Style.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Style.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Style (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Style (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Style (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Style (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Sub.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Sub.html b/content/site/apidocs/org/apache/juneau/dto/html5/Sub.html
index 48b94c0..aec6e51 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Sub.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Sub.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Sub (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Sub (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Sub (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Sub (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Sup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Sup.html b/content/site/apidocs/org/apache/juneau/dto/html5/Sup.html
index 5c1d25d..28cc0af 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Sup.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Sup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Sup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Sup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Sup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Sup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Table.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Table.html b/content/site/apidocs/org/apache/juneau/dto/html5/Table.html
index 18c1cfc..8f51f31 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Table.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Table.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Table (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Table (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Table (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Table (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Tbody.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Tbody.html b/content/site/apidocs/org/apache/juneau/dto/html5/Tbody.html
index 5bf19cc..084e17f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Tbody.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Tbody.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Tbody (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Tbody (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Tbody (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Tbody (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Td.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Td.html b/content/site/apidocs/org/apache/juneau/dto/html5/Td.html
index c84f9ee..606226b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Td.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Td.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Td (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Td (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Td (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Td (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Template.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Template.html b/content/site/apidocs/org/apache/juneau/dto/html5/Template.html
index 802b44a..94127f4 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Template.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Template.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Template (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Template (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Template (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Template (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Textarea.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Textarea.html b/content/site/apidocs/org/apache/juneau/dto/html5/Textarea.html
index 9f28757..51da5e4 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Textarea.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Textarea.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Textarea (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Textarea (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Textarea (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Textarea (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Tfoot.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Tfoot.html b/content/site/apidocs/org/apache/juneau/dto/html5/Tfoot.html
index e3e0ea0..6378339 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Tfoot.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Tfoot.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Tfoot (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Tfoot (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Tfoot (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Tfoot (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Th.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Th.html b/content/site/apidocs/org/apache/juneau/dto/html5/Th.html
index 59af43e..0c4920f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Th.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Th.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Th (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Th (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Th (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Th (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[03/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/src-html/org/apache/juneau/BeanMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/src-html/org/apache/juneau/BeanMeta.html b/content/site/apidocs/src-html/org/apache/juneau/BeanMeta.html
index d04d038..98dc250 100644
--- a/content/site/apidocs/src-html/org/apache/juneau/BeanMeta.html
+++ b/content/site/apidocs/src-html/org/apache/juneau/BeanMeta.html
@@ -119,17 +119,17 @@
 <span class="sourceLineNo">111</span>      this.notABeanReason = b.init(this);<a name="line.111"></a>
 <span class="sourceLineNo">112</span><a name="line.112"></a>
 <span class="sourceLineNo">113</span>      this.beanFilter = beanFilter;<a name="line.113"></a>
-<span class="sourceLineNo">114</span>      this.dictionaryName = (beanFilter == null ? null : beanFilter.getTypeName());<a name="line.114"></a>
-<span class="sourceLineNo">115</span>      this.properties = b.properties;<a name="line.115"></a>
+<span class="sourceLineNo">114</span>      this.dictionaryName = beanFilter == null ? null : beanFilter.getTypeName();<a name="line.114"></a>
+<span class="sourceLineNo">115</span>      this.properties = b.properties == null ? null : Collections.unmodifiableMap(b.properties);<a name="line.115"></a>
 <span class="sourceLineNo">116</span>      this.getterProps = Collections.unmodifiableMap(b.getterProps);<a name="line.116"></a>
 <span class="sourceLineNo">117</span>      this.setterProps = Collections.unmodifiableMap(b.setterProps);<a name="line.117"></a>
-<span class="sourceLineNo">118</span>      this.typeVarImpls = b.typeVarImpls;<a name="line.118"></a>
+<span class="sourceLineNo">118</span>      this.typeVarImpls = b.typeVarImpls == null ? null : Collections.unmodifiableMap(b.typeVarImpls);<a name="line.118"></a>
 <span class="sourceLineNo">119</span>      this.constructor = b.constructor;<a name="line.119"></a>
 <span class="sourceLineNo">120</span>      this.constructorArgs = b.constructorArgs;<a name="line.120"></a>
 <span class="sourceLineNo">121</span>      this.extMeta = b.extMeta;<a name="line.121"></a>
-<span class="sourceLineNo">122</span>      this.subTypeProperty = b.subTypeIdProperty;<a name="line.122"></a>
+<span class="sourceLineNo">122</span>      this.subTypeProperty = b.subTypeIdProperty == null ? null : b.subTypeIdProperty.build();<a name="line.122"></a>
 <span class="sourceLineNo">123</span>      this.beanRegistry = b.beanRegistry;<a name="line.123"></a>
-<span class="sourceLineNo">124</span>      this.typeProperty = new BeanPropertyMeta(this, ctx.getBeanTypePropertyName(), ctx.string(), beanRegistry);<a name="line.124"></a>
+<span class="sourceLineNo">124</span>      this.typeProperty = new BeanPropertyMeta.Builder(this, ctx.getBeanTypePropertyName(), ctx.string(), beanRegistry).build();<a name="line.124"></a>
 <span class="sourceLineNo">125</span>   }<a name="line.125"></a>
 <span class="sourceLineNo">126</span><a name="line.126"></a>
 <span class="sourceLineNo">127</span>   private static final class Builder&lt;T&gt; {<a name="line.127"></a>
@@ -144,7 +144,7 @@
 <span class="sourceLineNo">136</span>      Constructor&lt;T&gt; constructor;<a name="line.136"></a>
 <span class="sourceLineNo">137</span>      String[] constructorArgs = new String[0];<a name="line.137"></a>
 <span class="sourceLineNo">138</span>      MetadataMap extMeta = new MetadataMap();<a name="line.138"></a>
-<span class="sourceLineNo">139</span>      BeanPropertyMeta subTypeIdProperty;<a name="line.139"></a>
+<span class="sourceLineNo">139</span>      BeanPropertyMeta.Builder subTypeIdProperty;<a name="line.139"></a>
 <span class="sourceLineNo">140</span>      PropertyNamer propertyNamer;<a name="line.140"></a>
 <span class="sourceLineNo">141</span>      BeanRegistry beanRegistry;<a name="line.141"></a>
 <span class="sourceLineNo">142</span><a name="line.142"></a>
@@ -183,7 +183,7 @@
 <span class="sourceLineNo">175</span>            if (stopClass == null)<a name="line.175"></a>
 <span class="sourceLineNo">176</span>               stopClass = Object.class;<a name="line.176"></a>
 <span class="sourceLineNo">177</span><a name="line.177"></a>
-<span class="sourceLineNo">178</span>            Map&lt;String,BeanPropertyMeta&gt; normalProps = new LinkedHashMap&lt;String,BeanPropertyMeta&gt;();<a name="line.178"></a>
+<span class="sourceLineNo">178</span>            Map&lt;String,BeanPropertyMeta.Builder&gt; normalProps = new LinkedHashMap&lt;String,BeanPropertyMeta.Builder&gt;();<a name="line.178"></a>
 <span class="sourceLineNo">179</span><a name="line.179"></a>
 <span class="sourceLineNo">180</span>            /// See if this class matches one the patterns in the exclude-class list.<a name="line.180"></a>
 <span class="sourceLineNo">181</span>            if (ctx.isNotABean(c))<a name="line.181"></a>
@@ -246,7 +246,7 @@
 <span class="sourceLineNo">238</span>            // First populate the properties with those specified in the bean annotation to<a name="line.238"></a>
 <span class="sourceLineNo">239</span>            // ensure that ordering first.<a name="line.239"></a>
 <span class="sourceLineNo">240</span>            for (String name : fixedBeanProps)<a name="line.240"></a>
-<span class="sourceLineNo">241</span>               normalProps.put(name, new BeanPropertyMeta(beanMeta, name));<a name="line.241"></a>
+<span class="sourceLineNo">241</span>               normalProps.put(name, new BeanPropertyMeta.Builder(beanMeta, name));<a name="line.241"></a>
 <span class="sourceLineNo">242</span><a name="line.242"></a>
 <span class="sourceLineNo">243</span>            if (ctx.useJavaBeanIntrospector) {<a name="line.243"></a>
 <span class="sourceLineNo">244</span>               BeanInfo bi = null;<a name="line.244"></a>
@@ -258,7 +258,7 @@
 <span class="sourceLineNo">250</span>                  for (PropertyDescriptor pd : bi.getPropertyDescriptors()) {<a name="line.250"></a>
 <span class="sourceLineNo">251</span>                     String name = pd.getName();<a name="line.251"></a>
 <span class="sourceLineNo">252</span>                     if (! normalProps.containsKey(name))<a name="line.252"></a>
-<span class="sourceLineNo">253</span>                        normalProps.put(name, new BeanPropertyMeta(beanMeta, name));<a name="line.253"></a>
+<span class="sourceLineNo">253</span>                        normalProps.put(name, new BeanPropertyMeta.Builder(beanMeta, name));<a name="line.253"></a>
 <span class="sourceLineNo">254</span>                     normalProps.get(name).setGetter(pd.getReadMethod()).setSetter(pd.getWriteMethod());<a name="line.254"></a>
 <span class="sourceLineNo">255</span>                  }<a name="line.255"></a>
 <span class="sourceLineNo">256</span>               }<a name="line.256"></a>
@@ -269,7 +269,7 @@
 <span class="sourceLineNo">261</span>                  String name = findPropertyName(f, fixedBeanProps);<a name="line.261"></a>
 <span class="sourceLineNo">262</span>                  if (name != null) {<a name="line.262"></a>
 <span class="sourceLineNo">263</span>                     if (! normalProps.containsKey(name))<a name="line.263"></a>
-<span class="sourceLineNo">264</span>                        normalProps.put(name, new BeanPropertyMeta(beanMeta, name));<a name="line.264"></a>
+<span class="sourceLineNo">264</span>                        normalProps.put(name, new BeanPropertyMeta.Builder(beanMeta, name));<a name="line.264"></a>
 <span class="sourceLineNo">265</span>                     normalProps.get(name).setField(f);<a name="line.265"></a>
 <span class="sourceLineNo">266</span>                  }<a name="line.266"></a>
 <span class="sourceLineNo">267</span>               }<a name="line.267"></a>
@@ -281,8 +281,8 @@
 <span class="sourceLineNo">273</span>                  String pn = bm.propertyName;<a name="line.273"></a>
 <span class="sourceLineNo">274</span>                  Method m = bm.method;<a name="line.274"></a>
 <span class="sourceLineNo">275</span>                  if (! normalProps.containsKey(pn))<a name="line.275"></a>
-<span class="sourceLineNo">276</span>                     normalProps.put(pn, new BeanPropertyMeta(beanMeta, pn));<a name="line.276"></a>
-<span class="sourceLineNo">277</span>                  BeanPropertyMeta bpm = normalProps.get(pn);<a name="line.277"></a>
+<span class="sourceLineNo">276</span>                     normalProps.put(pn, new BeanPropertyMeta.Builder(beanMeta, pn));<a name="line.276"></a>
+<span class="sourceLineNo">277</span>                  BeanPropertyMeta.Builder bpm = normalProps.get(pn);<a name="line.277"></a>
 <span class="sourceLineNo">278</span>                  if (! bm.isSetter)<a name="line.278"></a>
 <span class="sourceLineNo">279</span>                     bpm.setGetter(m);<a name="line.279"></a>
 <span class="sourceLineNo">280</span>               }<a name="line.280"></a>
@@ -290,7 +290,7 @@
 <span class="sourceLineNo">282</span>               // Now iterate through all the setters.<a name="line.282"></a>
 <span class="sourceLineNo">283</span>               for (BeanMethod bm : bms) {<a name="line.283"></a>
 <span class="sourceLineNo">284</span>                  if (bm.isSetter) {<a name="line.284"></a>
-<span class="sourceLineNo">285</span>                     BeanPropertyMeta bpm = normalProps.get(bm.propertyName);<a name="line.285"></a>
+<span class="sourceLineNo">285</span>                     BeanPropertyMeta.Builder bpm = normalProps.get(bm.propertyName);<a name="line.285"></a>
 <span class="sourceLineNo">286</span>                     if (bm.matchesPropertyType(bpm))<a name="line.286"></a>
 <span class="sourceLineNo">287</span>                        bpm.setSetter(bm.method);<a name="line.287"></a>
 <span class="sourceLineNo">288</span>                  }<a name="line.288"></a>
@@ -303,16 +303,16 @@
 <span class="sourceLineNo">295</span>               typeVarImpls = null;<a name="line.295"></a>
 <span class="sourceLineNo">296</span><a name="line.296"></a>
 <span class="sourceLineNo">297</span>            // Eliminate invalid properties, and set the contents of getterProps and setterProps.<a name="line.297"></a>
-<span class="sourceLineNo">298</span>            for (Iterator&lt;BeanPropertyMeta&gt; i = normalProps.values().iterator(); i.hasNext();) {<a name="line.298"></a>
-<span class="sourceLineNo">299</span>               BeanPropertyMeta p = i.next();<a name="line.299"></a>
+<span class="sourceLineNo">298</span>            for (Iterator&lt;BeanPropertyMeta.Builder&gt; i = normalProps.values().iterator(); i.hasNext();) {<a name="line.298"></a>
+<span class="sourceLineNo">299</span>               BeanPropertyMeta.Builder p = i.next();<a name="line.299"></a>
 <span class="sourceLineNo">300</span>               try {<a name="line.300"></a>
 <span class="sourceLineNo">301</span>                  if (p.validate(ctx, beanRegistry, typeVarImpls)) {<a name="line.301"></a>
 <span class="sourceLineNo">302</span><a name="line.302"></a>
-<span class="sourceLineNo">303</span>                     if (p.getGetter() != null)<a name="line.303"></a>
-<span class="sourceLineNo">304</span>                        getterProps.put(p.getGetter(), p.getName());<a name="line.304"></a>
+<span class="sourceLineNo">303</span>                     if (p.getter != null)<a name="line.303"></a>
+<span class="sourceLineNo">304</span>                        getterProps.put(p.getter, p.name);<a name="line.304"></a>
 <span class="sourceLineNo">305</span><a name="line.305"></a>
-<span class="sourceLineNo">306</span>                     if (p.getSetter() != null)<a name="line.306"></a>
-<span class="sourceLineNo">307</span>                        setterProps.put(p.getSetter(), p.getName());<a name="line.307"></a>
+<span class="sourceLineNo">306</span>                     if (p.setter != null)<a name="line.306"></a>
+<span class="sourceLineNo">307</span>                        setterProps.put(p.setter, p.name);<a name="line.307"></a>
 <span class="sourceLineNo">308</span><a name="line.308"></a>
 <span class="sourceLineNo">309</span>                  } else {<a name="line.309"></a>
 <span class="sourceLineNo">310</span>                     i.remove();<a name="line.310"></a>
@@ -329,7 +329,7 @@
 <span class="sourceLineNo">321</span><a name="line.321"></a>
 <span class="sourceLineNo">322</span>            // Mark constructor arg properties.<a name="line.322"></a>
 <span class="sourceLineNo">323</span>            for (String fp : constructorArgs) {<a name="line.323"></a>
-<span class="sourceLineNo">324</span>               BeanPropertyMeta m = normalProps.get(fp);<a name="line.324"></a>
+<span class="sourceLineNo">324</span>               BeanPropertyMeta.Builder m = normalProps.get(fp);<a name="line.324"></a>
 <span class="sourceLineNo">325</span>               if (m == null)<a name="line.325"></a>
 <span class="sourceLineNo">326</span>                  throw new BeanRuntimeException(c, "The property ''{0}'' was defined on the @BeanConstructor(properties=X) annotation but was not found on the class definition.", fp);<a name="line.326"></a>
 <span class="sourceLineNo">327</span>               m.setAsConstructorArg();<a name="line.327"></a>
@@ -345,473 +345,486 @@
 <span class="sourceLineNo">337</span><a name="line.337"></a>
 <span class="sourceLineNo">338</span>            if (beanFilter != null &amp;&amp; beanFilter.getSubTypeProperty() != null) {<a name="line.338"></a>
 <span class="sourceLineNo">339</span>               String subTypeProperty = beanFilter.getSubTypeProperty();<a name="line.339"></a>
-<span class="sourceLineNo">340</span>               this.subTypeIdProperty = new SubTypePropertyMeta(beanMeta, subTypeProperty, beanFilter.getSubTypes(), normalProps.remove(subTypeProperty), beanRegistry);<a name="line.340"></a>
-<span class="sourceLineNo">341</span>               properties.put(subTypeProperty, this.subTypeIdProperty);<a name="line.341"></a>
-<span class="sourceLineNo">342</span>            }<a name="line.342"></a>
-<span class="sourceLineNo">343</span><a name="line.343"></a>
-<span class="sourceLineNo">344</span>            properties.putAll(normalProps);<a name="line.344"></a>
-<span class="sourceLineNo">345</span><a name="line.345"></a>
-<span class="sourceLineNo">346</span>            // If a beanFilter is defined, look for inclusion and exclusion lists.<a name="line.346"></a>
-<span class="sourceLineNo">347</span>            if (beanFilter != null) {<a name="line.347"></a>
-<span class="sourceLineNo">348</span><a name="line.348"></a>
-<span class="sourceLineNo">349</span>               // Eliminated excluded properties if BeanFilter.excludeKeys is specified.<a name="line.349"></a>
-<span class="sourceLineNo">350</span>               String[] includeKeys = beanFilter.getProperties();<a name="line.350"></a>
-<span class="sourceLineNo">351</span>               String[] excludeKeys = beanFilter.getExcludeProperties();<a name="line.351"></a>
-<span class="sourceLineNo">352</span>               if (excludeKeys != null) {<a name="line.352"></a>
-<span class="sourceLineNo">353</span>                  for (String k : excludeKeys)<a name="line.353"></a>
-<span class="sourceLineNo">354</span>                     properties.remove(k);<a name="line.354"></a>
-<span class="sourceLineNo">355</span><a name="line.355"></a>
-<span class="sourceLineNo">356</span>               // Only include specified properties if BeanFilter.includeKeys is specified.<a name="line.356"></a>
-<span class="sourceLineNo">357</span>               // Note that the order must match includeKeys.<a name="line.357"></a>
-<span class="sourceLineNo">358</span>               } else if (includeKeys != null) {<a name="line.358"></a>
-<span class="sourceLineNo">359</span>                  Map&lt;String,BeanPropertyMeta&gt; properties2 = new LinkedHashMap&lt;String,BeanPropertyMeta&gt;();<a name="line.359"></a>
-<span class="sourceLineNo">360</span>                  for (String k : includeKeys) {<a name="line.360"></a>
-<span class="sourceLineNo">361</span>                     if (properties.containsKey(k))<a name="line.361"></a>
-<span class="sourceLineNo">362</span>                        properties2.put(k, properties.get(k));<a name="line.362"></a>
-<span class="sourceLineNo">363</span>                  }<a name="line.363"></a>
-<span class="sourceLineNo">364</span>                  properties = properties2;<a name="line.364"></a>
-<span class="sourceLineNo">365</span>               }<a name="line.365"></a>
-<span class="sourceLineNo">366</span>            }<a name="line.366"></a>
-<span class="sourceLineNo">367</span><a name="line.367"></a>
-<span class="sourceLineNo">368</span>            if (pNames != null) {<a name="line.368"></a>
-<span class="sourceLineNo">369</span>               Map&lt;String,BeanPropertyMeta&gt; properties2 = new LinkedHashMap&lt;String,BeanPropertyMeta&gt;();<a name="line.369"></a>
-<span class="sourceLineNo">370</span>               for (String k : pNames) {<a name="line.370"></a>
-<span class="sourceLineNo">371</span>                  if (properties.containsKey(k))<a name="line.371"></a>
-<span class="sourceLineNo">372</span>                     properties2.put(k, properties.get(k));<a name="line.372"></a>
-<span class="sourceLineNo">373</span>               }<a name="line.373"></a>
-<span class="sourceLineNo">374</span>               properties = properties2;<a name="line.374"></a>
-<span class="sourceLineNo">375</span>            }<a name="line.375"></a>
-<span class="sourceLineNo">376</span><a name="line.376"></a>
-<span class="sourceLineNo">377</span>            // We return this through the Bean.keySet() interface, so make sure it's not modifiable.<a name="line.377"></a>
-<span class="sourceLineNo">378</span>            properties = Collections.unmodifiableMap(properties);<a name="line.378"></a>
-<span class="sourceLineNo">379</span><a name="line.379"></a>
-<span class="sourceLineNo">380</span>         } catch (BeanRuntimeException e) {<a name="line.380"></a>
-<span class="sourceLineNo">381</span>            throw e;<a name="line.381"></a>
-<span class="sourceLineNo">382</span>         } catch (Exception e) {<a name="line.382"></a>
-<span class="sourceLineNo">383</span>            return "Exception:  " + StringUtils.getStackTrace(e);<a name="line.383"></a>
-<span class="sourceLineNo">384</span>         }<a name="line.384"></a>
-<span class="sourceLineNo">385</span><a name="line.385"></a>
-<span class="sourceLineNo">386</span>         return null;<a name="line.386"></a>
-<span class="sourceLineNo">387</span>      }<a name="line.387"></a>
-<span class="sourceLineNo">388</span><a name="line.388"></a>
-<span class="sourceLineNo">389</span>      /*<a name="line.389"></a>
-<span class="sourceLineNo">390</span>       * Returns the property name of the specified field if it's a valid property.<a name="line.390"></a>
-<span class="sourceLineNo">391</span>       * Returns null if the field isn't a valid property.<a name="line.391"></a>
-<span class="sourceLineNo">392</span>       */<a name="line.392"></a>
-<span class="sourceLineNo">393</span>      private String findPropertyName(Field f, Set&lt;String&gt; fixedBeanProps) {<a name="line.393"></a>
-<span class="sourceLineNo">394</span>         BeanProperty bp = f.getAnnotation(BeanProperty.class);<a name="line.394"></a>
-<span class="sourceLineNo">395</span>         if (bp != null &amp;&amp; ! bp.name().equals("")) {<a name="line.395"></a>
-<span class="sourceLineNo">396</span>            String name = bp.name();<a name="line.396"></a>
-<span class="sourceLineNo">397</span>            if (fixedBeanProps.isEmpty() || fixedBeanProps.contains(name))<a name="line.397"></a>
-<span class="sourceLineNo">398</span>               return name;<a name="line.398"></a>
-<span class="sourceLineNo">399</span>            throw new BeanRuntimeException(classMeta.getInnerClass(), "Method property ''{0}'' identified in @BeanProperty, but missing from @Bean", name);<a name="line.399"></a>
-<span class="sourceLineNo">400</span>         }<a name="line.400"></a>
-<span class="sourceLineNo">401</span>         String name = propertyNamer.getPropertyName(f.getName());<a name="line.401"></a>
-<span class="sourceLineNo">402</span>         if (fixedBeanProps.isEmpty() || fixedBeanProps.contains(name))<a name="line.402"></a>
-<span class="sourceLineNo">403</span>            return name;<a name="line.403"></a>
-<span class="sourceLineNo">404</span>         return null;<a name="line.404"></a>
-<span class="sourceLineNo">405</span>      }<a name="line.405"></a>
-<span class="sourceLineNo">406</span><a name="line.406"></a>
-<span class="sourceLineNo">407</span>   }<a name="line.407"></a>
+<span class="sourceLineNo">340</span>               BeanPropertyMeta.Builder stp = normalProps.remove(subTypeProperty);<a name="line.340"></a>
+<span class="sourceLineNo">341</span>               this.subTypeIdProperty = new SubTypePropertyMeta.Builder(beanMeta, subTypeProperty, beanFilter.getSubTypes(), stp == null ? null : stp.build(), beanRegistry);<a name="line.341"></a>
+<span class="sourceLineNo">342</span>               properties.put(subTypeProperty, this.subTypeIdProperty.build());<a name="line.342"></a>
+<span class="sourceLineNo">343</span>            }<a name="line.343"></a>
+<span class="sourceLineNo">344</span><a name="line.344"></a>
+<span class="sourceLineNo">345</span>            for (Map.Entry&lt;String,BeanPropertyMeta.Builder&gt; e : normalProps.entrySet())<a name="line.345"></a>
+<span class="sourceLineNo">346</span>               properties.put(e.getKey(), e.getValue().build());<a name="line.346"></a>
+<span class="sourceLineNo">347</span><a name="line.347"></a>
+<span class="sourceLineNo">348</span>            // If a beanFilter is defined, look for inclusion and exclusion lists.<a name="line.348"></a>
+<span class="sourceLineNo">349</span>            if (beanFilter != null) {<a name="line.349"></a>
+<span class="sourceLineNo">350</span><a name="line.350"></a>
+<span class="sourceLineNo">351</span>               // Eliminated excluded properties if BeanFilter.excludeKeys is specified.<a name="line.351"></a>
+<span class="sourceLineNo">352</span>               String[] includeKeys = beanFilter.getProperties();<a name="line.352"></a>
+<span class="sourceLineNo">353</span>               String[] excludeKeys = beanFilter.getExcludeProperties();<a name="line.353"></a>
+<span class="sourceLineNo">354</span>               if (excludeKeys != null) {<a name="line.354"></a>
+<span class="sourceLineNo">355</span>                  for (String k : excludeKeys)<a name="line.355"></a>
+<span class="sourceLineNo">356</span>                     properties.remove(k);<a name="line.356"></a>
+<span class="sourceLineNo">357</span><a name="line.357"></a>
+<span class="sourceLineNo">358</span>               // Only include specified properties if BeanFilter.includeKeys is specified.<a name="line.358"></a>
+<span class="sourceLineNo">359</span>               // Note that the order must match includeKeys.<a name="line.359"></a>
+<span class="sourceLineNo">360</span>               } else if (includeKeys != null) {<a name="line.360"></a>
+<span class="sourceLineNo">361</span>                  Map&lt;String,BeanPropertyMeta&gt; properties2 = new LinkedHashMap&lt;String,BeanPropertyMeta&gt;();<a name="line.361"></a>
+<span class="sourceLineNo">362</span>                  for (String k : includeKeys) {<a name="line.362"></a>
+<span class="sourceLineNo">363</span>                     if (properties.containsKey(k))<a name="line.363"></a>
+<span class="sourceLineNo">364</span>                        properties2.put(k, properties.get(k));<a name="line.364"></a>
+<span class="sourceLineNo">365</span>                  }<a name="line.365"></a>
+<span class="sourceLineNo">366</span>                  properties = properties2;<a name="line.366"></a>
+<span class="sourceLineNo">367</span>               }<a name="line.367"></a>
+<span class="sourceLineNo">368</span>            }<a name="line.368"></a>
+<span class="sourceLineNo">369</span><a name="line.369"></a>
+<span class="sourceLineNo">370</span>            if (pNames != null) {<a name="line.370"></a>
+<span class="sourceLineNo">371</span>               Map&lt;String,BeanPropertyMeta&gt; properties2 = new LinkedHashMap&lt;String,BeanPropertyMeta&gt;();<a name="line.371"></a>
+<span class="sourceLineNo">372</span>               for (String k : pNames) {<a name="line.372"></a>
+<span class="sourceLineNo">373</span>                  if (properties.containsKey(k))<a name="line.373"></a>
+<span class="sourceLineNo">374</span>                     properties2.put(k, properties.get(k));<a name="line.374"></a>
+<span class="sourceLineNo">375</span>               }<a name="line.375"></a>
+<span class="sourceLineNo">376</span>               properties = properties2;<a name="line.376"></a>
+<span class="sourceLineNo">377</span>            }<a name="line.377"></a>
+<span class="sourceLineNo">378</span><a name="line.378"></a>
+<span class="sourceLineNo">379</span>         } catch (BeanRuntimeException e) {<a name="line.379"></a>
+<span class="sourceLineNo">380</span>            throw e;<a name="line.380"></a>
+<span class="sourceLineNo">381</span>         } catch (Exception e) {<a name="line.381"></a>
+<span class="sourceLineNo">382</span>            return "Exception:  " + StringUtils.getStackTrace(e);<a name="line.382"></a>
+<span class="sourceLineNo">383</span>         }<a name="line.383"></a>
+<span class="sourceLineNo">384</span><a name="line.384"></a>
+<span class="sourceLineNo">385</span>         return null;<a name="line.385"></a>
+<span class="sourceLineNo">386</span>      }<a name="line.386"></a>
+<span class="sourceLineNo">387</span><a name="line.387"></a>
+<span class="sourceLineNo">388</span>      /*<a name="line.388"></a>
+<span class="sourceLineNo">389</span>       * Returns the property name of the specified field if it's a valid property.<a name="line.389"></a>
+<span class="sourceLineNo">390</span>       * Returns null if the field isn't a valid property.<a name="line.390"></a>
+<span class="sourceLineNo">391</span>       */<a name="line.391"></a>
+<span class="sourceLineNo">392</span>      private String findPropertyName(Field f, Set&lt;String&gt; fixedBeanProps) {<a name="line.392"></a>
+<span class="sourceLineNo">393</span>         BeanProperty bp = f.getAnnotation(BeanProperty.class);<a name="line.393"></a>
+<span class="sourceLineNo">394</span>         if (bp != null &amp;&amp; ! bp.name().equals("")) {<a name="line.394"></a>
+<span class="sourceLineNo">395</span>            String name = bp.name();<a name="line.395"></a>
+<span class="sourceLineNo">396</span>            if (fixedBeanProps.isEmpty() || fixedBeanProps.contains(name))<a name="line.396"></a>
+<span class="sourceLineNo">397</span>               return name;<a name="line.397"></a>
+<span class="sourceLineNo">398</span>            throw new BeanRuntimeException(classMeta.getInnerClass(), "Method property ''{0}'' identified in @BeanProperty, but missing from @Bean", name);<a name="line.398"></a>
+<span class="sourceLineNo">399</span>         }<a name="line.399"></a>
+<span class="sourceLineNo">400</span>         String name = propertyNamer.getPropertyName(f.getName());<a name="line.400"></a>
+<span class="sourceLineNo">401</span>         if (fixedBeanProps.isEmpty() || fixedBeanProps.contains(name))<a name="line.401"></a>
+<span class="sourceLineNo">402</span>            return name;<a name="line.402"></a>
+<span class="sourceLineNo">403</span>         return null;<a name="line.403"></a>
+<span class="sourceLineNo">404</span>      }<a name="line.404"></a>
+<span class="sourceLineNo">405</span><a name="line.405"></a>
+<span class="sourceLineNo">406</span>   }<a name="line.406"></a>
+<span class="sourceLineNo">407</span><a name="line.407"></a>
 <span class="sourceLineNo">408</span><a name="line.408"></a>
-<span class="sourceLineNo">409</span><a name="line.409"></a>
-<span class="sourceLineNo">410</span>   /**<a name="line.410"></a>
-<span class="sourceLineNo">411</span>    * Returns the {@link ClassMeta} of this bean.<a name="line.411"></a>
-<span class="sourceLineNo">412</span>    *<a name="line.412"></a>
-<span class="sourceLineNo">413</span>    * @return The {@link ClassMeta} of this bean.<a name="line.413"></a>
-<span class="sourceLineNo">414</span>    */<a name="line.414"></a>
-<span class="sourceLineNo">415</span>   @BeanIgnore<a name="line.415"></a>
-<span class="sourceLineNo">416</span>   public ClassMeta&lt;T&gt; getClassMeta() {<a name="line.416"></a>
-<span class="sourceLineNo">417</span>      return classMeta;<a name="line.417"></a>
-<span class="sourceLineNo">418</span>   }<a name="line.418"></a>
-<span class="sourceLineNo">419</span><a name="line.419"></a>
-<span class="sourceLineNo">420</span>   /**<a name="line.420"></a>
-<span class="sourceLineNo">421</span>    * Returns the dictionary name for this bean as defined through the {@link Bean#typeName()} annotation.<a name="line.421"></a>
-<span class="sourceLineNo">422</span>    *<a name="line.422"></a>
-<span class="sourceLineNo">423</span>    * @return The dictioanry name for this bean, or &lt;jk&gt;null&lt;/jk&gt; if it has no dictionary name defined.<a name="line.423"></a>
-<span class="sourceLineNo">424</span>    */<a name="line.424"></a>
-<span class="sourceLineNo">425</span>   public String getDictionaryName() {<a name="line.425"></a>
-<span class="sourceLineNo">426</span>      return dictionaryName;<a name="line.426"></a>
-<span class="sourceLineNo">427</span>   }<a name="line.427"></a>
-<span class="sourceLineNo">428</span><a name="line.428"></a>
-<span class="sourceLineNo">429</span>   /**<a name="line.429"></a>
-<span class="sourceLineNo">430</span>    * Returns the subtype property of this bean if it has one.<a name="line.430"></a>
-<span class="sourceLineNo">431</span>    * &lt;p&gt;<a name="line.431"></a>
-<span class="sourceLineNo">432</span>    * The subtype is specified using the {@link Bean#subTypeProperty()} annotation.<a name="line.432"></a>
-<span class="sourceLineNo">433</span>    *<a name="line.433"></a>
-<span class="sourceLineNo">434</span>    * @return The meta property for the sub type property, or &lt;jk&gt;null&lt;/jk&gt; if no subtype is defined for this bean.<a name="line.434"></a>
-<span class="sourceLineNo">435</span>    */<a name="line.435"></a>
-<span class="sourceLineNo">436</span>   public BeanPropertyMeta getSubTypeProperty() {<a name="line.436"></a>
-<span class="sourceLineNo">437</span>      return subTypeProperty;<a name="line.437"></a>
-<span class="sourceLineNo">438</span>   }<a name="line.438"></a>
-<span class="sourceLineNo">439</span><a name="line.439"></a>
-<span class="sourceLineNo">440</span>   /**<a name="line.440"></a>
-<span class="sourceLineNo">441</span>    * Returns &lt;jk&gt;true&lt;/jk&gt; if this bean has subtypes associated with it.<a name="line.441"></a>
-<span class="sourceLineNo">442</span>    * Subtypes are defined using the {@link Bean#subTypes()} annotation.<a name="line.442"></a>
-<span class="sourceLineNo">443</span>    *<a name="line.443"></a>
-<span class="sourceLineNo">444</span>    * @return &lt;jk&gt;true&lt;/jk&gt; if this bean has subtypes associated with it.<a name="line.444"></a>
-<span class="sourceLineNo">445</span>    */<a name="line.445"></a>
-<span class="sourceLineNo">446</span>   public boolean isSubTyped() {<a name="line.446"></a>
-<span class="sourceLineNo">447</span>      return subTypeProperty != null;<a name="line.447"></a>
-<span class="sourceLineNo">448</span>   }<a name="line.448"></a>
-<span class="sourceLineNo">449</span><a name="line.449"></a>
-<span class="sourceLineNo">450</span>   /**<a name="line.450"></a>
-<span class="sourceLineNo">451</span>    * Returns a mock bean property that resolves to the name &lt;js&gt;"_type"&lt;/js&gt; and whose value always resolves<a name="line.451"></a>
-<span class="sourceLineNo">452</span>    *    to the dictionary name of the bean.<a name="line.452"></a>
-<span class="sourceLineNo">453</span>    *<a name="line.453"></a>
-<span class="sourceLineNo">454</span>    * @return The type name property.<a name="line.454"></a>
-<span class="sourceLineNo">455</span>    */<a name="line.455"></a>
-<span class="sourceLineNo">456</span>   public BeanPropertyMeta getTypeProperty() {<a name="line.456"></a>
-<span class="sourceLineNo">457</span>      return typeProperty;<a name="line.457"></a>
-<span class="sourceLineNo">458</span>   }<a name="line.458"></a>
-<span class="sourceLineNo">459</span><a name="line.459"></a>
-<span class="sourceLineNo">460</span>   /*<a name="line.460"></a>
-<span class="sourceLineNo">461</span>    * Temporary getter/setter method struct.<a name="line.461"></a>
-<span class="sourceLineNo">462</span>    */<a name="line.462"></a>
-<span class="sourceLineNo">463</span>   private static class BeanMethod {<a name="line.463"></a>
-<span class="sourceLineNo">464</span>      String propertyName;<a name="line.464"></a>
-<span class="sourceLineNo">465</span>      boolean isSetter;<a name="line.465"></a>
-<span class="sourceLineNo">466</span>      Method method;<a name="line.466"></a>
-<span class="sourceLineNo">467</span>      Class&lt;?&gt; type;<a name="line.467"></a>
-<span class="sourceLineNo">468</span><a name="line.468"></a>
-<span class="sourceLineNo">469</span>      BeanMethod(String propertyName, boolean isSetter, Method method) {<a name="line.469"></a>
-<span class="sourceLineNo">470</span>         this.propertyName = propertyName;<a name="line.470"></a>
-<span class="sourceLineNo">471</span>         this.isSetter = isSetter;<a name="line.471"></a>
-<span class="sourceLineNo">472</span>         this.method = method;<a name="line.472"></a>
-<span class="sourceLineNo">473</span>         if (isSetter)<a name="line.473"></a>
-<span class="sourceLineNo">474</span>            this.type = method.getParameterTypes()[0];<a name="line.474"></a>
-<span class="sourceLineNo">475</span>         else<a name="line.475"></a>
-<span class="sourceLineNo">476</span>            this.type = method.getReturnType();<a name="line.476"></a>
-<span class="sourceLineNo">477</span>      }<a name="line.477"></a>
-<span class="sourceLineNo">478</span><a name="line.478"></a>
-<span class="sourceLineNo">479</span>      /*<a name="line.479"></a>
-<span class="sourceLineNo">480</span>       * Returns true if this method matches the class type of the specified property.<a name="line.480"></a>
-<span class="sourceLineNo">481</span>       * Only meant to be used for setters.<a name="line.481"></a>
-<span class="sourceLineNo">482</span>       */<a name="line.482"></a>
-<span class="sourceLineNo">483</span>      boolean matchesPropertyType(BeanPropertyMeta b) {<a name="line.483"></a>
-<span class="sourceLineNo">484</span>         if (b == null)<a name="line.484"></a>
-<span class="sourceLineNo">485</span>            return false;<a name="line.485"></a>
-<span class="sourceLineNo">486</span><a name="line.486"></a>
-<span class="sourceLineNo">487</span>         // Get the bean property type from the getter/field.<a name="line.487"></a>
-<span class="sourceLineNo">488</span>         Class&lt;?&gt; pt = null;<a name="line.488"></a>
-<span class="sourceLineNo">489</span>         if (b.getGetter() != null)<a name="line.489"></a>
-<span class="sourceLineNo">490</span>            pt = b.getGetter().getReturnType();<a name="line.490"></a>
-<span class="sourceLineNo">491</span>         else if (b.getField() != null)<a name="line.491"></a>
-<span class="sourceLineNo">492</span>            pt = b.getField().getType();<a name="line.492"></a>
-<span class="sourceLineNo">493</span><a name="line.493"></a>
-<span class="sourceLineNo">494</span>         // Doesn't match if no getter/field defined.<a name="line.494"></a>
-<span class="sourceLineNo">495</span>         if (pt == null)<a name="line.495"></a>
-<span class="sourceLineNo">496</span>            return false;<a name="line.496"></a>
-<span class="sourceLineNo">497</span><a name="line.497"></a>
-<span class="sourceLineNo">498</span>         // Doesn't match if not same type or super type as getter/field.<a name="line.498"></a>
-<span class="sourceLineNo">499</span>         if (! isParentClass(type, pt))<a name="line.499"></a>
-<span class="sourceLineNo">500</span>            return false;<a name="line.500"></a>
-<span class="sourceLineNo">501</span><a name="line.501"></a>
-<span class="sourceLineNo">502</span>         // If a setter was previously set, only use this setter if it's a closer<a name="line.502"></a>
-<span class="sourceLineNo">503</span>         // match (e.g. prev type is a superclass of this type).<a name="line.503"></a>
-<span class="sourceLineNo">504</span>         if (b.getSetter() == null)<a name="line.504"></a>
-<span class="sourceLineNo">505</span>            return true;<a name="line.505"></a>
-<span class="sourceLineNo">506</span><a name="line.506"></a>
-<span class="sourceLineNo">507</span>         Class&lt;?&gt; prevType = b.getSetter().getParameterTypes()[0];<a name="line.507"></a>
-<span class="sourceLineNo">508</span>         return isParentClass(prevType, type, true);<a name="line.508"></a>
-<span class="sourceLineNo">509</span>      }<a name="line.509"></a>
-<span class="sourceLineNo">510</span><a name="line.510"></a>
-<span class="sourceLineNo">511</span>      @Override /* Object */<a name="line.511"></a>
-<span class="sourceLineNo">512</span>      public String toString() {<a name="line.512"></a>
-<span class="sourceLineNo">513</span>         return method.toString();<a name="line.513"></a>
-<span class="sourceLineNo">514</span>      }<a name="line.514"></a>
-<span class="sourceLineNo">515</span>   }<a name="line.515"></a>
-<span class="sourceLineNo">516</span><a name="line.516"></a>
-<span class="sourceLineNo">517</span>   /*<a name="line.517"></a>
-<span class="sourceLineNo">518</span>    * Find all the bean methods on this class.<a name="line.518"></a>
-<span class="sourceLineNo">519</span>    *<a name="line.519"></a>
-<span class="sourceLineNo">520</span>    * @param c The transformed class.<a name="line.520"></a>
-<span class="sourceLineNo">521</span>    * @param stopClass Don't look above this class in the hierarchy.<a name="line.521"></a>
-<span class="sourceLineNo">522</span>    * @param v The minimum method visibility.<a name="line.522"></a>
-<span class="sourceLineNo">523</span>    * @param fixedBeanProps Only include methods whose properties are in this list.<a name="line.523"></a>
-<span class="sourceLineNo">524</span>    * @param pn Use this property namer to determine property names from the method names.<a name="line.524"></a>
-<span class="sourceLineNo">525</span>    */<a name="line.525"></a>
-<span class="sourceLineNo">526</span>   private static List&lt;BeanMethod&gt; findBeanMethods(Class&lt;?&gt; c, Class&lt;?&gt; stopClass, Visibility v, Set&lt;String&gt; fixedBeanProps, PropertyNamer pn) {<a name="line.526"></a>
-<span class="sourceLineNo">527</span>      List&lt;BeanMethod&gt; l = new LinkedList&lt;BeanMethod&gt;();<a name="line.527"></a>
-<span class="sourceLineNo">528</span><a name="line.528"></a>
-<span class="sourceLineNo">529</span>      for (Class&lt;?&gt; c2 : findClasses(c, stopClass)) {<a name="line.529"></a>
-<span class="sourceLineNo">530</span>         for (Method m : c2.getDeclaredMethods()) {<a name="line.530"></a>
-<span class="sourceLineNo">531</span>            int mod = m.getModifiers();<a name="line.531"></a>
-<span class="sourceLineNo">532</span>            if (Modifier.isStatic(mod))<a name="line.532"></a>
-<span class="sourceLineNo">533</span>               continue;<a name="line.533"></a>
-<span class="sourceLineNo">534</span>            if (m.isAnnotationPresent(BeanIgnore.class))<a name="line.534"></a>
-<span class="sourceLineNo">535</span>               continue;<a name="line.535"></a>
-<span class="sourceLineNo">536</span>            if (m.isBridge())   // This eliminates methods with covariant return types from parent classes on child classes.<a name="line.536"></a>
-<span class="sourceLineNo">537</span>               continue;<a name="line.537"></a>
-<span class="sourceLineNo">538</span>            if (! (v.isVisible(m) || m.isAnnotationPresent(BeanProperty.class)))<a name="line.538"></a>
-<span class="sourceLineNo">539</span>               continue;<a name="line.539"></a>
-<span class="sourceLineNo">540</span>            String n = m.getName();<a name="line.540"></a>
-<span class="sourceLineNo">541</span>            Class&lt;?&gt;[] pt = m.getParameterTypes();<a name="line.541"></a>
-<span class="sourceLineNo">542</span>            Class&lt;?&gt; rt = m.getReturnType();<a name="line.542"></a>
-<span class="sourceLineNo">543</span>            boolean isGetter = false, isSetter = false;<a name="line.543"></a>
-<span class="sourceLineNo">544</span>            BeanProperty bp = m.getAnnotation(BeanProperty.class);<a name="line.544"></a>
-<span class="sourceLineNo">545</span>            if (pt.length == 0) {<a name="line.545"></a>
-<span class="sourceLineNo">546</span>               if (n.startsWith("get") &amp;&amp; (! rt.equals(Void.TYPE))) {<a name="line.546"></a>
-<span class="sourceLineNo">547</span>                  isGetter = true;<a name="line.547"></a>
-<span class="sourceLineNo">548</span>                  n = n.substring(3);<a name="line.548"></a>
-<span class="sourceLineNo">549</span>               } else if (n.startsWith("is") &amp;&amp; (rt.equals(Boolean.TYPE) || rt.equals(Boolean.class))) {<a name="line.549"></a>
-<span class="sourceLineNo">550</span>                  isGetter = true;<a name="line.550"></a>
-<span class="sourceLineNo">551</span>                  n = n.substring(2);<a name="line.551"></a>
-<span class="sourceLineNo">552</span>               } else if (bp != null &amp;&amp; ! bp.name().isEmpty()) {<a name="line.552"></a>
-<span class="sourceLineNo">553</span>                  isGetter = true;<a name="line.553"></a>
-<span class="sourceLineNo">554</span>                  n = bp.name();<a name="line.554"></a>
-<span class="sourceLineNo">555</span>               }<a name="line.555"></a>
-<span class="sourceLineNo">556</span>            } else if (pt.length == 1) {<a name="line.556"></a>
-<span class="sourceLineNo">557</span>               if (n.startsWith("set") &amp;&amp; (isParentClass(rt, c) || rt.equals(Void.TYPE))) {<a name="line.557"></a>
-<span class="sourceLineNo">558</span>                  isSetter = true;<a name="line.558"></a>
-<span class="sourceLineNo">559</span>                  n = n.substring(3);<a name="line.559"></a>
-<span class="sourceLineNo">560</span>               } else if (bp != null &amp;&amp; ! bp.name().isEmpty()) {<a name="line.560"></a>
-<span class="sourceLineNo">561</span>                  isSetter = true;<a name="line.561"></a>
-<span class="sourceLineNo">562</span>                  n = bp.name();<a name="line.562"></a>
-<span class="sourceLineNo">563</span>               }<a name="line.563"></a>
-<span class="sourceLineNo">564</span>            }<a name="line.564"></a>
-<span class="sourceLineNo">565</span>            n = pn.getPropertyName(n);<a name="line.565"></a>
-<span class="sourceLineNo">566</span>            if (isGetter || isSetter) {<a name="line.566"></a>
-<span class="sourceLineNo">567</span>               if (bp != null &amp;&amp; ! bp.name().equals("")) {<a name="line.567"></a>
-<span class="sourceLineNo">568</span>                  n = bp.name();<a name="line.568"></a>
-<span class="sourceLineNo">569</span>                  if (! fixedBeanProps.isEmpty())<a name="line.569"></a>
-<span class="sourceLineNo">570</span>                     if (! fixedBeanProps.contains(n))<a name="line.570"></a>
-<span class="sourceLineNo">571</span>                        throw new BeanRuntimeException(c, "Method property ''{0}'' identified in @BeanProperty, but missing from @Bean", n);<a name="line.571"></a>
-<span class="sourceLineNo">572</span>               }<a name="line.572"></a>
-<span class="sourceLineNo">573</span>               l.add(new BeanMethod(n, isSetter, m));<a name="line.573"></a>
-<span class="sourceLineNo">574</span>            }<a name="line.574"></a>
-<span class="sourceLineNo">575</span>         }<a name="line.575"></a>
-<span class="sourceLineNo">576</span>      }<a name="line.576"></a>
-<span class="sourceLineNo">577</span>      return l;<a name="line.577"></a>
-<span class="sourceLineNo">578</span>   }<a name="line.578"></a>
-<span class="sourceLineNo">579</span><a name="line.579"></a>
-<span class="sourceLineNo">580</span>   private static Collection&lt;Field&gt; findBeanFields(Class&lt;?&gt; c, Class&lt;?&gt; stopClass, Visibility v) {<a name="line.580"></a>
-<span class="sourceLineNo">581</span>      List&lt;Field&gt; l = new LinkedList&lt;Field&gt;();<a name="line.581"></a>
-<span class="sourceLineNo">582</span>      for (Class&lt;?&gt; c2 : findClasses(c, stopClass)) {<a name="line.582"></a>
-<span class="sourceLineNo">583</span>         for (Field f : c2.getDeclaredFields()) {<a name="line.583"></a>
-<span class="sourceLineNo">584</span>            int m = f.getModifiers();<a name="line.584"></a>
-<span class="sourceLineNo">585</span>            if (Modifier.isStatic(m) || Modifier.isTransient(m))<a name="line.585"></a>
-<span class="sourceLineNo">586</span>               continue;<a name="line.586"></a>
-<span class="sourceLineNo">587</span>            if (f.isAnnotationPresent(BeanIgnore.class))<a name="line.587"></a>
-<span class="sourceLineNo">588</span>               continue;<a name="line.588"></a>
-<span class="sourceLineNo">589</span>            if (! (v.isVisible(f) || f.isAnnotationPresent(BeanProperty.class)))<a name="line.589"></a>
-<span class="sourceLineNo">590</span>               continue;<a name="line.590"></a>
-<span class="sourceLineNo">591</span>            l.add(f);<a name="line.591"></a>
-<span class="sourceLineNo">592</span>         }<a name="line.592"></a>
-<span class="sourceLineNo">593</span>      }<a name="line.593"></a>
-<span class="sourceLineNo">594</span>      return l;<a name="line.594"></a>
-<span class="sourceLineNo">595</span>   }<a name="line.595"></a>
-<span class="sourceLineNo">596</span><a name="line.596"></a>
-<span class="sourceLineNo">597</span>   private static List&lt;Class&lt;?&gt;&gt; findClasses(Class&lt;?&gt; c, Class&lt;?&gt; stopClass) {<a name="line.597"></a>
-<span class="sourceLineNo">598</span>      LinkedList&lt;Class&lt;?&gt;&gt; l = new LinkedList&lt;Class&lt;?&gt;&gt;();<a name="line.598"></a>
-<span class="sourceLineNo">599</span>      findClasses(c, l, stopClass);<a name="line.599"></a>
-<span class="sourceLineNo">600</span>      return l;<a name="line.600"></a>
-<span class="sourceLineNo">601</span>   }<a name="line.601"></a>
-<span class="sourceLineNo">602</span><a name="line.602"></a>
-<span class="sourceLineNo">603</span>   private static void findClasses(Class&lt;?&gt; c, LinkedList&lt;Class&lt;?&gt;&gt; l, Class&lt;?&gt; stopClass) {<a name="line.603"></a>
-<span class="sourceLineNo">604</span>      while (c != null &amp;&amp; stopClass != c) {<a name="line.604"></a>
-<span class="sourceLineNo">605</span>         l.addFirst(c);<a name="line.605"></a>
-<span class="sourceLineNo">606</span>         for (Class&lt;?&gt; ci : c.getInterfaces())<a name="line.606"></a>
-<span class="sourceLineNo">607</span>            findClasses(ci, l, stopClass);<a name="line.607"></a>
-<span class="sourceLineNo">608</span>         c = c.getSuperclass();<a name="line.608"></a>
-<span class="sourceLineNo">609</span>      }<a name="line.609"></a>
-<span class="sourceLineNo">610</span>   }<a name="line.610"></a>
-<span class="sourceLineNo">611</span><a name="line.611"></a>
-<span class="sourceLineNo">612</span>   /**<a name="line.612"></a>
-<span class="sourceLineNo">613</span>    * Returns the metadata on all properties associated with this bean.<a name="line.613"></a>
-<span class="sourceLineNo">614</span>    *<a name="line.614"></a>
-<span class="sourceLineNo">615</span>    * @return Metadata on all properties associated with this bean.<a name="line.615"></a>
-<span class="sourceLineNo">616</span>    */<a name="line.616"></a>
-<span class="sourceLineNo">617</span>   public Collection&lt;BeanPropertyMeta&gt; getPropertyMetas() {<a name="line.617"></a>
-<span class="sourceLineNo">618</span>      return this.properties.values();<a name="line.618"></a>
-<span class="sourceLineNo">619</span>   }<a name="line.619"></a>
-<span class="sourceLineNo">620</span><a name="line.620"></a>
-<span class="sourceLineNo">621</span>   /**<a name="line.621"></a>
-<span class="sourceLineNo">622</span>    * Returns the metadata on the specified list of properties.<a name="line.622"></a>
-<span class="sourceLineNo">623</span>    *<a name="line.623"></a>
-<span class="sourceLineNo">624</span>    * @param pNames The list of properties to retrieve.  If &lt;jk&gt;null&lt;/jk&gt;, returns all properties.<a name="line.624"></a>
-<span class="sourceLineNo">625</span>    * @return The metadata on the specified list of properties.<a name="line.625"></a>
-<span class="sourceLineNo">626</span>    */<a name="line.626"></a>
-<span class="sourceLineNo">627</span>   public Collection&lt;BeanPropertyMeta&gt; getPropertyMetas(final String...pNames) {<a name="line.627"></a>
-<span class="sourceLineNo">628</span>      if (pNames == null)<a name="line.628"></a>
-<span class="sourceLineNo">629</span>         return getPropertyMetas();<a name="line.629"></a>
-<span class="sourceLineNo">630</span>      List&lt;BeanPropertyMeta&gt; l = new ArrayList&lt;BeanPropertyMeta&gt;(pNames.length);<a name="line.630"></a>
-<span class="sourceLineNo">631</span>      for (int i = 0; i &lt; pNames.length; i++)<a name="line.631"></a>
-<span class="sourceLineNo">632</span>         l.add(getPropertyMeta(pNames[i]));<a name="line.632"></a>
-<span class="sourceLineNo">633</span>      return l;<a name="line.633"></a>
-<span class="sourceLineNo">634</span>   }<a name="line.634"></a>
-<span class="sourceLineNo">635</span><a name="line.635"></a>
-<span class="sourceLineNo">636</span>   /**<a name="line.636"></a>
-<span class="sourceLineNo">637</span>    * Returns the language-specified extended metadata on this bean class.<a name="line.637"></a>
-<span class="sourceLineNo">638</span>    *<a name="line.638"></a>
-<span class="sourceLineNo">639</span>    * @param metaDataClass The name of the metadata class to create.<a name="line.639"></a>
-<span class="sourceLineNo">640</span>    * @return Extended metadata on this bean class.  Never &lt;jk&gt;null&lt;/jk&gt;.<a name="line.640"></a>
-<span class="sourceLineNo">641</span>    */<a name="line.641"></a>
-<span class="sourceLineNo">642</span>   public &lt;M extends BeanMetaExtended&gt; M getExtendedMeta(Class&lt;M&gt; metaDataClass) {<a name="line.642"></a>
-<span class="sourceLineNo">643</span>      return extMeta.get(metaDataClass, this);<a name="line.643"></a>
-<span class="sourceLineNo">644</span>   }<a name="line.644"></a>
-<span class="sourceLineNo">645</span><a name="line.645"></a>
-<span class="sourceLineNo">646</span>   /**<a name="line.646"></a>
-<span class="sourceLineNo">647</span>    * Returns metadata about the specified property.<a name="line.647"></a>
-<span class="sourceLineNo">648</span>    *<a name="line.648"></a>
-<span class="sourceLineNo">649</span>    * @param name The name of the property on this bean.<a name="line.649"></a>
-<span class="sourceLineNo">650</span>    * @return The metadata about the property, or &lt;jk&gt;null&lt;/jk&gt; if no such property exists<a name="line.650"></a>
-<span class="sourceLineNo">651</span>    *    on this bean.<a name="line.651"></a>
-<span class="sourceLineNo">652</span>    */<a name="line.652"></a>
-<span class="sourceLineNo">653</span>   public BeanPropertyMeta getPropertyMeta(String name) {<a name="line.653"></a>
-<span class="sourceLineNo">654</span>      return this.properties.get(name);<a name="line.654"></a>
-<span class="sourceLineNo">655</span>   }<a name="line.655"></a>
-<span class="sourceLineNo">656</span><a name="line.656"></a>
-<span class="sourceLineNo">657</span>   /**<a name="line.657"></a>
-<span class="sourceLineNo">658</span>    * Creates a new instance of this bean.<a name="line.658"></a>
-<span class="sourceLineNo">659</span>    *<a name="line.659"></a>
-<span class="sourceLineNo">660</span>    * @param outer The outer object if bean class is a non-static inner member class.<a name="line.660"></a>
-<span class="sourceLineNo">661</span>    * @return A new instance of this bean if possible, or &lt;jk&gt;null&lt;/jk&gt; if not.<a name="line.661"></a>
-<span class="sourceLineNo">662</span>    * @throws IllegalArgumentException Thrown by constructor.<a name="line.662"></a>
-<span class="sourceLineNo">663</span>    * @throws InstantiationException Thrown by constructor.<a name="line.663"></a>
-<span class="sourceLineNo">664</span>    * @throws IllegalAccessException Thrown by constructor.<a name="line.664"></a>
-<span class="sourceLineNo">665</span>    * @throws InvocationTargetException Thrown by constructor.<a name="line.665"></a>
-<span class="sourceLineNo">666</span>    */<a name="line.666"></a>
-<span class="sourceLineNo">667</span>   @SuppressWarnings("unchecked")<a name="line.667"></a>
-<span class="sourceLineNo">668</span>   protected T newBean(Object outer) throws IllegalArgumentException, InstantiationException, IllegalAccessException, InvocationTargetException {<a name="line.668"></a>
-<span class="sourceLineNo">669</span>      if (classMeta.isMemberClass()) {<a name="line.669"></a>
-<span class="sourceLineNo">670</span>         if (constructor != null)<a name="line.670"></a>
-<span class="sourceLineNo">671</span>            return constructor.newInstance(outer);<a name="line.671"></a>
-<span class="sourceLineNo">672</span>      } else {<a name="line.672"></a>
-<span class="sourceLineNo">673</span>         if (constructor != null)<a name="line.673"></a>
-<span class="sourceLineNo">674</span>            return constructor.newInstance((Object[])null);<a name="line.674"></a>
-<span class="sourceLineNo">675</span>         InvocationHandler h = classMeta.getProxyInvocationHandler();<a name="line.675"></a>
-<span class="sourceLineNo">676</span>         if (h != null) {<a name="line.676"></a>
-<span class="sourceLineNo">677</span>            ClassLoader cl = classMeta.getBeanContext().classLoader;<a name="line.677"></a>
-<span class="sourceLineNo">678</span>            if (cl == null)<a name="line.678"></a>
-<span class="sourceLineNo">679</span>               cl = this.getClass().getClassLoader();<a name="line.679"></a>
-<span class="sourceLineNo">680</span>            return (T)Proxy.newProxyInstance(cl, new Class[] { classMeta.innerClass, java.io.Serializable.class }, h);<a name="line.680"></a>
-<span class="sourceLineNo">681</span>         }<a name="line.681"></a>
-<span class="sourceLineNo">682</span>      }<a name="line.682"></a>
-<span class="sourceLineNo">683</span>      return null;<a name="line.683"></a>
-<span class="sourceLineNo">684</span>   }<a name="line.684"></a>
-<span class="sourceLineNo">685</span><a name="line.685"></a>
-<span class="sourceLineNo">686</span>   /**<a name="line.686"></a>
-<span class="sourceLineNo">687</span>    * Recursively determines the classes represented by parameterized types in the class hierarchy of<a name="line.687"></a>
-<span class="sourceLineNo">688</span>    * the specified type, and puts the results in the specified map.&lt;br&gt;<a name="line.688"></a>
-<span class="sourceLineNo">689</span>    * &lt;p&gt;<a name="line.689"></a>
-<span class="sourceLineNo">690</span>    *    For example, given the following classes...<a name="line.690"></a>
-<span class="sourceLineNo">691</span>    * &lt;p class='bcode'&gt;<a name="line.691"></a>
-<span class="sourceLineNo">692</span>    *    public static class BeanA&amp;lt;T&gt; {<a name="line.692"></a>
-<span class="sourceLineNo">693</span>    *       public T x;<a name="line.693"></a>
-<span class="sourceLineNo">694</span>    *    }<a name="line.694"></a>
-<span class="sourceLineNo">695</span>    *    public static class BeanB extends BeanA&amp;lt;Integer&gt;} {...}<a name="line.695"></a>
-<span class="sourceLineNo">696</span>    * &lt;p&gt;<a name="line.696"></a>
-<span class="sourceLineNo">697</span>    *    ...calling this method on {@code BeanB.class} will load the following data into {@code m} indicating<a name="line.697"></a>
-<span class="sourceLineNo">698</span>    *    that the {@code T} parameter on the BeanA class is implemented with an {@code Integer}:<a name="line.698"></a>
-<span class="sourceLineNo">699</span>    * &lt;p class='bcode'&gt;<a name="line.699"></a>
-<span class="sourceLineNo">700</span>    *    {BeanA.class:[Integer.class]}<a name="line.700"></a>
-<span class="sourceLineNo">701</span>    * &lt;p&gt;<a name="line.701"></a>
-<span class="sourceLineNo">702</span>    *    TODO:  This code doesn't currently properly handle the following situation:<a name="line.702"></a>
-<span class="sourceLineNo">703</span>    * &lt;p class='bcode'&gt;<a name="line.703"></a>
-<span class="sourceLineNo">704</span>    *    public static class BeanB&amp;ltT extends Number&gt; extends BeanA&amp;ltT&gt;;<a name="line.704"></a>
-<span class="sourceLineNo">705</span>    *    public static class BeanC extends BeanB&amp;ltInteger&gt;;<a name="line.705"></a>
-<span class="sourceLineNo">706</span>    * &lt;p&gt;<a name="line.706"></a>
-<span class="sourceLineNo">707</span>    *    When called on {@code BeanC}, the variable will be detected as a {@code Number}, not an {@code Integer}.&lt;br&gt;<a name="line.707"></a>
-<span class="sourceLineNo">708</span>    *    If anyone can figure out a better way of doing this, please do so!<a name="line.708"></a>
-<span class="sourceLineNo">709</span>    *<a name="line.709"></a>
-<span class="sourceLineNo">710</span>    * @param t The type we're recursing.<a name="line.710"></a>
-<span class="sourceLineNo">711</span>    * @param m Where the results are loaded.<a name="line.711"></a>
-<span class="sourceLineNo">712</span>    */<a name="line.712"></a>
-<span class="sourceLineNo">713</span>   private static void findTypeVarImpls(Type t, Map&lt;Class&lt;?&gt;,Class&lt;?&gt;[]&gt; m) {<a name="line.713"></a>
-<span class="sourceLineNo">714</span>      if (t instanceof Class) {<a name="line.714"></a>
-<span class="sourceLineNo">715</span>         Class&lt;?&gt; c = (Class&lt;?&gt;)t;<a name="line.715"></a>
-<span class="sourceLineNo">716</span>         findTypeVarImpls(c.getGenericSuperclass(), m);<a name="line.716"></a>
-<span class="sourceLineNo">717</span>         for (Type ci : c.getGenericInterfaces())<a name="line.717"></a>
-<span class="sourceLineNo">718</span>            findTypeVarImpls(ci, m);<a name="line.718"></a>
-<span class="sourceLineNo">719</span>      } else if (t instanceof ParameterizedType) {<a name="line.719"></a>
-<span class="sourceLineNo">720</span>         ParameterizedType pt = (ParameterizedType)t;<a name="line.720"></a>
-<span class="sourceLineNo">721</span>         Type rt = pt.getRawType();<a name="line.721"></a>
-<span class="sourceLineNo">722</span>         if (rt instanceof Class) {<a name="line.722"></a>
-<span class="sourceLineNo">723</span>            Type[] gImpls = pt.getActualTypeArguments();<a name="line.723"></a>
-<span class="sourceLineNo">724</span>            Class&lt;?&gt;[] gTypes = new Class[gImpls.length];<a name="line.724"></a>
-<span class="sourceLineNo">725</span>            for (int i = 0; i &lt; gImpls.length; i++) {<a name="line.725"></a>
-<span class="sourceLineNo">726</span>               Type gt = gImpls[i];<a name="line.726"></a>
-<span class="sourceLineNo">727</span>               if (gt instanceof Class)<a name="line.727"></a>
-<span class="sourceLineNo">728</span>                  gTypes[i] = (Class&lt;?&gt;)gt;<a name="line.728"></a>
-<span class="sourceLineNo">729</span>               else if (gt instanceof TypeVariable) {<a name="line.729"></a>
-<span class="sourceLineNo">730</span>                  TypeVariable&lt;?&gt; tv = (TypeVariable&lt;?&gt;)gt;<a name="line.730"></a>
-<span class="sourceLineNo">731</span>                  for (Type upperBound : tv.getBounds())<a name="line.731"></a>
-<span class="sourceLineNo">732</span>                     if (upperBound instanceof Class)<a name="line.732"></a>
-<span class="sourceLineNo">733</span>                        gTypes[i] = (Class&lt;?&gt;)upperBound;<a name="line.733"></a>
-<span class="sourceLineNo">734</span>               }<a name="line.734"></a>
-<span class="sourceLineNo">735</span>            }<a name="line.735"></a>
-<span class="sourceLineNo">736</span>            m.put((Class&lt;?&gt;)rt, gTypes);<a name="line.736"></a>
-<span class="sourceLineNo">737</span>            findTypeVarImpls(pt.getRawType(), m);<a name="line.737"></a>
-<span class="sourceLineNo">738</span>         }<a name="line.738"></a>
-<span class="sourceLineNo">739</span>      }<a name="line.739"></a>
-<span class="sourceLineNo">740</span>   }<a name="line.740"></a>
-<span class="sourceLineNo">741</span><a name="line.741"></a>
-<span class="sourceLineNo">742</span>   /*<a name="line.742"></a>
-<span class="sourceLineNo">743</span>    * Bean property for getting and setting bean subtype.<a name="line.743"></a>
-<span class="sourceLineNo">744</span>    */<a name="line.744"></a>
-<span class="sourceLineNo">745</span>   @SuppressWarnings({"rawtypes","unchecked"})<a name="line.745"></a>
-<span class="sourceLineNo">746</span>   private static class SubTypePropertyMeta extends BeanPropertyMeta {<a name="line.746"></a>
-<span class="sourceLineNo">747</span><a name="line.747"></a>
-<span class="sourceLineNo">748</span>      private Map&lt;Class&lt;?&gt;,String&gt; subTypes;<a name="line.748"></a>
-<span class="sourceLineNo">749</span>      private BeanPropertyMeta realProperty;  // Bean property if bean actually has a real subtype field.<a name="line.749"></a>
-<span class="sourceLineNo">750</span>      private BeanMeta&lt;?&gt; beanMeta;<a name="line.750"></a>
-<span class="sourceLineNo">751</span><a name="line.751"></a>
-<span class="sourceLineNo">752</span>      SubTypePropertyMeta(BeanMeta beanMeta, String subTypeAttr, Map&lt;Class&lt;?&gt;,String&gt; subTypes, BeanPropertyMeta realProperty, BeanRegistry beanRegistry) {<a name="line.752"></a>
-<span class="sourceLineNo">753</span>         super(beanMeta, subTypeAttr, beanMeta.ctx.string(), beanRegistry);<a name="line.753"></a>
-<span class="sourceLineNo">754</span>         this.subTypes = subTypes;<a name="line.754"></a>
-<span class="sourceLineNo">755</span>         this.realProperty = realProperty;<a name="line.755"></a>
-<span class="sourceLineNo">756</span>         this.beanMeta = beanMeta;<a name="line.756"></a>
-<span class="sourceLineNo">757</span>      }<a name="line.757"></a>
-<span class="sourceLineNo">758</span><a name="line.758"></a>
-<span class="sourceLineNo">759</span>      /*<a name="line.759"></a>
-<span class="sourceLineNo">760</span>       * Setting this bean property causes the inner bean to be set to the subtype implementation.<a name="line.760"></a>
-<span class="sourceLineNo">761</span>       */<a name="line.761"></a>
-<span class="sourceLineNo">762</span>      @Override /* BeanPropertyMeta */<a name="line.762"></a>
-<span class="sourceLineNo">763</span>      public Object set(BeanMap&lt;?&gt; m, Object value) throws BeanRuntimeException {<a name="line.763"></a>
-<span class="sourceLineNo">764</span>         if (value == null)<a name="line.764"></a>
-<span class="sourceLineNo">765</span>            throw new BeanRuntimeException("Attempting to set bean subtype property to null.");<a name="line.765"></a>
-<span class="sourceLineNo">766</span>         String subTypeId = value.toString();<a name="line.766"></a>
-<span class="sourceLineNo">767</span>         for (Entry&lt;Class&lt;?&gt;,String&gt; e : subTypes.entrySet()) {<a name="line.767"></a>
-<span class="sourceLineNo">768</span>            if (e.getValue().equals(subTypeId)) {<a name="line.768"></a>
-<span class="sourceLineNo">769</span>               Class subTypeClass = e.getKey();<a name="line.769"></a>
-<span class="sourceLineNo">770</span>               m.meta = beanMeta.ctx.getBeanMeta(subTypeClass);<a name="line.770"></a>
-<span class="sourceLineNo">771</span>               try {<a name="line.771"></a>
-<span class="sourceLineNo">772</span>                  m.setBean(subTypeClass.newInstance());<a name="line.772"></a>
-<span class="sourceLineNo">773</span>                  if (realProperty != null)<a name="line.773"></a>
-<span class="sourceLineNo">774</span>                     realProperty.set(m, value);<a name="line.774"></a>
-<span class="sourceLineNo">775</span>                  // If subtype attribute wasn't specified first, set them again from the temporary cache.<a name="line.775"></a>
-<span class="sourceLineNo">776</span>                  if (m.propertyCache != null)<a name="line.776"></a>
-<span class="sourceLineNo">777</span>                     for (Map.Entry&lt;String,Object&gt; me : m.propertyCache.entrySet())<a name="line.777"></a>
-<span class="sourceLineNo">778</span>                        m.put(me.getKey(), me.getValue());<a name="line.778"></a>
-<span class="sourceLineNo">779</span>               } catch (Exception e1) {<a name="line.779"></a>
-<span class="sourceLineNo">780</span>                  throw new BeanRuntimeException(e1);<a name="line.780"></a>
-<span class="sourceLineNo">781</span>               }<a name="line.781"></a>
-<span class="sourceLineNo">782</span>               return null;<a name="line.782"></a>
-<span class="sourceLineNo">783</span>            }<a name="line.783"></a>
-<span class="sourceLineNo">784</span>         }<a name="line.784"></a>
-<span class="sourceLineNo">785</span>         throw new BeanRuntimeException(beanMeta.c, "Unknown subtype ID ''{0}''", subTypeId);<a name="line.785"></a>
-<span class="sourceLineNo">786</span>      }<a name="line.786"></a>
-<span class="sourceLineNo">787</span><a name="line.787"></a>
-<span class="sourceLineNo">788</span>      @Override /* BeanPropertyMeta */<a name="line.788"></a>
-<span class="sourceLineNo">789</span>      public Object get(BeanMap&lt;?&gt; m) throws BeanRuntimeException {<a name="line.789"></a>
-<span class="sourceLineNo">790</span>         String subTypeId = beanMeta.beanFilter.getSubTypes().get(beanMeta.c);<a name="line.790"></a>
-<span class="sourceLineNo">791</span>         if (subTypeId == null)<a name="line.791"></a>
-<span class="sourceLineNo">792</span>            throw new BeanRuntimeException(beanMeta.c, "Unmapped sub type class");<a name="line.792"></a>
-<span class="sourceLineNo">793</span>         return subTypeId;<a name="line.793"></a>
-<span class="sourceLineNo">794</span>      }<a name="line.794"></a>
-<span class="sourceLineNo">795</span>   }<a name="line.795"></a>
-<span class="sourceLineNo">796</span><a name="line.796"></a>
-<span class="sourceLineNo">797</span>   @Override /* Object */<a name="line.797"></a>
-<span class="sourceLineNo">798</span>   public String toString() {<a name="line.798"></a>
-<span class="sourceLineNo">799</span>      StringBuilder sb = new StringBuilder(c.getName());<a name="line.799"></a>
-<span class="sourceLineNo">800</span>      sb.append(" {\n");<a name="line.800"></a>
-<span class="sourceLineNo">801</span>      for (BeanPropertyMeta pm : this.properties.values())<a name="line.801"></a>
-<span class="sourceLineNo">802</span>         sb.append('\t').append(pm.toString()).append(",\n");<a name="line.802"></a>
-<span class="sourceLineNo">803</span>      sb.append('}');<a name="line.803"></a>
-<span class="sourceLineNo">804</span>      return sb.toString();<a name="line.804"></a>
-<span class="sourceLineNo">805</span>   }<a name="line.805"></a>
-<span class="sourceLineNo">806</span>}<a name="line.806"></a>
+<span class="sourceLineNo">409</span>   /**<a name="line.409"></a>
+<span class="sourceLineNo">410</span>    * Returns the {@link ClassMeta} of this bean.<a name="line.410"></a>
+<span class="sourceLineNo">411</span>    *<a name="line.411"></a>
+<span class="sourceLineNo">412</span>    * @return The {@link ClassMeta} of this bean.<a name="line.412"></a>
+<span class="sourceLineNo">413</span>    */<a name="line.413"></a>
+<span class="sourceLineNo">414</span>   @BeanIgnore<a name="line.414"></a>
+<span class="sourceLineNo">415</span>   public ClassMeta&lt;T&gt; getClassMeta() {<a name="line.415"></a>
+<span class="sourceLineNo">416</span>      return classMeta;<a name="line.416"></a>
+<span class="sourceLineNo">417</span>   }<a name="line.417"></a>
+<span class="sourceLineNo">418</span><a name="line.418"></a>
+<span class="sourceLineNo">419</span>   /**<a name="line.419"></a>
+<span class="sourceLineNo">420</span>    * Returns the dictionary name for this bean as defined through the {@link Bean#typeName()} annotation.<a name="line.420"></a>
+<span class="sourceLineNo">421</span>    *<a name="line.421"></a>
+<span class="sourceLineNo">422</span>    * @return The dictioanry name for this bean, or &lt;jk&gt;null&lt;/jk&gt; if it has no dictionary name defined.<a name="line.422"></a>
+<span class="sourceLineNo">423</span>    */<a name="line.423"></a>
+<span class="sourceLineNo">424</span>   public String getDictionaryName() {<a name="line.424"></a>
+<span class="sourceLineNo">425</span>      return dictionaryName;<a name="line.425"></a>
+<span class="sourceLineNo">426</span>   }<a name="line.426"></a>
+<span class="sourceLineNo">427</span><a name="line.427"></a>
+<span class="sourceLineNo">428</span>   /**<a name="line.428"></a>
+<span class="sourceLineNo">429</span>    * Returns the subtype property of this bean if it has one.<a name="line.429"></a>
+<span class="sourceLineNo">430</span>    * &lt;p&gt;<a name="line.430"></a>
+<span class="sourceLineNo">431</span>    * The subtype is specified using the {@link Bean#subTypeProperty()} annotation.<a name="line.431"></a>
+<span class="sourceLineNo">432</span>    *<a name="line.432"></a>
+<span class="sourceLineNo">433</span>    * @return The meta property for the sub type property, or &lt;jk&gt;null&lt;/jk&gt; if no subtype is defined for this bean.<a name="line.433"></a>
+<span class="sourceLineNo">434</span>    */<a name="line.434"></a>
+<span class="sourceLineNo">435</span>   public BeanPropertyMeta getSubTypeProperty() {<a name="line.435"></a>
+<span class="sourceLineNo">436</span>      return subTypeProperty;<a name="line.436"></a>
+<span class="sourceLineNo">437</span>   }<a name="line.437"></a>
+<span class="sourceLineNo">438</span><a name="line.438"></a>
+<span class="sourceLineNo">439</span>   /**<a name="line.439"></a>
+<span class="sourceLineNo">440</span>    * Returns &lt;jk&gt;true&lt;/jk&gt; if this bean has subtypes associated with it.<a name="line.440"></a>
+<span class="sourceLineNo">441</span>    * Subtypes are defined using the {@link Bean#subTypes()} annotation.<a name="line.441"></a>
+<span class="sourceLineNo">442</span>    *<a name="line.442"></a>
+<span class="sourceLineNo">443</span>    * @return &lt;jk&gt;true&lt;/jk&gt; if this bean has subtypes associated with it.<a name="line.443"></a>
+<span class="sourceLineNo">444</span>    */<a name="line.444"></a>
+<span class="sourceLineNo">445</span>   public boolean isSubTyped() {<a name="line.445"></a>
+<span class="sourceLineNo">446</span>      return subTypeProperty != null;<a name="line.446"></a>
+<span class="sourceLineNo">447</span>   }<a name="line.447"></a>
+<span class="sourceLineNo">448</span><a name="line.448"></a>
+<span class="sourceLineNo">449</span>   /**<a name="line.449"></a>
+<span class="sourceLineNo">450</span>    * Returns a mock bean property that resolves to the name &lt;js&gt;"_type"&lt;/js&gt; and whose value always resolves<a name="line.450"></a>
+<span class="sourceLineNo">451</span>    *    to the dictionary name of the bean.<a name="line.451"></a>
+<span class="sourceLineNo">452</span>    *<a name="line.452"></a>
+<span class="sourceLineNo">453</span>    * @return The type name property.<a name="line.453"></a>
+<span class="sourceLineNo">454</span>    */<a name="line.454"></a>
+<span class="sourceLineNo">455</span>   public BeanPropertyMeta getTypeProperty() {<a name="line.455"></a>
+<span class="sourceLineNo">456</span>      return typeProperty;<a name="line.456"></a>
+<span class="sourceLineNo">457</span>   }<a name="line.457"></a>
+<span class="sourceLineNo">458</span><a name="line.458"></a>
+<span class="sourceLineNo">459</span>   /*<a name="line.459"></a>
+<span class="sourceLineNo">460</span>    * Temporary getter/setter method struct.<a name="line.460"></a>
+<span class="sourceLineNo">461</span>    */<a name="line.461"></a>
+<span class="sourceLineNo">462</span>   private static class BeanMethod {<a name="line.462"></a>
+<span class="sourceLineNo">463</span>      String propertyName;<a name="line.463"></a>
+<span class="sourceLineNo">464</span>      boolean isSetter;<a name="line.464"></a>
+<span class="sourceLineNo">465</span>      Method method;<a name="line.465"></a>
+<span class="sourceLineNo">466</span>      Class&lt;?&gt; type;<a name="line.466"></a>
+<span class="sourceLineNo">467</span><a name="line.467"></a>
+<span class="sourceLineNo">468</span>      BeanMethod(String propertyName, boolean isSetter, Method method) {<a name="line.468"></a>
+<span class="sourceLineNo">469</span>         this.propertyName = propertyName;<a name="line.469"></a>
+<span class="sourceLineNo">470</span>         this.isSetter = isSetter;<a name="line.470"></a>
+<span class="sourceLineNo">471</span>         this.method = method;<a name="line.471"></a>
+<span class="sourceLineNo">472</span>         if (isSetter)<a name="line.472"></a>
+<span class="sourceLineNo">473</span>            this.type = method.getParameterTypes()[0];<a name="line.473"></a>
+<span class="sourceLineNo">474</span>         else<a name="line.474"></a>
+<span class="sourceLineNo">475</span>            this.type = method.getReturnType();<a name="line.475"></a>
+<span class="sourceLineNo">476</span>      }<a name="line.476"></a>
+<span class="sourceLineNo">477</span><a name="line.477"></a>
+<span class="sourceLineNo">478</span>      /*<a name="line.478"></a>
+<span class="sourceLineNo">479</span>       * Returns true if this method matches the class type of the specified property.<a name="line.479"></a>
+<span class="sourceLineNo">480</span>       * Only meant to be used for setters.<a name="line.480"></a>
+<span class="sourceLineNo">481</span>       */<a name="line.481"></a>
+<span class="sourceLineNo">482</span>      boolean matchesPropertyType(BeanPropertyMeta.Builder b) {<a name="line.482"></a>
+<span class="sourceLineNo">483</span>         if (b == null)<a name="line.483"></a>
+<span class="sourceLineNo">484</span>            return false;<a name="line.484"></a>
+<span class="sourceLineNo">485</span><a name="line.485"></a>
+<span class="sourceLineNo">486</span>         // Get the bean property type from the getter/field.<a name="line.486"></a>
+<span class="sourceLineNo">487</span>         Class&lt;?&gt; pt = null;<a name="line.487"></a>
+<span class="sourceLineNo">488</span>         if (b.getter != null)<a name="line.488"></a>
+<span class="sourceLineNo">489</span>            pt = b.getter.getReturnType();<a name="line.489"></a>
+<span class="sourceLineNo">490</span>         else if (b.field != null)<a name="line.490"></a>
+<span class="sourceLineNo">491</span>            pt = b.field.getType();<a name="line.491"></a>
+<span class="sourceLineNo">492</span><a name="line.492"></a>
+<span class="sourceLineNo">493</span>         // Doesn't match if no getter/field defined.<a name="line.493"></a>
+<span class="sourceLineNo">494</span>         if (pt == null)<a name="line.494"></a>
+<span class="sourceLineNo">495</span>            return false;<a name="line.495"></a>
+<span class="sourceLineNo">496</span><a name="line.496"></a>
+<span class="sourceLineNo">497</span>         // Doesn't match if not same type or super type as getter/field.<a name="line.497"></a>
+<span class="sourceLineNo">498</span>         if (! isParentClass(type, pt))<a name="line.498"></a>
+<span class="sourceLineNo">499</span>            return false;<a name="line.499"></a>
+<span class="sourceLineNo">500</span><a name="line.500"></a>
+<span class="sourceLineNo">501</span>         // If a setter was previously set, only use this setter if it's a closer<a name="line.501"></a>
+<span class="sourceLineNo">502</span>         // match (e.g. prev type is a superclass of this type).<a name="line.502"></a>
+<span class="sourceLineNo">503</span>         if (b.setter == null)<a name="line.503"></a>
+<span class="sourceLineNo">504</span>            return true;<a name="line.504"></a>
+<span class="sourceLineNo">505</span><a name="line.505"></a>
+<span class="sourceLineNo">506</span>         Class&lt;?&gt; prevType = b.setter.getParameterTypes()[0];<a name="line.506"></a>
+<span class="sourceLineNo">507</span>         return isParentClass(prevType, type, true);<a name="line.507"></a>
+<span class="sourceLineNo">508</span>      }<a name="line.508"></a>
+<span class="sourceLineNo">509</span><a name="line.509"></a>
+<span class="sourceLineNo">510</span>      @Override /* Object */<a name="line.510"></a>
+<span class="sourceLineNo">511</span>      public String toString() {<a name="line.511"></a>
+<span class="sourceLineNo">512</span>         return method.toString();<a name="line.512"></a>
+<span class="sourceLineNo">513</span>      }<a name="line.513"></a>
+<span class="sourceLineNo">514</span>   }<a name="line.514"></a>
+<span class="sourceLineNo">515</span><a name="line.515"></a>
+<span class="sourceLineNo">516</span>   /*<a name="line.516"></a>
+<span class="sourceLineNo">517</span>    * Find all the bean methods on this class.<a name="line.517"></a>
+<span class="sourceLineNo">518</span>    *<a name="line.518"></a>
+<span class="sourceLineNo">519</span>    * @param c The transformed class.<a name="line.519"></a>
+<span class="sourceLineNo">520</span>    * @param stopClass Don't look above this class in the hierarchy.<a name="line.520"></a>
+<span class="sourceLineNo">521</span>    * @param v The minimum method visibility.<a name="line.521"></a>
+<span class="sourceLineNo">522</span>    * @param fixedBeanProps Only include methods whose properties are in this list.<a name="line.522"></a>
+<span class="sourceLineNo">523</span>    * @param pn Use this property namer to determine property names from the method names.<a name="line.523"></a>
+<span class="sourceLineNo">524</span>    */<a name="line.524"></a>
+<span class="sourceLineNo">525</span>   private static List&lt;BeanMethod&gt; findBeanMethods(Class&lt;?&gt; c, Class&lt;?&gt; stopClass, Visibility v, Set&lt;String&gt; fixedBeanProps, PropertyNamer pn) {<a name="line.525"></a>
+<span class="sourceLineNo">526</span>      List&lt;BeanMethod&gt; l = new LinkedList&lt;BeanMethod&gt;();<a name="line.526"></a>
+<span class="sourceLineNo">527</span><a name="line.527"></a>
+<span class="sourceLineNo">528</span>      for (Class&lt;?&gt; c2 : findClasses(c, stopClass)) {<a name="line.528"></a>
+<span class="sourceLineNo">529</span>         for (Method m : c2.getDeclaredMethods()) {<a name="line.529"></a>
+<span class="sourceLineNo">530</span>            int mod = m.getModifiers();<a name="line.530"></a>
+<span class="sourceLineNo">531</span>            if (Modifier.isStatic(mod))<a name="line.531"></a>
+<span class="sourceLineNo">532</span>               continue;<a name="line.532"></a>
+<span class="sourceLineNo">533</span>            if (m.isAnnotationPresent(BeanIgnore.class))<a name="line.533"></a>
+<span class="sourceLineNo">534</span>               continue;<a name="line.534"></a>
+<span class="sourceLineNo">535</span>            if (m.isBridge())   // This eliminates methods with covariant return types from parent classes on child classes.<a name="line.535"></a>
+<span class="sourceLineNo">536</span>               continue;<a name="line.536"></a>
+<span class="sourceLineNo">537</span>            if (! (v.isVisible(m) || m.isAnnotationPresent(BeanProperty.class)))<a name="line.537"></a>
+<span class="sourceLineNo">538</span>               continue;<a name="line.538"></a>
+<span class="sourceLineNo">539</span>            String n = m.getName();<a name="line.539"></a>
+<span class="sourceLineNo">540</span>            Class&lt;?&gt;[] pt = m.getParameterTypes();<a name="line.540"></a>
+<span class="sourceLineNo">541</span>            Class&lt;?&gt; rt = m.getReturnType();<a name="line.541"></a>
+<span class="sourceLineNo">542</span>            boolean isGetter = false, isSetter = false;<a name="line.542"></a>
+<span class="sourceLineNo">543</span>            BeanProperty bp = m.getAnnotation(BeanProperty.class);<a name="line.543"></a>
+<span class="sourceLineNo">544</span>            if (pt.length == 0) {<a name="line.544"></a>
+<span class="sourceLineNo">545</span>               if (n.startsWith("get") &amp;&amp; (! rt.equals(Void.TYPE))) {<a name="line.545"></a>
+<span class="sourceLineNo">546</span>                  isGetter = true;<a name="line.546"></a>
+<span class="sourceLineNo">547</span>                  n = n.substring(3);<a name="line.547"></a>
+<span class="sourceLineNo">548</span>               } else if (n.startsWith("is") &amp;&amp; (rt.equals(Boolean.TYPE) || rt.equals(Boolean.class))) {<a name="line.548"></a>
+<span class="sourceLineNo">549</span>                  isGetter = true;<a name="line.549"></a>
+<span class="sourceLineNo">550</span>                  n = n.substring(2);<a name="line.550"></a>
+<span class="sourceLineNo">551</span>               } else if (bp != null &amp;&amp; ! bp.name().isEmpty()) {<a name="line.551"></a>
+<span class="sourceLineNo">552</span>                  isGetter = true;<a name="line.552"></a>
+<span class="sourceLineNo">553</span>                  n = bp.name();<a name="line.553"></a>
+<span class="sourceLineNo">554</span>               }<a name="line.554"></a>
+<span class="sourceLineNo">555</span>            } else if (pt.length == 1) {<a name="line.555"></a>
+<span class="sourceLineNo">556</span>               if (n.startsWith("set") &amp;&amp; (isParentClass(rt, c) || rt.equals(Void.TYPE))) {<a name="line.556"></a>
+<span class="sourceLineNo">557</span>                  isSetter = true;<a name="line.557"></a>
+<span class="sourceLineNo">558</span>                  n = n.substring(3);<a name="line.558"></a>
+<span class="sourceLineNo">559</span>               } else if (bp != null &amp;&amp; ! bp.name().isEmpty()) {<a name="line.559"></a>
+<span class="sourceLineNo">560</span>                  isSetter = true;<a name="line.560"></a>
+<span class="sourceLineNo">561</span>                  n = bp.name();<a name="line.561"></a>
+<span class="sourceLineNo">562</span>               }<a name="line.562"></a>
+<span class="sourceLineNo">563</span>            }<a name="line.563"></a>
+<span class="sourceLineNo">564</span>            n = pn.getPropertyName(n);<a name="line.564"></a>
+<span class="sourceLineNo">565</span>            if (isGetter || isSetter) {<a name="line.565"></a>
+<span class="sourceLineNo">566</span>               if (bp != null &amp;&amp; ! bp.name().equals("")) {<a name="line.566"></a>
+<span class="sourceLineNo">567</span>                  n = bp.name();<a name="line.567"></a>
+<span class="sourceLineNo">568</span>                  if (! fixedBeanProps.isEmpty())<a name="line.568"></a>
+<span class="sourceLineNo">569</span>                     if (! fixedBeanProps.contains(n))<a name="line.569"></a>
+<span class="sourceLineNo">570</span>                        throw new BeanRuntimeException(c, "Method property ''{0}'' identified in @BeanProperty, but missing from @Bean", n);<a name="line.570"></a>
+<span class="sourceLineNo">571</span>               }<a name="line.571"></a>
+<span class="sourceLineNo">572</span>               l.add(new BeanMethod(n, isSetter, m));<a name="line.572"></a>
+<span class="sourceLineNo">573</span>            }<a name="line.573"></a>
+<span class="sourceLineNo">574</span>         }<a name="line.574"></a>
+<span class="sourceLineNo">575</span>      }<a name="line.575"></a>
+<span class="sourceLineNo">576</span>      return l;<a name="line.576"></a>
+<span class="sourceLineNo">577</span>   }<a name="line.577"></a>
+<span class="sourceLineNo">578</span><a name="line.578"></a>
+<span class="sourceLineNo">579</span>   private static Collection&lt;Field&gt; findBeanFields(Class&lt;?&gt; c, Class&lt;?&gt; stopClass, Visibility v) {<a name="line.579"></a>
+<span class="sourceLineNo">580</span>      List&lt;Field&gt; l = new LinkedList&lt;Field&gt;();<a name="line.580"></a>
+<span class="sourceLineNo">581</span>      for (Class&lt;?&gt; c2 : findClasses(c, stopClass)) {<a name="line.581"></a>
+<span class="sourceLineNo">582</span>         for (Field f : c2.getDeclaredFields()) {<a name="line.582"></a>
+<span class="sourceLineNo">583</span>            int m = f.getModifiers();<a name="line.583"></a>
+<span class="sourceLineNo">584</span>            if (Modifier.isStatic(m) || Modifier.isTransient(m))<a name="line.584"></a>
+<span class="sourceLineNo">585</span>               continue;<a name="line.585"></a>
+<span class="sourceLineNo">586</span>            if (f.isAnnotationPresent(BeanIgnore.class))<a name="line.586"></a>
+<span class="sourceLineNo">587</span>               continue;<a name="line.587"></a>
+<span class="sourceLineNo">588</span>            if (! (v.isVisible(f) || f.isAnnotationPresent(BeanProperty.class)))<a name="line.588"></a>
+<span class="sourceLineNo">589</span>               continue;<a name="line.589"></a>
+<span class="sourceLineNo">590</span>            l.add(f);<a name="line.590"></a>
+<span class="sourceLineNo">591</span>         }<a name="line.591"></a>
+<span class="sourceLineNo">592</span>      }<a name="line.592"></a>
+<span class="sourceLineNo">593</span>      return l;<a name="line.593"></a>
+<span class="sourceLineNo">594</span>   }<a name="line.594"></a>
+<span class="sourceLineNo">595</span><a name="line.595"></a>
+<span class="sourceLineNo">596</span>   private static List&lt;Class&lt;?&gt;&gt; findClasses(Class&lt;?&gt; c, Class&lt;?&gt; stopClass) {<a name="line.596"></a>
+<span class="sourceLineNo">597</span>      LinkedList&lt;Class&lt;?&gt;&gt; l = new LinkedList&lt;Class&lt;?&gt;&gt;();<a name="line.597"></a>
+<span class="sourceLineNo">598</span>      findClasses(c, l, stopClass);<a name="line.598"></a>
+<span class="sourceLineNo">599</span>      return l;<a name="line.599"></a>
+<span class="sourceLineNo">600</span>   }<a name="line.600"></a>
+<span class="sourceLineNo">601</span><a name="line.601"></a>
+<span class="sourceLineNo">602</span>   private static void findClasses(Class&lt;?&gt; c, LinkedList&lt;Class&lt;?&gt;&gt; l, Class&lt;?&gt; stopClass) {<a name="line.602"></a>
+<span class="sourceLineNo">603</span>      while (c != null &amp;&amp; stopClass != c) {<a name="line.603"></a>
+<span class="sourceLineNo">604</span>         l.addFirst(c);<a name="line.604"></a>
+<span class="sourceLineNo">605</span>         for (Class&lt;?&gt; ci : c.getInterfaces())<a name="line.605"></a>
+<span class="sourceLineNo">606</span>            findClasses(ci, l, stopClass);<a name="line.606"></a>
+<span class="sourceLineNo">607</span>         c = c.getSuperclass();<a name="line.607"></a>
+<span class="sourceLineNo">608</span>      }<a name="line.608"></a>
+<span class="sourceLineNo">609</span>   }<a name="line.609"></a>
+<span class="sourceLineNo">610</span><a name="line.610"></a>
+<span class="sourceLineNo">611</span>   /**<a name="line.611"></a>
+<span class="sourceLineNo">612</span>    * Returns the metadata on all properties associated with this bean.<a name="line.612"></a>
+<span class="sourceLineNo">613</span>    *<a name="line.613"></a>
+<span class="sourceLineNo">614</span>    * @return Metadata on all properties associated with this bean.<a name="line.614"></a>
+<span class="sourceLineNo">615</span>    */<a name="line.615"></a>
+<span class="sourceLineNo">616</span>   public Collection&lt;BeanPropertyMeta&gt; getPropertyMetas() {<a name="line.616"></a>
+<span class="sourceLineNo">617</span>      return this.properties.values();<a name="line.617"></a>
+<span class="sourceLineNo">618</span>   }<a name="line.618"></a>
+<span class="sourceLineNo">619</span><a name="line.619"></a>
+<span class="sourceLineNo">620</span>   /**<a name="line.620"></a>
+<span class="sourceLineNo">621</span>    * Returns the metadata on the specified list of properties.<a name="line.621"></a>
+<span class="sourceLineNo">622</span>    *<a name="line.622"></a>
+<span class="sourceLineNo">623</span>    * @param pNames The list of properties to retrieve.  If &lt;jk&gt;null&lt;/jk&gt;, returns all properties.<a name="line.623"></a>
+<span class="sourceLineNo">624</span>    * @return The metadata on the specified list of properties.<a name="line.624"></a>
+<span class="sourceLineNo">625</span>    */<a name="line.625"></a>
+<span class="sourceLineNo">626</span>   public Collection&lt;BeanPropertyMeta&gt; getPropertyMetas(final

<TRUNCATED>


[08/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html b/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html
index 183c167..a37b530 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestServletDefault.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServletDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServletDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServletDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServletDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestServletException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletException.html b/content/site/apidocs/org/apache/juneau/rest/RestServletException.html
index 0f01b81..e558554 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestServletException.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestServletException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServletException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServletException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServletException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServletException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html b/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html
index 2cff9c2..d64c165 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestServletGroupDefault.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServletGroupDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServletGroupDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServletGroupDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServletGroupDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/RestUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestUtils.html b/content/site/apidocs/org/apache/juneau/rest/RestUtils.html
index 5f76647..9644e49 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestUtils.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/StreamResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/StreamResource.html b/content/site/apidocs/org/apache/juneau/rest/StreamResource.html
index 79dd639..bfdf08e 100644
--- a/content/site/apidocs/org/apache/juneau/rest/StreamResource.html
+++ b/content/site/apidocs/org/apache/juneau/rest/StreamResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StreamResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StreamResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StreamResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StreamResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html b/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html
index 566f0e2..509d55f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html
+++ b/content/site/apidocs/org/apache/juneau/rest/UrlPathPattern.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlPathPattern (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlPathPattern (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlPathPattern (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlPathPattern (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html
index 4da92e9..e861cb8 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Body.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Body (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Body (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Body (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Body (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html b/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html
index 79929da..fc243e9 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/FormData.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>FormData (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>FormData (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="FormData (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="FormData (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html b/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html
index a337bc0..f785d0f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/HasFormData.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HasFormData (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HasFormData (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HasFormData (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HasFormData (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html b/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html
index 35f517f..d5cbf96 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/HasQuery.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HasQuery (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HasQuery (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HasQuery (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HasQuery (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html
index 558a827..2331659 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Header.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Header (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Header (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Header (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Header (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html
index 8092372..a909533 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Inherit.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Inherit (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Inherit (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Inherit (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Inherit (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html
index d082e8a..c09f5ba 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Messages.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Messages (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Messages (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Messages (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Messages (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html
index fdb19b7..5457cd8 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Method.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Method (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Method (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Method (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Method (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html
index 6fb030c..dd9d027 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Parameter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Parameter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Parameter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Parameter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Parameter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html
index 1f44cf1..2f9eb96 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Path.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Path (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Path (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Path (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Path (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html b/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html
index c5562e4..ef79eb7 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/PathRemainder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PathRemainder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PathRemainder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PathRemainder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PathRemainder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html
index 79240c1..2b04501 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Properties.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Properties (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Properties (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Properties (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Properties (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html
index 984e130..1e95b9d 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Property.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Property (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Property (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Property (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Property (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html
index b672616..7c9db2d 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Query.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Query (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Query (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Query (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Query (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html b/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html
index e4f757a..5bf79ea 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/Response.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Response (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Response (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Response (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Response (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html b/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html
index e498366..29af5fc 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestMethod (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestMethod (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestMethod (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestMethod (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html b/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html
index bfd7634..286b405 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/RestResource.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestResource (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestResource (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html
index d42b7db..09f5d08 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html
index 5606b19..863106b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html
index a9df44a..892bad7 100644
--- a/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html b/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html
index 008a8e4..33c8716 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/AllowAllRedirects.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AllowAllRedirects (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>AllowAllRedirects (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AllowAllRedirects (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="AllowAllRedirects (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html b/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html
index e0b7bc1..dcaca54 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/DateHeader.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateHeader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateHeader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateHeader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateHeader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html b/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html
index c7f86a4..db1a70e 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/HttpMethod.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HttpMethod (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HttpMethod (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HttpMethod (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HttpMethod (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html b/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html
index 9064e57..0a502d6 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/NameValuePairs.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>NameValuePairs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>NameValuePairs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="NameValuePairs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="NameValuePairs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html b/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html
index 79a9532..8421b0b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/ResponsePattern.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResponsePattern (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResponsePattern (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResponsePattern (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResponsePattern (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html
index 40dd43d..d4e74f3 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCall.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestCall (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestCall (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestCall (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestCall (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html
index 4049bb8..1463e01 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCallException.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestCallException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestCallException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestCallException (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestCallException (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html
index 3cbfdb6..cfcd8a1 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCallInterceptor.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestCallInterceptor (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestCallInterceptor (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestCallInterceptor (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestCallInterceptor (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html b/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html
index 66075fc..83403e1 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RestCallLogger.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestCallLogger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestCallLogger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestCallLogger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestCallLogger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html b/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html
index 4049438..11b8b3b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RestClient.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestClient (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestClient (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestClient (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestClient (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RestRequestEntity.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RestRequestEntity.html b/content/site/apidocs/org/apache/juneau/rest/client/RestRequestEntity.html
index 959adfe..22d549d 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RestRequestEntity.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RestRequestEntity.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestRequestEntity (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestRequestEntity (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestRequestEntity (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestRequestEntity (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/RetryOn.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/RetryOn.html b/content/site/apidocs/org/apache/juneau/rest/client/RetryOn.html
index b630bae..5ed2995 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/RetryOn.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/RetryOn.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RetryOn (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RetryOn (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RetryOn (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RetryOn (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.CertValidate.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.CertValidate.html b/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.CertValidate.html
index 44b4620..b594484 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.CertValidate.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.CertValidate.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SSLOpts.CertValidate (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SSLOpts.CertValidate (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SSLOpts.CertValidate (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SSLOpts.CertValidate (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.HostVerify.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.HostVerify.html b/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.HostVerify.html
index be7a2c6..f6144b8 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.HostVerify.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.HostVerify.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SSLOpts.HostVerify (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SSLOpts.HostVerify (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SSLOpts.HostVerify (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SSLOpts.HostVerify (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.html b/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.html
index a65393d..6360b8a 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/SSLOpts.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SSLOpts (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SSLOpts (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SSLOpts (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SSLOpts (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/SerializedNameValuePair.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/SerializedNameValuePair.html b/content/site/apidocs/org/apache/juneau/rest/client/SerializedNameValuePair.html
index 1426cd5..0384a46 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/SerializedNameValuePair.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/SerializedNameValuePair.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SerializedNameValuePair (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SerializedNameValuePair (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SerializedNameValuePair (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SerializedNameValuePair (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/SimpleX509TrustManager.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/SimpleX509TrustManager.html b/content/site/apidocs/org/apache/juneau/rest/client/SimpleX509TrustManager.html
index 49fac0b..6df2853 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/SimpleX509TrustManager.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/SimpleX509TrustManager.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SimpleX509TrustManager (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SimpleX509TrustManager (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SimpleX509TrustManager (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SimpleX509TrustManager (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/client/package-frame.html
index 9ec8e4e..0d7a407 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.client (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.client (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/client/package-summary.html
index 0f15094..373cad5 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.client (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.client (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.client (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.client (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/client/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/client/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/client/package-tree.html
index b805440..dc2c549 100644
--- a/content/site/apidocs/org/apache/juneau/rest/client/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/client/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.client Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.client Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.client Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.client Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/converters/Introspectable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/converters/Introspectable.html b/content/site/apidocs/org/apache/juneau/rest/converters/Introspectable.html
index e6bcfb4..957a07f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/converters/Introspectable.html
+++ b/content/site/apidocs/org/apache/juneau/rest/converters/Introspectable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Introspectable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Introspectable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Introspectable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Introspectable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/converters/Queryable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/converters/Queryable.html b/content/site/apidocs/org/apache/juneau/rest/converters/Queryable.html
index 76dad19..97c550e 100644
--- a/content/site/apidocs/org/apache/juneau/rest/converters/Queryable.html
+++ b/content/site/apidocs/org/apache/juneau/rest/converters/Queryable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Queryable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Queryable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Queryable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Queryable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/converters/Traversable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/converters/Traversable.html b/content/site/apidocs/org/apache/juneau/rest/converters/Traversable.html
index a2ca97a..ff34a6d 100644
--- a/content/site/apidocs/org/apache/juneau/rest/converters/Traversable.html
+++ b/content/site/apidocs/org/apache/juneau/rest/converters/Traversable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Traversable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Traversable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Traversable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Traversable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/converters/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/converters/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/converters/package-frame.html
index dcec45d..37e4f1b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/converters/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/converters/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.converters (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.converters (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/converters/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/converters/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/converters/package-summary.html
index 67b5b67..eaaa0f7 100644
--- a/content/site/apidocs/org/apache/juneau/rest/converters/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/converters/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.converters (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.converters (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.converters (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.converters (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/converters/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/converters/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/converters/package-tree.html
index 5b7b0b3..4611226 100644
--- a/content/site/apidocs/org/apache/juneau/rest/converters/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/converters/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.converters Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.converters Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.converters Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.converters Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/BaseProvider.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/BaseProvider.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/BaseProvider.html
index 4a6171f..6aa8667 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/BaseProvider.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/BaseProvider.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BaseProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BaseProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BaseProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BaseProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/DefaultProvider.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/DefaultProvider.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/DefaultProvider.html
index da5ef78..b244795 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/DefaultProvider.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/DefaultProvider.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DefaultProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DefaultProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DefaultProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DefaultProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/JuneauProvider.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/JuneauProvider.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/JuneauProvider.html
index 4c29853..71bf48f 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/JuneauProvider.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/JuneauProvider.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JuneauProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JuneauProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JuneauProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JuneauProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-frame.html
index 4de5481..ccd9bad 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jaxrs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jaxrs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-summary.html
index 62f5a55..e2f7767 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jaxrs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jaxrs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.jaxrs (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.jaxrs (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-tree.html
index ca84de4..826407b 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jaxrs Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jaxrs Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.jaxrs Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.jaxrs Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/DefaultJenaProvider.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/DefaultJenaProvider.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/DefaultJenaProvider.html
index a3d891f..adc85c9 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/DefaultJenaProvider.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/DefaultJenaProvider.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DefaultJenaProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DefaultJenaProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DefaultJenaProvider (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DefaultJenaProvider (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-frame.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-frame.html
index cd45776..5d19b54 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jaxrs.rdf (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jaxrs.rdf (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-summary.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-summary.html
index ced063f..d6a7534 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jaxrs.rdf (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jaxrs.rdf (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.jaxrs.rdf (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.jaxrs.rdf (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-tree.html b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-tree.html
index 706c21e..fd24b05 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jaxrs/rdf/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.rest.jaxrs.rdf Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.rest.jaxrs.rdf Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.rest.jaxrs.rdf Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.rest.jaxrs.rdf Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaDefault.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaDefault.html b/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaDefault.html
index 09792f8..0ee6a55 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaDefault.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaDefault.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServletJenaDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServletJenaDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServletJenaDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServletJenaDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaGroupDefault.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaGroupDefault.html b/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaGroupDefault.html
index 5095221..f6d962c 100644
--- a/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaGroupDefault.html
+++ b/content/site/apidocs/org/apache/juneau/rest/jena/RestServletJenaGroupDefault.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>RestServletJenaGroupDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>RestServletJenaGroupDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="RestServletJenaGroupDefault (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="RestServletJenaGroupDefault (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[05/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeFull.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeFull.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeFull.html
index 57356d6..55e6281 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeFull.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeFull.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateTimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateTimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateTimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateTimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeLong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeLong.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeLong.html
index 9349a18..d37aede 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeLong.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeLong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateTimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateTimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateTimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateTimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeMedium.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeMedium.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeMedium.html
index 26b8214..16ccaa2 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeMedium.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeMedium.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateTimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateTimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateTimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateTimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeShort.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeShort.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeShort.html
index b34c123..be06849 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeShort.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeShort.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateTimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateTimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateTimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateTimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeSimple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeSimple.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeSimple.html
index 7c03752..2900f48 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeSimple.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateTimeSimple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateTimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateTimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateTimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateTimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DT.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DT.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DT.html
index 58a6289..92cee33 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DT.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DT.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.ISO8601DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.ISO8601DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.ISO8601DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.ISO8601DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTP.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTP.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTP.html
index 03ee312..865be16 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTP.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTP.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.ISO8601DTP (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.ISO8601DTP (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.ISO8601DTP (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.ISO8601DTP (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTPZ.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTPZ.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTPZ.html
index 39a6b38..cdf0123 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTPZ.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTPZ.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTZ.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTZ.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTZ.html
index c0e4d70..0e8f60f 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTZ.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ISO8601DTZ.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.ISO8601DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.ISO8601DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.ISO8601DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.ISO8601DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822D.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822D.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822D.html
index c79d8fa..fbda685 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822D.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822D.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.RFC2822D (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.RFC2822D (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.RFC2822D (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.RFC2822D (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DT.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DT.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DT.html
index 936eaf8..ce97d05 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DT.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DT.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.RFC2822DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.RFC2822DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.RFC2822DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.RFC2822DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DTZ.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DTZ.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DTZ.html
index df2ad60..a346dde 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DTZ.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.RFC2822DTZ.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.RFC2822DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.RFC2822DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.RFC2822DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.RFC2822DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeFull.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeFull.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeFull.html
index a8af4fb..ef0aa87 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeFull.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeFull.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.TimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.TimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.TimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.TimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeLong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeLong.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeLong.html
index 7368012..b725f70 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeLong.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeLong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.TimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.TimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.TimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.TimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeMedium.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeMedium.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeMedium.html
index 36dc18f..5502c84 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeMedium.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeMedium.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.TimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.TimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.TimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.TimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeShort.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeShort.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeShort.html
index f1e0f49..a863028 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeShort.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeShort.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.TimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.TimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.TimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.TimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeSimple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeSimple.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeSimple.html
index 3981453..6b05a2d 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeSimple.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.TimeSimple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.TimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.TimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.TimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.TimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ToString.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ToString.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ToString.html
index 32b9637..debcd27 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ToString.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.ToString.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.ToString (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.ToString (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.ToString (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.ToString (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.html
index 6b9676b..ff5a8bb 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/EnumerationSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/EnumerationSwap.html b/content/site/apidocs/org/apache/juneau/transforms/EnumerationSwap.html
index 29b247e..8c3540b 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/EnumerationSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/EnumerationSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>EnumerationSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>EnumerationSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="EnumerationSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="EnumerationSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/IteratorSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/IteratorSwap.html b/content/site/apidocs/org/apache/juneau/transforms/IteratorSwap.html
index b15fa54..40bea52 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/IteratorSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/IteratorSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IteratorSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>IteratorSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IteratorSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="IteratorSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Html.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Html.html b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Html.html
index 7833a2a..4799627 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Html.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Html.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderSwap.Html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderSwap.Html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderSwap.Html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderSwap.Html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Json.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Json.html b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Json.html
index b78f9f9..9ee7ca1 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Json.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Json.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderSwap.Json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderSwap.Json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderSwap.Json (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderSwap.Json (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.PlainText.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.PlainText.html b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.PlainText.html
index ebadf08..ab3eddf 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.PlainText.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.PlainText.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderSwap.PlainText (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderSwap.PlainText (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderSwap.PlainText (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderSwap.PlainText (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Xml.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Xml.html b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Xml.html
index 311130a..b1f2536 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Xml.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.Xml.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderSwap.Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderSwap.Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderSwap.Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderSwap.Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.html b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.html
index 6c1eee1..bc0c2d1 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/ReaderSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReaderSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReaderSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReaderSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReaderSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/XMLGregorianCalendarSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/XMLGregorianCalendarSwap.html b/content/site/apidocs/org/apache/juneau/transforms/XMLGregorianCalendarSwap.html
index 36bfe72..906b816 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/XMLGregorianCalendarSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/XMLGregorianCalendarSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XMLGregorianCalendarSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XMLGregorianCalendarSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XMLGregorianCalendarSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XMLGregorianCalendarSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/package-frame.html b/content/site/apidocs/org/apache/juneau/transforms/package-frame.html
index ffafa12..489c6a0 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.transforms (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.transforms (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/package-summary.html b/content/site/apidocs/org/apache/juneau/transforms/package-summary.html
index 86a2028..86853c1 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.transforms (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.transforms (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.transforms (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.transforms (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/package-tree.html b/content/site/apidocs/org/apache/juneau/transforms/package-tree.html
index d68e21e..87b6adc 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.transforms Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.transforms Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.transforms Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.transforms Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.Decoding.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.Decoding.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.Decoding.html
index 505d1da..c7eb3d2 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.Decoding.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.Decoding.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonParser.Decoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonParser.Decoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonParser.Decoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonParser.Decoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.html
index d1bce9f..b15ae7b 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonParserContext.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonParserContext.html
index b4ca4d2..1832053 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonParserSession.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonParserSession.html
index 83cf65a..6b36369 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonReader.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonReader.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonReader.html
index 651c721..9571c45 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonReader.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonReader.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonReader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonReader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonReader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonReader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Encoding.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Encoding.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Encoding.html
index 366b319..a2b0986 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Encoding.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Encoding.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializer.Encoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializer.Encoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializer.Encoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializer.Encoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Readable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Readable.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Readable.html
index 7079313..08e8423 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Readable.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Readable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializer.Readable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializer.Readable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializer.Readable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializer.Readable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Simple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Simple.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Simple.html
index 0c352c6..72c009d 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Simple.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.Simple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.SimpleEncoding.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.SimpleEncoding.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.SimpleEncoding.html
index cb11b7b..01ac9c3 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.SimpleEncoding.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.SimpleEncoding.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializer.SimpleEncoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializer.SimpleEncoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializer.SimpleEncoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializer.SimpleEncoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.html
index 60bc760..83e06e7 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerContext.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerContext.html
index 67b50a6..211a8cd 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerSession.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerSession.html
index 12294ce..e1db166 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UonWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UonWriter.html b/content/site/apidocs/org/apache/juneau/urlencoding/UonWriter.html
index a18a3fb..ae58d8b 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UonWriter.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UonWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UonWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UonWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UonWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UonWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingClassMeta.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingClassMeta.html
index 3d1b57d..53f89e8 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingClassMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingContext.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingContext.html
index 80cf363..bd140ec 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingContext.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParser.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParser.html
index 2abce1b..e4b24b7 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParser.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserContext.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserContext.html
index 6150e75..832ec9f 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserSession.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserSession.html
index 026a327..6c72913 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Readable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Readable.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Readable.html
index a1c6a67..a78691a 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Readable.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Readable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingSerializer.Readable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingSerializer.Readable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingSerializer.Readable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingSerializer.Readable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Simple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Simple.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Simple.html
index 8c6562a..be68f3d 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Simple.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.Simple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingSerializer.Simple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingSerializer.Simple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.SimpleExpanded.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.SimpleExpanded.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.SimpleExpanded.html
index 2c4a0e1..5cf458c 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.SimpleExpanded.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.SimpleExpanded.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingSerializer.SimpleExpanded (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingSerializer.SimpleExpanded (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingSerializer.SimpleExpanded (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingSerializer.SimpleExpanded (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.html
index 278a325..7b6f2a6 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerContext.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerContext.html
index 484a099..97ba8e5 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.html b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.html
index 5c45676..23ecbcc 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/UrlEncodingSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncodingSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncodingSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncodingSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncodingSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/annotation/UrlEncoding.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/UrlEncoding.html b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/UrlEncoding.html
index 7e1e3d5..5ee369f 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/UrlEncoding.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/UrlEncoding.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>UrlEncoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>UrlEncoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UrlEncoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="UrlEncoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-frame.html
index 7d96e51..af436b5 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.urlencoding.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.urlencoding.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-summary.html
index 7dfbe42..0a948f2 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.urlencoding.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.urlencoding.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.urlencoding.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.urlencoding.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-tree.html
index bd04781..f31e0ee 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.urlencoding.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.urlencoding.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.urlencoding.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.urlencoding.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/package-frame.html b/content/site/apidocs/org/apache/juneau/urlencoding/package-frame.html
index 67d35b6..f0af280 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.urlencoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.urlencoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/package-summary.html b/content/site/apidocs/org/apache/juneau/urlencoding/package-summary.html
index 5ead624..3eb9b96 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.urlencoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.urlencoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.urlencoding (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.urlencoding (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/urlencoding/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/urlencoding/package-tree.html b/content/site/apidocs/org/apache/juneau/urlencoding/package-tree.html
index b06cbb8..ce6b1da 100644
--- a/content/site/apidocs/org/apache/juneau/urlencoding/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/urlencoding/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.urlencoding Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.urlencoding Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.urlencoding Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.urlencoding Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/utils/Args.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/utils/Args.html b/content/site/apidocs/org/apache/juneau/utils/Args.html
index 3be1ad5..df7d77e 100644
--- a/content/site/apidocs/org/apache/juneau/utils/Args.html
+++ b/content/site/apidocs/org/apache/juneau/utils/Args.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Args (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Args (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Args (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Args (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[06/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/SimpleVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/SimpleVar.html b/content/site/apidocs/org/apache/juneau/svl/SimpleVar.html
index 72ac9b6..ee14d31 100644
--- a/content/site/apidocs/org/apache/juneau/svl/SimpleVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/SimpleVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SimpleVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SimpleVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SimpleVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SimpleVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/StreamedVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/StreamedVar.html b/content/site/apidocs/org/apache/juneau/svl/StreamedVar.html
index 216f620..0cc1849 100644
--- a/content/site/apidocs/org/apache/juneau/svl/StreamedVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/StreamedVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StreamedVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StreamedVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StreamedVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StreamedVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/Var.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/Var.html b/content/site/apidocs/org/apache/juneau/svl/Var.html
index 9a05b18..69d4911 100644
--- a/content/site/apidocs/org/apache/juneau/svl/Var.html
+++ b/content/site/apidocs/org/apache/juneau/svl/Var.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Var (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Var (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Var (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Var (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/VarResolver.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/VarResolver.html b/content/site/apidocs/org/apache/juneau/svl/VarResolver.html
index 3fc8070..08d0236 100644
--- a/content/site/apidocs/org/apache/juneau/svl/VarResolver.html
+++ b/content/site/apidocs/org/apache/juneau/svl/VarResolver.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>VarResolver (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>VarResolver (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="VarResolver (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="VarResolver (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/VarResolverContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/VarResolverContext.html b/content/site/apidocs/org/apache/juneau/svl/VarResolverContext.html
index 0efb9eb..0c4445e 100644
--- a/content/site/apidocs/org/apache/juneau/svl/VarResolverContext.html
+++ b/content/site/apidocs/org/apache/juneau/svl/VarResolverContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>VarResolverContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>VarResolverContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="VarResolverContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="VarResolverContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/VarResolverSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/VarResolverSession.html b/content/site/apidocs/org/apache/juneau/svl/VarResolverSession.html
index f35f2cf..40b12e3 100644
--- a/content/site/apidocs/org/apache/juneau/svl/VarResolverSession.html
+++ b/content/site/apidocs/org/apache/juneau/svl/VarResolverSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>VarResolverSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>VarResolverSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="VarResolverSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="VarResolverSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/package-frame.html b/content/site/apidocs/org/apache/juneau/svl/package-frame.html
index 4c2bba1..8b7439e 100644
--- a/content/site/apidocs/org/apache/juneau/svl/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/svl/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.svl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.svl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/package-summary.html b/content/site/apidocs/org/apache/juneau/svl/package-summary.html
index c62e64e..d658c3c 100644
--- a/content/site/apidocs/org/apache/juneau/svl/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/svl/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.svl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.svl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.svl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.svl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/package-tree.html b/content/site/apidocs/org/apache/juneau/svl/package-tree.html
index 3bc31ec..ff27029 100644
--- a/content/site/apidocs/org/apache/juneau/svl/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/svl/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.svl Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.svl Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.svl Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.svl Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/ArgsVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/ArgsVar.html b/content/site/apidocs/org/apache/juneau/svl/vars/ArgsVar.html
index 171d716..fa96466 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/ArgsVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/ArgsVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ArgsVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ArgsVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ArgsVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ArgsVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/ConfigFileVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/ConfigFileVar.html b/content/site/apidocs/org/apache/juneau/svl/vars/ConfigFileVar.html
index e41ece8..f846f45 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/ConfigFileVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/ConfigFileVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigFileVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigFileVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigFileVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigFileVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/EnvVariablesVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/EnvVariablesVar.html b/content/site/apidocs/org/apache/juneau/svl/vars/EnvVariablesVar.html
index 35f4d61..c1ca4d3 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/EnvVariablesVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/EnvVariablesVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>EnvVariablesVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>EnvVariablesVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="EnvVariablesVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="EnvVariablesVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/ManifestFileVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/ManifestFileVar.html b/content/site/apidocs/org/apache/juneau/svl/vars/ManifestFileVar.html
index 179ad0d..3242ae2 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/ManifestFileVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/ManifestFileVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ManifestFileVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ManifestFileVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ManifestFileVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ManifestFileVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/SystemPropertiesVar.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/SystemPropertiesVar.html b/content/site/apidocs/org/apache/juneau/svl/vars/SystemPropertiesVar.html
index d9f0dbe..a258030 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/SystemPropertiesVar.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/SystemPropertiesVar.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SystemPropertiesVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SystemPropertiesVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SystemPropertiesVar (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SystemPropertiesVar (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/package-frame.html b/content/site/apidocs/org/apache/juneau/svl/vars/package-frame.html
index b34840f..ed666d4 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.svl.vars (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.svl.vars (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/package-summary.html b/content/site/apidocs/org/apache/juneau/svl/vars/package-summary.html
index 565afd2..755a944 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.svl.vars (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.svl.vars (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.svl.vars (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.svl.vars (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/svl/vars/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/svl/vars/package-tree.html b/content/site/apidocs/org/apache/juneau/svl/vars/package-tree.html
index a5d70eb..c3cc003 100644
--- a/content/site/apidocs/org/apache/juneau/svl/vars/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/svl/vars/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.svl.vars Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.svl.vars Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.svl.vars Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.svl.vars Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/AnnotationBeanFilterBuilder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/AnnotationBeanFilterBuilder.html b/content/site/apidocs/org/apache/juneau/transform/AnnotationBeanFilterBuilder.html
index 094d5ca..81f7eca 100644
--- a/content/site/apidocs/org/apache/juneau/transform/AnnotationBeanFilterBuilder.html
+++ b/content/site/apidocs/org/apache/juneau/transform/AnnotationBeanFilterBuilder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AnnotationBeanFilterBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>AnnotationBeanFilterBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AnnotationBeanFilterBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="AnnotationBeanFilterBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/BeanFilter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/BeanFilter.html b/content/site/apidocs/org/apache/juneau/transform/BeanFilter.html
index a2eb259..0e77c72 100644
--- a/content/site/apidocs/org/apache/juneau/transform/BeanFilter.html
+++ b/content/site/apidocs/org/apache/juneau/transform/BeanFilter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanFilter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanFilter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanFilter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanFilter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/BeanFilterBuilder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/BeanFilterBuilder.html b/content/site/apidocs/org/apache/juneau/transform/BeanFilterBuilder.html
index f3a82d1..ce59cf2 100644
--- a/content/site/apidocs/org/apache/juneau/transform/BeanFilterBuilder.html
+++ b/content/site/apidocs/org/apache/juneau/transform/BeanFilterBuilder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanFilterBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanFilterBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanFilterBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanFilterBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/InterfaceBeanFilterBuilder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/InterfaceBeanFilterBuilder.html b/content/site/apidocs/org/apache/juneau/transform/InterfaceBeanFilterBuilder.html
index 27e3a1b..a21f688 100644
--- a/content/site/apidocs/org/apache/juneau/transform/InterfaceBeanFilterBuilder.html
+++ b/content/site/apidocs/org/apache/juneau/transform/InterfaceBeanFilterBuilder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>InterfaceBeanFilterBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>InterfaceBeanFilterBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="InterfaceBeanFilterBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="InterfaceBeanFilterBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/MapSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/MapSwap.html b/content/site/apidocs/org/apache/juneau/transform/MapSwap.html
index 7dc19b5..e8d6908 100644
--- a/content/site/apidocs/org/apache/juneau/transform/MapSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transform/MapSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MapSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MapSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MapSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MapSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/PojoSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/PojoSwap.html b/content/site/apidocs/org/apache/juneau/transform/PojoSwap.html
index 6348f0f..efce606 100644
--- a/content/site/apidocs/org/apache/juneau/transform/PojoSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transform/PojoSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>PojoSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>PojoSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PojoSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="PojoSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/StringSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/StringSwap.html b/content/site/apidocs/org/apache/juneau/transform/StringSwap.html
index 9a484ac..e53684f 100644
--- a/content/site/apidocs/org/apache/juneau/transform/StringSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transform/StringSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StringSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StringSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StringSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StringSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/SurrogateSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/SurrogateSwap.html b/content/site/apidocs/org/apache/juneau/transform/SurrogateSwap.html
index c3425d0..c32c637 100644
--- a/content/site/apidocs/org/apache/juneau/transform/SurrogateSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transform/SurrogateSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SurrogateSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SurrogateSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SurrogateSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SurrogateSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/package-frame.html b/content/site/apidocs/org/apache/juneau/transform/package-frame.html
index 6152b4d..4c6619e 100644
--- a/content/site/apidocs/org/apache/juneau/transform/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/transform/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.transform (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.transform (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/package-summary.html b/content/site/apidocs/org/apache/juneau/transform/package-summary.html
index 9156331..3886a27 100644
--- a/content/site/apidocs/org/apache/juneau/transform/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/transform/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.transform (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.transform (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.transform (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.transform (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transform/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transform/package-tree.html b/content/site/apidocs/org/apache/juneau/transform/package-tree.html
index 0c54236..578cc85 100644
--- a/content/site/apidocs/org/apache/juneau/transform/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/transform/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.transform Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.transform Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.transform Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.transform Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/BeanStringSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/BeanStringSwap.html b/content/site/apidocs/org/apache/juneau/transforms/BeanStringSwap.html
index e6b0196..59b8b20 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/BeanStringSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/BeanStringSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>BeanStringSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>BeanStringSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="BeanStringSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="BeanStringSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/ByteArrayBase64Swap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/ByteArrayBase64Swap.html b/content/site/apidocs/org/apache/juneau/transforms/ByteArrayBase64Swap.html
index 97e6875..3261c3d 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/ByteArrayBase64Swap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/ByteArrayBase64Swap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ByteArrayBase64Swap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ByteArrayBase64Swap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ByteArrayBase64Swap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ByteArrayBase64Swap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarLongSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarLongSwap.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarLongSwap.html
index d6460bc..000fa67 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarLongSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarLongSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarLongSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarLongSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarLongSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarLongSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarMapSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarMapSwap.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarMapSwap.html
index b7d82eb..4100d6e 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarMapSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarMapSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarMapSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarMapSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarMapSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarMapSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateFull.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateFull.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateFull.html
index 09af7f9..9baf48f 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateFull.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateFull.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateLong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateLong.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateLong.html
index 497c31a..27a4fe7 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateLong.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateLong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateMedium.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateMedium.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateMedium.html
index 98043f9..f39f7dc 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateMedium.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateMedium.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateShort.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateShort.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateShort.html
index de7d446..971722f 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateShort.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateShort.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateSimple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateSimple.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateSimple.html
index c29fd79..43b97b1 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateSimple.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateSimple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeFull.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeFull.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeFull.html
index 99ca27b..1244710 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeFull.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeFull.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateTimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateTimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateTimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateTimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeLong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeLong.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeLong.html
index 1301628..4424019 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeLong.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeLong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateTimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateTimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateTimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateTimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeMedium.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeMedium.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeMedium.html
index 2486def..7703549 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeMedium.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeMedium.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateTimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateTimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateTimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateTimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeShort.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeShort.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeShort.html
index 30a083c..b0283c4 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeShort.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeShort.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateTimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateTimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateTimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateTimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeSimple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeSimple.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeSimple.html
index d26b760..4675986 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeSimple.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.DateTimeSimple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.DateTimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.DateTimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.DateTimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.DateTimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DT.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DT.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DT.html
index 861ceff..0c34ece 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DT.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DT.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.ISO8601DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.ISO8601DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.ISO8601DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.ISO8601DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTP.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTP.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTP.html
index 80d27f5..99e5999 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTP.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTP.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.ISO8601DTP (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.ISO8601DTP (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.ISO8601DTP (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.ISO8601DTP (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTPZ.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTPZ.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTPZ.html
index ee025eb..b125af8 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTPZ.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTPZ.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.ISO8601DTPZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTZ.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTZ.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTZ.html
index 5022c5d..c797cc3 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTZ.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ISO8601DTZ.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.ISO8601DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.ISO8601DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.ISO8601DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.ISO8601DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822D.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822D.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822D.html
index 3c9ff67..f8d1ca0 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822D.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822D.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.RFC2822D (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.RFC2822D (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.RFC2822D (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.RFC2822D (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DT.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DT.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DT.html
index 2cfc078..3c4aa6f 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DT.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DT.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.RFC2822DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.RFC2822DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.RFC2822DT (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.RFC2822DT (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DTZ.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DTZ.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DTZ.html
index 41ec249..2043922 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DTZ.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.RFC2822DTZ.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.RFC2822DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.RFC2822DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.RFC2822DTZ (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.RFC2822DTZ (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeFull.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeFull.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeFull.html
index 9aaac54..16fcae0 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeFull.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeFull.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.TimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.TimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.TimeFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.TimeFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeLong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeLong.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeLong.html
index 4d9f9a9..3fbd3eb 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeLong.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeLong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.TimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.TimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.TimeLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.TimeLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeMedium.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeMedium.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeMedium.html
index 54d03c6..ae619c6 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeMedium.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeMedium.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.TimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.TimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.TimeMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.TimeMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeShort.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeShort.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeShort.html
index 395fbbd..0ad6c25 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeShort.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeShort.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.TimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.TimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.TimeShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.TimeShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeSimple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeSimple.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeSimple.html
index 5db6d63..97c2ca0 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeSimple.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.TimeSimple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.TimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.TimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.TimeSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.TimeSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ToString.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ToString.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ToString.html
index 7cd7bdc..124440e 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ToString.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.ToString.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap.ToString (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap.ToString (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap.ToString (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap.ToString (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.html b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.html
index 0ef4296..c51316f 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/CalendarSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CalendarSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CalendarSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CalendarSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CalendarSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateLongSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateLongSwap.html b/content/site/apidocs/org/apache/juneau/transforms/DateLongSwap.html
index a8fa3c1..00f1355 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateLongSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateLongSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateLongSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateLongSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateLongSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateLongSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateMapSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateMapSwap.html b/content/site/apidocs/org/apache/juneau/transforms/DateMapSwap.html
index 8d9491b..51f1bce 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateMapSwap.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateMapSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateMapSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateMapSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateMapSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateMapSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateFull.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateFull.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateFull.html
index 6be4086..d6064dd 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateFull.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateFull.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateFull (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateFull (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateLong.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateLong.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateLong.html
index d8187bc..5c509b4 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateLong.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateLong.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateLong (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateLong (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateMedium.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateMedium.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateMedium.html
index 77b84e5..1b286f7 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateMedium.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateMedium.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateMedium (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateMedium (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateShort.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateShort.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateShort.html
index 8545d89..805bcb8 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateShort.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateShort.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateShort (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateShort (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateSimple.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateSimple.html b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateSimple.html
index b9efc6d..6448055 100644
--- a/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateSimple.html
+++ b/content/site/apidocs/org/apache/juneau/transforms/DateSwap.DateSimple.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DateSwap.DateSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DateSwap.DateSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DateSwap.DateSimple (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DateSwap.DateSimple (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[14/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/annotation/package-tree.html
index 041357d..a87365f 100644
--- a/content/site/apidocs/org/apache/juneau/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/csv/CsvSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/csv/CsvSerializer.html b/content/site/apidocs/org/apache/juneau/csv/CsvSerializer.html
index a3f3a6a..580893c 100644
--- a/content/site/apidocs/org/apache/juneau/csv/CsvSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/csv/CsvSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CsvSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CsvSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CsvSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CsvSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/csv/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/csv/package-frame.html b/content/site/apidocs/org/apache/juneau/csv/package-frame.html
index 82270ff..6f70e2a 100644
--- a/content/site/apidocs/org/apache/juneau/csv/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/csv/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.csv (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.csv (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/csv/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/csv/package-summary.html b/content/site/apidocs/org/apache/juneau/csv/package-summary.html
index 9d7e8b1..3a52043 100644
--- a/content/site/apidocs/org/apache/juneau/csv/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/csv/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.csv (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.csv (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.csv (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.csv (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/csv/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/csv/package-tree.html b/content/site/apidocs/org/apache/juneau/csv/package-tree.html
index adb7785..5ac979f 100644
--- a/content/site/apidocs/org/apache/juneau/csv/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/csv/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.csv Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.csv Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.csv Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.csv Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/Link.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/Link.html b/content/site/apidocs/org/apache/juneau/dto/Link.html
index 449b2f9..b71db4a 100644
--- a/content/site/apidocs/org/apache/juneau/dto/Link.html
+++ b/content/site/apidocs/org/apache/juneau/dto/Link.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Link (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Link (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Link (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Link (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html b/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html
index 18e9645..b802dcd 100644
--- a/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html
+++ b/content/site/apidocs/org/apache/juneau/dto/ResultSetList.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResultSetList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResultSetList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResultSetList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResultSetList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html b/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html
index 00b8e9f..59a1a45 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/AtomBuilder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AtomBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>AtomBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AtomBuilder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="AtomBuilder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Category.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Category.html b/content/site/apidocs/org/apache/juneau/dto/atom/Category.html
index d95cb60..67a601b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Category.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Category.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Category (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Category (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Category (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Category (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Common.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Common.html b/content/site/apidocs/org/apache/juneau/dto/atom/Common.html
index 5ba5731..5108517 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Common.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Common.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Common (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Common (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Common (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Common (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/CommonEntry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/CommonEntry.html b/content/site/apidocs/org/apache/juneau/dto/atom/CommonEntry.html
index 3eddd1a..0baaed2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/CommonEntry.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/CommonEntry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CommonEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CommonEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CommonEntry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CommonEntry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Content.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Content.html b/content/site/apidocs/org/apache/juneau/dto/atom/Content.html
index bf225b5..088bab4 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Content.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Content.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Content (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Content (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Content (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Content (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Entry.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Entry.html b/content/site/apidocs/org/apache/juneau/dto/atom/Entry.html
index afaf569..6ab64cb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Entry.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Entry.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Entry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Entry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Entry (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Entry (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Feed.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Feed.html b/content/site/apidocs/org/apache/juneau/dto/atom/Feed.html
index d895494..709347c 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Feed.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Feed.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Feed (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Feed (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Feed (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Feed (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Generator.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Generator.html b/content/site/apidocs/org/apache/juneau/dto/atom/Generator.html
index 1a896a3..5dd68c3 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Generator.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Generator.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Generator (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Generator (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Generator (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Generator (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Icon.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Icon.html b/content/site/apidocs/org/apache/juneau/dto/atom/Icon.html
index df42e08..3e05434 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Icon.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Icon.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Icon (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Icon (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Icon (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Icon (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Id.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Id.html b/content/site/apidocs/org/apache/juneau/dto/atom/Id.html
index 8bc7d02..a5494ed 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Id.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Id.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Id (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Id (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Id (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Id (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Link.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Link.html b/content/site/apidocs/org/apache/juneau/dto/atom/Link.html
index 41924e7..41445fb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Link.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Link.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Link (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Link (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Link (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Link (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Logo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Logo.html b/content/site/apidocs/org/apache/juneau/dto/atom/Logo.html
index 30af108..af66cc8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Logo.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Logo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Logo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Logo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Logo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Logo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Person.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Person.html b/content/site/apidocs/org/apache/juneau/dto/atom/Person.html
index 06dd08f..3367658 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Person.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Person.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Person (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Person (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Person (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Person (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Source.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Source.html b/content/site/apidocs/org/apache/juneau/dto/atom/Source.html
index 6fa2029..ea0b1d8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Source.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Source.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Source (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Source (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Source (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Source (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/Text.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/Text.html b/content/site/apidocs/org/apache/juneau/dto/atom/Text.html
index 9719c9f..141ec8a 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/Text.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/Text.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Text (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Text (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Text (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Text (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/package-frame.html b/content/site/apidocs/org/apache/juneau/dto/atom/package-frame.html
index c04ff48..a8d87d0 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html
index 7e7d7c7..3faab09 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.atom (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/atom/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/atom/package-tree.html b/content/site/apidocs/org/apache/juneau/dto/atom/package-tree.html
index 923b69e..1bb6309 100644
--- a/content/site/apidocs/org/apache/juneau/dto/atom/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/dto/atom/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.atom Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.atom Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.atom Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.atom Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/cognos/Column.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/Column.html b/content/site/apidocs/org/apache/juneau/dto/cognos/Column.html
index 1a68101..1c3b875 100644
--- a/content/site/apidocs/org/apache/juneau/dto/cognos/Column.html
+++ b/content/site/apidocs/org/apache/juneau/dto/cognos/Column.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Column (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Column (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Column (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Column (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.Row.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.Row.html b/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.Row.html
index e282a20..cb506de 100644
--- a/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.Row.html
+++ b/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.Row.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DataSet.Row (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DataSet.Row (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DataSet.Row (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DataSet.Row (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.html b/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.html
index 6821cda..28b59c2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.html
+++ b/content/site/apidocs/org/apache/juneau/dto/cognos/DataSet.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DataSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DataSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DataSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DataSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/cognos/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/package-frame.html b/content/site/apidocs/org/apache/juneau/dto/cognos/package-frame.html
index a04c2d2..4b16772 100644
--- a/content/site/apidocs/org/apache/juneau/dto/cognos/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/dto/cognos/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html
index b3cd5ad..37aae95 100644
--- a/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/cognos/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.cognos (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/cognos/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/cognos/package-tree.html b/content/site/apidocs/org/apache/juneau/dto/cognos/package-tree.html
index b7d2d3c..331f980 100644
--- a/content/site/apidocs/org/apache/juneau/dto/cognos/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/dto/cognos/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.cognos Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.cognos Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.cognos Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.cognos Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/A.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/A.html b/content/site/apidocs/org/apache/juneau/dto/html5/A.html
index 75a9bc4..2a695a9 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/A.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/A.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>A (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>A (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="A (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="A (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Abbr.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Abbr.html b/content/site/apidocs/org/apache/juneau/dto/html5/Abbr.html
index 92d3303..37badb2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Abbr.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Abbr.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Abbr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Abbr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Abbr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Abbr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Address.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Address.html b/content/site/apidocs/org/apache/juneau/dto/html5/Address.html
index 57566f0..9a9e4d6 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Address.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Address.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Address (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Address (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Address (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Address (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Area.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Area.html b/content/site/apidocs/org/apache/juneau/dto/html5/Area.html
index 3b369bb..24b07ab 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Area.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Area.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Area (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Area (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Area (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Area (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Article.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Article.html b/content/site/apidocs/org/apache/juneau/dto/html5/Article.html
index 78caafc..ffb8c71 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Article.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Article.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Article (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Article (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Article (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Article (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Aside.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Aside.html b/content/site/apidocs/org/apache/juneau/dto/html5/Aside.html
index 5b13e7f..702adcd 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Aside.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Aside.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Aside (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Aside (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Aside (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Aside (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Audio.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Audio.html b/content/site/apidocs/org/apache/juneau/dto/html5/Audio.html
index 19eef46..849d57e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Audio.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Audio.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Audio (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Audio (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Audio (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Audio (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/B.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/B.html b/content/site/apidocs/org/apache/juneau/dto/html5/B.html
index a965075..73ab225 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/B.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/B.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>B (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>B (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="B (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="B (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Base.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Base.html b/content/site/apidocs/org/apache/juneau/dto/html5/Base.html
index 28a1106..cc19b4c 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Base.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Base.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Base (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Base (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Base (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Base (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Bdi.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Bdi.html b/content/site/apidocs/org/apache/juneau/dto/html5/Bdi.html
index 176765a..d057567 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Bdi.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Bdi.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Bdi (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Bdi (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Bdi (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Bdi (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Bdo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Bdo.html b/content/site/apidocs/org/apache/juneau/dto/html5/Bdo.html
index 43da394..ba04011 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Bdo.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Bdo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Bdo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Bdo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Bdo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Bdo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Blockquote.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Blockquote.html b/content/site/apidocs/org/apache/juneau/dto/html5/Blockquote.html
index 6f178b0..7773c3e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Blockquote.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Blockquote.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Blockquote (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Blockquote (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Blockquote (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Blockquote (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Body.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Body.html b/content/site/apidocs/org/apache/juneau/dto/html5/Body.html
index ee7337e..177d24d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Body.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Body.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Body (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Body (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Body (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Body (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Br.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Br.html b/content/site/apidocs/org/apache/juneau/dto/html5/Br.html
index a4d2846..8413e92 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Br.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Br.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Br (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Br (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Br (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Br (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Button.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Button.html b/content/site/apidocs/org/apache/juneau/dto/html5/Button.html
index 487c0cd..697758d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Button.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Button.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Button (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Button (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Button (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Button (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Canvas.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Canvas.html b/content/site/apidocs/org/apache/juneau/dto/html5/Canvas.html
index f272736..7f4bd7e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Canvas.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Canvas.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Canvas (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Canvas (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Canvas (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Canvas (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Caption.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Caption.html b/content/site/apidocs/org/apache/juneau/dto/html5/Caption.html
index c2526f5..7893a1d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Caption.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Caption.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Caption (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Caption (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Caption (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Caption (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Cite.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Cite.html b/content/site/apidocs/org/apache/juneau/dto/html5/Cite.html
index 8a0a70b..30d924b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Cite.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Cite.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Cite (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Cite (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Cite (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Cite (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Code.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Code.html b/content/site/apidocs/org/apache/juneau/dto/html5/Code.html
index e3fbd31..29b8a12 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Code.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Code.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Code (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Code (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Code (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Code (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Col.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Col.html b/content/site/apidocs/org/apache/juneau/dto/html5/Col.html
index 7aa34ef..b379403 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Col.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Col.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Col (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Col (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Col (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Col (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Colgroup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Colgroup.html b/content/site/apidocs/org/apache/juneau/dto/html5/Colgroup.html
index abe7601..e4821e4 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Colgroup.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Colgroup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Colgroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Colgroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Colgroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Colgroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Data.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Data.html b/content/site/apidocs/org/apache/juneau/dto/html5/Data.html
index ae41e39..0361adf 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Data.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Data.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Data (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Data (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Data (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Data (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Datalist.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Datalist.html b/content/site/apidocs/org/apache/juneau/dto/html5/Datalist.html
index de56931..25656fb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Datalist.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Datalist.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Datalist (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Datalist (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Datalist (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Datalist (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Dd.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Dd.html b/content/site/apidocs/org/apache/juneau/dto/html5/Dd.html
index 41cc0a1..df1fd0e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Dd.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Dd.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Dd (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Dd (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Dd (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Dd (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Del.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Del.html b/content/site/apidocs/org/apache/juneau/dto/html5/Del.html
index 5130326..9b3b84c 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Del.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Del.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Del (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Del (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Del (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Del (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Dfn.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Dfn.html b/content/site/apidocs/org/apache/juneau/dto/html5/Dfn.html
index d6d7c83..e15701a 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Dfn.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Dfn.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Dfn (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Dfn (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Dfn (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Dfn (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Div.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Div.html b/content/site/apidocs/org/apache/juneau/dto/html5/Div.html
index 117d66c..e59990e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Div.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Div.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Div (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Div (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Div (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Div (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Dl.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Dl.html b/content/site/apidocs/org/apache/juneau/dto/html5/Dl.html
index 0646943..ceb2a36 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Dl.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Dl.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Dl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Dl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Dl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Dl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Dt.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Dt.html b/content/site/apidocs/org/apache/juneau/dto/html5/Dt.html
index ecd1b93..c55d975 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Dt.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Dt.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Dt (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Dt (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Dt (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Dt (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Em.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Em.html b/content/site/apidocs/org/apache/juneau/dto/html5/Em.html
index 49f24c9..d4d21c7 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Em.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Em.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Em (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Em (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Em (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Em (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Embed.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Embed.html b/content/site/apidocs/org/apache/juneau/dto/html5/Embed.html
index c2311fa..b831098 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Embed.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Embed.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Embed (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Embed (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Embed (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Embed (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Fieldset.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Fieldset.html b/content/site/apidocs/org/apache/juneau/dto/html5/Fieldset.html
index 66cf762..0e5ddc2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Fieldset.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Fieldset.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Fieldset (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Fieldset (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Fieldset (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Fieldset (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Figcaption.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Figcaption.html b/content/site/apidocs/org/apache/juneau/dto/html5/Figcaption.html
index 31eaf28..9fff7ab 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Figcaption.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Figcaption.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Figcaption (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Figcaption (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Figcaption (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Figcaption (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Figure.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Figure.html b/content/site/apidocs/org/apache/juneau/dto/html5/Figure.html
index bea7aed..0dcc8ad 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Figure.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Figure.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Figure (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Figure (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Figure (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Figure (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Footer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Footer.html b/content/site/apidocs/org/apache/juneau/dto/html5/Footer.html
index 749fbb8..1a4551e 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Footer.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Footer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Footer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Footer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Footer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Footer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Form.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Form.html b/content/site/apidocs/org/apache/juneau/dto/html5/Form.html
index ee36f76..001bc03 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Form.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Form.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Form (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Form (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Form (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Form (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/H1.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/H1.html b/content/site/apidocs/org/apache/juneau/dto/html5/H1.html
index e70c351..70f0d66 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/H1.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/H1.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>H1 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>H1 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="H1 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="H1 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[12/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Thead.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Thead.html b/content/site/apidocs/org/apache/juneau/dto/html5/Thead.html
index e17c855..b42abb1 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Thead.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Thead.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Thead (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Thead (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Thead (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Thead (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Time.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Time.html b/content/site/apidocs/org/apache/juneau/dto/html5/Time.html
index 6f1f5b5..280b706 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Time.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Time.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Time (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Time (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Time (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Time (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Title.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Title.html b/content/site/apidocs/org/apache/juneau/dto/html5/Title.html
index 3e40177..6a433eb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Title.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Title.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Title (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Title (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Title (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Title (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Tr.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Tr.html b/content/site/apidocs/org/apache/juneau/dto/html5/Tr.html
index 7cf436c..acb04da 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Tr.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Tr.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Tr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Tr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Tr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Tr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Track.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Track.html b/content/site/apidocs/org/apache/juneau/dto/html5/Track.html
index 976e9c1..9fc57f8 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Track.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Track.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Track (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Track (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Track (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Track (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/U.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/U.html b/content/site/apidocs/org/apache/juneau/dto/html5/U.html
index d009455..2bcdb07 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/U.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/U.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>U (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>U (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="U (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="U (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Ul.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Ul.html b/content/site/apidocs/org/apache/juneau/dto/html5/Ul.html
index c975e8a..4852c3f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Ul.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Ul.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Ul (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Ul (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Ul (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Ul (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Var.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Var.html b/content/site/apidocs/org/apache/juneau/dto/html5/Var.html
index 91670dc..da6ec85 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Var.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Var.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Var (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Var (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Var (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Var (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Video.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Video.html b/content/site/apidocs/org/apache/juneau/dto/html5/Video.html
index 429ec5d..7b22ba4 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Video.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Video.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Video (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Video (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Video (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Video (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/Wbr.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/Wbr.html b/content/site/apidocs/org/apache/juneau/dto/html5/Wbr.html
index 2765ab1..f8e497a 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/Wbr.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/Wbr.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Wbr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Wbr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Wbr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Wbr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/package-frame.html b/content/site/apidocs/org/apache/juneau/dto/html5/package-frame.html
index c47c18e..ca8245b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.html5 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.html5 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/html5/package-summary.html
index 7eef7fb..e4b3a01 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.html5 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.html5 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.html5 (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.html5 (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {
@@ -836,7 +836,7 @@
          that allow you to easily construct DTO instances in a minimal amount of code. 
       </p>
       <p>
-         The following examples show how to create HTML tables.
+         The following examples show how to create HTML fragments:
       </p>
       <table class='styled' style='width:auto'>
          <tr>
@@ -914,8 +914,50 @@
    &lt;/table&gt;
             </xt></td>
          </tr>
+         <tr>
+            <td class='code'>
+   <jk>import static</jk> org.apache.juneau.dto.html5.HtmlBuilder.*;
+      
+   Object mydiv =    
+      <jsm>div</jsm>().align(<js>"center"</js>).onmouseover(<js>"alert(\"boo!\");"</js>)
+      .children(
+         <jsm>p</jsm>(<js>"Juneau supports "</js>, <jsm>b</jsm>(<jsm>i</jsm>(<js>"mixed"</js>)), <js>" content!"</js>)
+      );
+
+   String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(mydiv);
+            </td>
+            <td class='code'><xt>
+   &lt;div <xa>align</xa>=<xs>'center'</xs> <xa>onmouseover</xa>=<xs>'alert("boo!");'</xs>&gt;
+      &lt;p&gt;<xv>Juneau supports </xv>&lt;b&gt;&lt;i&gt;<xv>mixed</xv>&lt;/i&gt;&lt;/b&gt; <xv>content!</xv>&lt;/p&gt;
+   &lt;/table&gt;
+            </xt></td>
+         </tr>
+         <tr>
+            <td class='code'>
+   <jk>import static</jk> org.apache.juneau.dto.html5.HtmlBuilder.*;
+      
+   Object myform =
+      <jsm>form</jsm>().action(<js>"/submit"</js>).method(<js>"POST"</js>)
+      .children(
+         <js>"Position (1-10000): "</js>, <jsm>input</jsm>(<js>"number"</js>).name(<js>"pos"</js>).value(1), <jsm>br</jsm>(),
+         <js>"Limit (1-10000): "</js>, <jsm>input</jsm>(<js>"number"</js>).name(<js>"limit"</js>).value(100), <jsm>br</jsm>(),
+         <jsm>button</jsm>(<js>"submit"</js>, <js>"Submit"</js>),
+         <jsm>button</jsm>(<js>"reset"</js>, <js>"Reset"</js>)
+      );    
+
+   String html = HtmlSerializer.<jsf>DEFAULT</jsf>.serialize(myform);
+            </td>
+            <td class='code'><xt>
+      &lt;form <xa>action</xa>=<xs>'/submit'</xs> <xa>method</xa>=<xs>'POST'</xs>&gt;
+         <xv>Position (1-10000):</xv> &lt;input <xa>name</xa>=<xs>'pos'</xs> <xa>type</xa>=<xs>'number'</xs> <xa>value</xa>=<xs>'1'</xs>&gt;&lt;br/&gt;
+         <xv>Limit (1-10000):</xv> &lt;input <xa>name</xa>=<xs>'pos'</xs> <xa>type</xa>=<xs>'number'</xs> <xa>value</xa>=<xs>'100'</xs>&gt;&lt;br/&gt;
+         &lt;button <xa>type</xa>=<xs>'submit'</xs>&gt;<xv>Submit</xv>&lt;/button&gt;
+         &lt;button <xa>type</xa>=<xs>'reset'</xs>&gt;<xv>Reset</xv>&lt;/button&gt;        
+      &lt;/form&gt;
+            </xt></td>
+         </tr>
       </table>
-</div>      
+   </div>      
 
    <!-- ======================================================================================================== -->
    <a id="Parse"></a>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/html5/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/html5/package-tree.html b/content/site/apidocs/org/apache/juneau/dto/html5/package-tree.html
index 7d7b1de..fddd6d2 100644
--- a/content/site/apidocs/org/apache/juneau/dto/html5/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/dto/html5/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.html5 Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.html5 Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.html5 Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.html5 Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonType.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonType.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonType.html
index 5ba62ea..504b0e4 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonType.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonType.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonType (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonType (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonType (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonType (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonTypeArray.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonTypeArray.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonTypeArray.html
index 82a29bf..5d7b7c3 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonTypeArray.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/JsonTypeArray.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JsonTypeArray (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JsonTypeArray (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JsonTypeArray (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JsonTypeArray (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaArraySwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaArraySwap.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaArraySwap.html
index e098942..fff4b62 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaArraySwap.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaArraySwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Schema.BooleanOrSchemaArraySwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Schema.BooleanOrSchemaArraySwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Schema.BooleanOrSchemaArraySwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Schema.BooleanOrSchemaArraySwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaSwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaSwap.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaSwap.html
index 9c4453d..a26b652 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaSwap.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.BooleanOrSchemaSwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Schema.BooleanOrSchemaSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Schema.BooleanOrSchemaSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Schema.BooleanOrSchemaSwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Schema.BooleanOrSchemaSwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.JsonTypeOrJsonTypeArraySwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.JsonTypeOrJsonTypeArraySwap.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.JsonTypeOrJsonTypeArraySwap.html
index c2dfb7b..e9b6c47 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.JsonTypeOrJsonTypeArraySwap.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.JsonTypeOrJsonTypeArraySwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Schema.JsonTypeOrJsonTypeArraySwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Schema.JsonTypeOrJsonTypeArraySwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Schema.JsonTypeOrJsonTypeArraySwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Schema.JsonTypeOrJsonTypeArraySwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.SchemaOrSchemaArraySwap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.SchemaOrSchemaArraySwap.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.SchemaOrSchemaArraySwap.html
index 1370bfe..080ff98 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.SchemaOrSchemaArraySwap.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.SchemaOrSchemaArraySwap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Schema.SchemaOrSchemaArraySwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Schema.SchemaOrSchemaArraySwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Schema.SchemaOrSchemaArraySwap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Schema.SchemaOrSchemaArraySwap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.html
index 410cf3f..80e1613 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/Schema.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Schema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Schema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Schema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Schema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaArray.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaArray.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaArray.html
index b27421d..2c0a581 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaArray.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaArray.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SchemaArray (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SchemaArray (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchemaArray (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SchemaArray (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaMap.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaMap.html
index 0bbdd8e..b4780c0 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaMap.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SchemaMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SchemaMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchemaMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SchemaMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaProperty.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaProperty.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaProperty.html
index 3a675fc..09ce8d0 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaProperty.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaProperty.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SchemaProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SchemaProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchemaProperty (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SchemaProperty (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaPropertySimpleArray.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaPropertySimpleArray.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaPropertySimpleArray.html
index b972f3d..5987d20 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaPropertySimpleArray.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaPropertySimpleArray.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SchemaPropertySimpleArray (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SchemaPropertySimpleArray (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchemaPropertySimpleArray (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SchemaPropertySimpleArray (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaRef.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaRef.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaRef.html
index c667c53..6048dad 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaRef.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/SchemaRef.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SchemaRef (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SchemaRef (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchemaRef (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SchemaRef (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-frame.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-frame.html
index 82f2db1..e83cf96 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.jsonschema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.jsonschema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-summary.html
index e3089ba..463b85b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.jsonschema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.jsonschema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.jsonschema (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.jsonschema (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-tree.html b/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-tree.html
index e62da19..7a87f0d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/dto/jsonschema/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.jsonschema Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.jsonschema Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.jsonschema Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.jsonschema Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/package-frame.html b/content/site/apidocs/org/apache/juneau/dto/package-frame.html
index 7ba284d..5dc88f5 100644
--- a/content/site/apidocs/org/apache/juneau/dto/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/dto/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/package-summary.html
index d9dcb63..e20f5f3 100644
--- a/content/site/apidocs/org/apache/juneau/dto/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/package-tree.html b/content/site/apidocs/org/apache/juneau/dto/package-tree.html
index f664297..acfd820 100644
--- a/content/site/apidocs/org/apache/juneau/dto/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/dto/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Contact.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Contact.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Contact.html
index 4766e69..214a60b 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Contact.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Contact.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Contact (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Contact (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Contact (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Contact (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/ExternalDocumentation.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/ExternalDocumentation.html b/content/site/apidocs/org/apache/juneau/dto/swagger/ExternalDocumentation.html
index 12cf746..c2ae1ec 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/ExternalDocumentation.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/ExternalDocumentation.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ExternalDocumentation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ExternalDocumentation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ExternalDocumentation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ExternalDocumentation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/HeaderInfo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/HeaderInfo.html b/content/site/apidocs/org/apache/juneau/dto/swagger/HeaderInfo.html
index 51f1e18..61b4709 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/HeaderInfo.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/HeaderInfo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HeaderInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HeaderInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HeaderInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HeaderInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Info.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Info.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Info.html
index 73db9af..5629a8f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Info.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Info.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Info (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Info (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Info (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Info (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Items.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Items.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Items.html
index 7b086c7..610029f 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Items.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Items.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Items (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Items (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Items (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Items (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/License.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/License.html b/content/site/apidocs/org/apache/juneau/dto/swagger/License.html
index 294f903..eb5cfc0 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/License.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/License.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>License (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>License (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="License (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="License (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Operation.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Operation.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Operation.html
index abdeed4..28314bb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Operation.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Operation.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Operation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Operation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Operation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Operation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/ParameterInfo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/ParameterInfo.html b/content/site/apidocs/org/apache/juneau/dto/swagger/ParameterInfo.html
index 1033d16..712891d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/ParameterInfo.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/ParameterInfo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ParameterInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ParameterInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ParameterInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ParameterInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/ResponseInfo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/ResponseInfo.html b/content/site/apidocs/org/apache/juneau/dto/swagger/ResponseInfo.html
index 4edcb9a..7c91c13 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/ResponseInfo.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/ResponseInfo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ResponseInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ResponseInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ResponseInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ResponseInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/SchemaInfo.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/SchemaInfo.html b/content/site/apidocs/org/apache/juneau/dto/swagger/SchemaInfo.html
index 2e5be05..26ea034 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/SchemaInfo.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/SchemaInfo.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SchemaInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SchemaInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SchemaInfo (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SchemaInfo (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/SecurityScheme.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/SecurityScheme.html b/content/site/apidocs/org/apache/juneau/dto/swagger/SecurityScheme.html
index a303e15..c95d440 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/SecurityScheme.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/SecurityScheme.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SecurityScheme (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SecurityScheme (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SecurityScheme (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SecurityScheme (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Swagger.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Swagger.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Swagger.html
index 845a5a8..ec354ae 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Swagger.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Swagger.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Swagger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Swagger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Swagger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Swagger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Tag.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Tag.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Tag.html
index a4d4ec4..1b3a565 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Tag.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Tag.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Tag (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Tag (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Tag (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Tag (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/Xml.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/Xml.html b/content/site/apidocs/org/apache/juneau/dto/swagger/Xml.html
index 850b436..587c448 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/Xml.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/Xml.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Xml (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Xml (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/package-frame.html b/content/site/apidocs/org/apache/juneau/dto/swagger/package-frame.html
index 7f43dc0..fa0f64d 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.swagger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.swagger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/package-summary.html b/content/site/apidocs/org/apache/juneau/dto/swagger/package-summary.html
index 17449d4..ec81acb 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.swagger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.swagger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.swagger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.swagger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/dto/swagger/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/dto/swagger/package-tree.html b/content/site/apidocs/org/apache/juneau/dto/swagger/package-tree.html
index d950c62..11d190a 100644
--- a/content/site/apidocs/org/apache/juneau/dto/swagger/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/dto/swagger/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.dto.swagger Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.dto.swagger Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.dto.swagger Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.dto.swagger Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/Encoder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/Encoder.html b/content/site/apidocs/org/apache/juneau/encoders/Encoder.html
index 4f0f84d..0247566 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/Encoder.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/Encoder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Encoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Encoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Encoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Encoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/EncoderGroup.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/EncoderGroup.html b/content/site/apidocs/org/apache/juneau/encoders/EncoderGroup.html
index add65fe..515455a 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/EncoderGroup.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/EncoderGroup.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>EncoderGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>EncoderGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="EncoderGroup (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="EncoderGroup (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/EncoderMatch.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/EncoderMatch.html b/content/site/apidocs/org/apache/juneau/encoders/EncoderMatch.html
index 11fb61b..855154b 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/EncoderMatch.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/EncoderMatch.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>EncoderMatch (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>EncoderMatch (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="EncoderMatch (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="EncoderMatch (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/GzipEncoder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/GzipEncoder.html b/content/site/apidocs/org/apache/juneau/encoders/GzipEncoder.html
index 68cc192..d2b4d43 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/GzipEncoder.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/GzipEncoder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>GzipEncoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>GzipEncoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GzipEncoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="GzipEncoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/IdentityEncoder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/IdentityEncoder.html b/content/site/apidocs/org/apache/juneau/encoders/IdentityEncoder.html
index 28df3d0..e80c8b5 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/IdentityEncoder.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/IdentityEncoder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IdentityEncoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>IdentityEncoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IdentityEncoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="IdentityEncoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/package-frame.html b/content/site/apidocs/org/apache/juneau/encoders/package-frame.html
index a949744..7a2c644 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.encoders (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.encoders (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/package-summary.html b/content/site/apidocs/org/apache/juneau/encoders/package-summary.html
index 401a8c1..e66b357 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.encoders (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.encoders (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.encoders (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.encoders (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/encoders/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/encoders/package-tree.html b/content/site/apidocs/org/apache/juneau/encoders/package-tree.html
index f68e608..94b3e62 100644
--- a/content/site/apidocs/org/apache/juneau/encoders/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/encoders/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.encoders Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.encoders Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.encoders Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.encoders Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlBeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlBeanPropertyMeta.html b/content/site/apidocs/org/apache/juneau/html/HtmlBeanPropertyMeta.html
index ff2fc0c..4e00bb1 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlBeanPropertyMeta.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlBeanPropertyMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlBeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlBeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlBeanPropertyMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlBeanPropertyMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlClassMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlClassMeta.html b/content/site/apidocs/org/apache/juneau/html/HtmlClassMeta.html
index 9b6b835..d98c678 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlClassMeta.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlClassMeta.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlClassMeta (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlClassMeta (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializer.html b/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializer.html
index 2bea171..deb293b 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerContext.html b/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerContext.html
index be528d8..7a78d31 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlDocSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlDocSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlDocSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlDocSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerSession.html b/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerSession.html
index 096ea5e..23c0077 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlDocSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlDocSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlDocSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlDocSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlDocSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlLink.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlLink.html b/content/site/apidocs/org/apache/juneau/html/HtmlLink.html
index 1ce80b1..9e1cdb6 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlLink.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlLink.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlLink (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlLink (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlLink (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlLink (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlParser.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlParser.html b/content/site/apidocs/org/apache/juneau/html/HtmlParser.html
index 4cf0ece..730c2a7 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlParser.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlParser.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlParser (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlParser (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[11/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlParserContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlParserContext.html b/content/site/apidocs/org/apache/juneau/html/HtmlParserContext.html
index 68e1f53..a522ea2 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlParserContext.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlParserContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlParserContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlParserContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlParserSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlParserSession.html b/content/site/apidocs/org/apache/juneau/html/HtmlParserSession.html
index 2e4c094..4477bb5 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlParserSession.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlParserSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlParserSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlParserSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlSchemaDocSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlSchemaDocSerializer.html b/content/site/apidocs/org/apache/juneau/html/HtmlSchemaDocSerializer.html
index 5e63f05..fcf903d 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlSchemaDocSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlSchemaDocSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlSchemaDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlSchemaDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlSchemaDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlSchemaDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.Sq.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.Sq.html b/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.Sq.html
index de20041..97e20be 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.Sq.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.Sq.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlSerializer.Sq (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlSerializer.Sq (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlSerializer.Sq (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlSerializer.Sq (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.SqReadable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.SqReadable.html b/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.SqReadable.html
index 631978a..35827fe 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.SqReadable.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.SqReadable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlSerializer.SqReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlSerializer.SqReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlSerializer.SqReadable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlSerializer.SqReadable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.html b/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.html
index f5032a1..673425e 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlSerializerContext.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlSerializerContext.html b/content/site/apidocs/org/apache/juneau/html/HtmlSerializerContext.html
index f7765a0..1f4c7c8 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlSerializerContext.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlSerializerContext.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlSerializerContext (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlSerializerContext (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlSerializerSession.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlSerializerSession.html b/content/site/apidocs/org/apache/juneau/html/HtmlSerializerSession.html
index fa39650..66b411d 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlSerializerSession.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlSerializerSession.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlSerializerSession (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlSerializerSession (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlStrippedDocSerializer.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlStrippedDocSerializer.html b/content/site/apidocs/org/apache/juneau/html/HtmlStrippedDocSerializer.html
index 863957b..05dc6ad 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlStrippedDocSerializer.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlStrippedDocSerializer.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlStrippedDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlStrippedDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlStrippedDocSerializer (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlStrippedDocSerializer (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/HtmlWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/HtmlWriter.html b/content/site/apidocs/org/apache/juneau/html/HtmlWriter.html
index 8d72655..c44688e 100644
--- a/content/site/apidocs/org/apache/juneau/html/HtmlWriter.html
+++ b/content/site/apidocs/org/apache/juneau/html/HtmlWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HtmlWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HtmlWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HtmlWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HtmlWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/SimpleHtmlWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/SimpleHtmlWriter.html b/content/site/apidocs/org/apache/juneau/html/SimpleHtmlWriter.html
index 610e944..48a4fff 100644
--- a/content/site/apidocs/org/apache/juneau/html/SimpleHtmlWriter.html
+++ b/content/site/apidocs/org/apache/juneau/html/SimpleHtmlWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SimpleHtmlWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SimpleHtmlWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SimpleHtmlWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SimpleHtmlWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/annotation/Html.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/annotation/Html.html b/content/site/apidocs/org/apache/juneau/html/annotation/Html.html
index a2b38d8..9a91a89 100644
--- a/content/site/apidocs/org/apache/juneau/html/annotation/Html.html
+++ b/content/site/apidocs/org/apache/juneau/html/annotation/Html.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/annotation/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/annotation/package-frame.html b/content/site/apidocs/org/apache/juneau/html/annotation/package-frame.html
index dd5459f..f3e378e 100644
--- a/content/site/apidocs/org/apache/juneau/html/annotation/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/html/annotation/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.html.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.html.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/annotation/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/annotation/package-summary.html b/content/site/apidocs/org/apache/juneau/html/annotation/package-summary.html
index 230e05a..5b76124 100644
--- a/content/site/apidocs/org/apache/juneau/html/annotation/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/html/annotation/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.html.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.html.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.html.annotation (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.html.annotation (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/annotation/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/annotation/package-tree.html b/content/site/apidocs/org/apache/juneau/html/annotation/package-tree.html
index f0c7938..1d81e15 100644
--- a/content/site/apidocs/org/apache/juneau/html/annotation/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/html/annotation/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.html.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.html.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.html.annotation Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.html.annotation Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/package-frame.html b/content/site/apidocs/org/apache/juneau/html/package-frame.html
index 39d7f4a..8c9c051 100644
--- a/content/site/apidocs/org/apache/juneau/html/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/html/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/package-summary.html b/content/site/apidocs/org/apache/juneau/html/package-summary.html
index 3e2b973..2b1a2f5 100644
--- a/content/site/apidocs/org/apache/juneau/html/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/html/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.html (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.html (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/html/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/html/package-tree.html b/content/site/apidocs/org/apache/juneau/html/package-tree.html
index a47bc9a..6ba9e68 100644
--- a/content/site/apidocs/org/apache/juneau/html/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/html/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.html Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.html Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.html Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.html Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigFile.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigFile.html b/content/site/apidocs/org/apache/juneau/ini/ConfigFile.html
index 3454884..1055b5d 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigFile.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigFile.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigFile (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigFile (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigFile (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigFile (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigFileFormat.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigFileFormat.html b/content/site/apidocs/org/apache/juneau/ini/ConfigFileFormat.html
index afdd8c5..19f4b64 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigFileFormat.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigFileFormat.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigFileFormat (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigFileFormat (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigFileFormat (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigFileFormat (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigFileImpl.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigFileImpl.html b/content/site/apidocs/org/apache/juneau/ini/ConfigFileImpl.html
index 2942eaa..1a609c7 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigFileImpl.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigFileImpl.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigFileImpl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigFileImpl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigFileImpl (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigFileImpl (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigFileListener.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigFileListener.html b/content/site/apidocs/org/apache/juneau/ini/ConfigFileListener.html
index b5a85b1..9a0ff8b 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigFileListener.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigFileListener.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigFileListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigFileListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigFileListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigFileListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigFileWrapped.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigFileWrapped.html b/content/site/apidocs/org/apache/juneau/ini/ConfigFileWrapped.html
index 1093be1..72a717c 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigFileWrapped.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigFileWrapped.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigFileWrapped (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigFileWrapped (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigFileWrapped (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigFileWrapped (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigMgr.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigMgr.html b/content/site/apidocs/org/apache/juneau/ini/ConfigMgr.html
index 9ee4985..bd01157 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigMgr.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigMgr.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigMgr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigMgr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigMgr (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigMgr (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/ConfigUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/ConfigUtils.html b/content/site/apidocs/org/apache/juneau/ini/ConfigUtils.html
index f9cbaa1..9ef7866 100644
--- a/content/site/apidocs/org/apache/juneau/ini/ConfigUtils.html
+++ b/content/site/apidocs/org/apache/juneau/ini/ConfigUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ConfigUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ConfigUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ConfigUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/Encoder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/Encoder.html b/content/site/apidocs/org/apache/juneau/ini/Encoder.html
index 4584f0f..b681b6c 100644
--- a/content/site/apidocs/org/apache/juneau/ini/Encoder.html
+++ b/content/site/apidocs/org/apache/juneau/ini/Encoder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Encoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Encoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Encoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Encoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/EntryListener.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/EntryListener.html b/content/site/apidocs/org/apache/juneau/ini/EntryListener.html
index 808ec38..4bb1391 100644
--- a/content/site/apidocs/org/apache/juneau/ini/EntryListener.html
+++ b/content/site/apidocs/org/apache/juneau/ini/EntryListener.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>EntryListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>EntryListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="EntryListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="EntryListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/Section.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/Section.html b/content/site/apidocs/org/apache/juneau/ini/Section.html
index ce7e84e..421cbfd 100644
--- a/content/site/apidocs/org/apache/juneau/ini/Section.html
+++ b/content/site/apidocs/org/apache/juneau/ini/Section.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Section (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Section (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Section (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Section (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/SectionListener.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/SectionListener.html b/content/site/apidocs/org/apache/juneau/ini/SectionListener.html
index 8ea4349..a4cef7d 100644
--- a/content/site/apidocs/org/apache/juneau/ini/SectionListener.html
+++ b/content/site/apidocs/org/apache/juneau/ini/SectionListener.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SectionListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SectionListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SectionListener (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SectionListener (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/XorEncoder.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/XorEncoder.html b/content/site/apidocs/org/apache/juneau/ini/XorEncoder.html
index 1ae469c..06d0c32 100644
--- a/content/site/apidocs/org/apache/juneau/ini/XorEncoder.html
+++ b/content/site/apidocs/org/apache/juneau/ini/XorEncoder.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>XorEncoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>XorEncoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XorEncoder (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="XorEncoder (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/package-frame.html b/content/site/apidocs/org/apache/juneau/ini/package-frame.html
index ff3692a..520f458 100644
--- a/content/site/apidocs/org/apache/juneau/ini/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/ini/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.ini (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.ini (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/package-summary.html b/content/site/apidocs/org/apache/juneau/ini/package-summary.html
index bd7d5f7..5dd8fea 100644
--- a/content/site/apidocs/org/apache/juneau/ini/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/ini/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.ini (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.ini (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.ini (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.ini (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/ini/package-tree.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/ini/package-tree.html b/content/site/apidocs/org/apache/juneau/ini/package-tree.html
index f0044d5..02ee142 100644
--- a/content/site/apidocs/org/apache/juneau/ini/package-tree.html
+++ b/content/site/apidocs/org/apache/juneau/ini/package-tree.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.ini Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.ini Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.ini Class Hierarchy (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.ini Class Hierarchy (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ArrayUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ArrayUtils.html b/content/site/apidocs/org/apache/juneau/internal/ArrayUtils.html
index 78a9ae8..7e8051c 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ArrayUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ArrayUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ArrayUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ArrayUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ArrayUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ArrayUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/AsciiSet.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/AsciiSet.html b/content/site/apidocs/org/apache/juneau/internal/AsciiSet.html
index 2ac220b..cf9e3ff 100644
--- a/content/site/apidocs/org/apache/juneau/internal/AsciiSet.html
+++ b/content/site/apidocs/org/apache/juneau/internal/AsciiSet.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>AsciiSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>AsciiSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AsciiSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="AsciiSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ByteArrayCache.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ByteArrayCache.html b/content/site/apidocs/org/apache/juneau/internal/ByteArrayCache.html
index 91453f5..1076810 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ByteArrayCache.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ByteArrayCache.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ByteArrayCache (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ByteArrayCache (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ByteArrayCache (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ByteArrayCache (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ByteArrayInOutStream.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ByteArrayInOutStream.html b/content/site/apidocs/org/apache/juneau/internal/ByteArrayInOutStream.html
index 12a6024..6a3d34f 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ByteArrayInOutStream.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ByteArrayInOutStream.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ByteArrayInOutStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ByteArrayInOutStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ByteArrayInOutStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ByteArrayInOutStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/CharSequenceReader.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/CharSequenceReader.html b/content/site/apidocs/org/apache/juneau/internal/CharSequenceReader.html
index 0c76602..b7acf26 100644
--- a/content/site/apidocs/org/apache/juneau/internal/CharSequenceReader.html
+++ b/content/site/apidocs/org/apache/juneau/internal/CharSequenceReader.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CharSequenceReader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CharSequenceReader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CharSequenceReader (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CharSequenceReader (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ClassUtils.ClassComparator.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ClassUtils.ClassComparator.html b/content/site/apidocs/org/apache/juneau/internal/ClassUtils.ClassComparator.html
index 78e7c3f..aed2a9d 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ClassUtils.ClassComparator.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ClassUtils.ClassComparator.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ClassUtils.ClassComparator (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ClassUtils.ClassComparator (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClassUtils.ClassComparator (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ClassUtils.ClassComparator (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ClassUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ClassUtils.html b/content/site/apidocs/org/apache/juneau/internal/ClassUtils.html
index 607922e..e61cec9 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ClassUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ClassUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ClassUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ClassUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClassUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ClassUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/CollectionUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/CollectionUtils.html b/content/site/apidocs/org/apache/juneau/internal/CollectionUtils.html
index bd32275..6b9586f 100644
--- a/content/site/apidocs/org/apache/juneau/internal/CollectionUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/CollectionUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>CollectionUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>CollectionUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="CollectionUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="CollectionUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html b/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
index 46ec003..34ff6f6 100644
--- a/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/DelegateBeanMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DelegateBeanMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DelegateBeanMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DelegateBeanMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DelegateBeanMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/DelegateList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/DelegateList.html b/content/site/apidocs/org/apache/juneau/internal/DelegateList.html
index 2e252bc..78aebcd 100644
--- a/content/site/apidocs/org/apache/juneau/internal/DelegateList.html
+++ b/content/site/apidocs/org/apache/juneau/internal/DelegateList.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DelegateList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DelegateList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DelegateList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DelegateList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html b/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
index 8ce0297..8faea1e 100644
--- a/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/DelegateMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>DelegateMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>DelegateMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DelegateMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="DelegateMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/FileUtils.html b/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
index d7152ce..f653b92 100644
--- a/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/FileUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>FileUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>FileUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="FileUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="FileUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/FilteredMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/FilteredMap.html b/content/site/apidocs/org/apache/juneau/internal/FilteredMap.html
index ed262b5..898fbdf 100644
--- a/content/site/apidocs/org/apache/juneau/internal/FilteredMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/FilteredMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>FilteredMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>FilteredMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="FilteredMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="FilteredMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/HashCode.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/HashCode.html b/content/site/apidocs/org/apache/juneau/internal/HashCode.html
index 5e8abef..a5dced4 100644
--- a/content/site/apidocs/org/apache/juneau/internal/HashCode.html
+++ b/content/site/apidocs/org/apache/juneau/internal/HashCode.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>HashCode (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>HashCode (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="HashCode (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="HashCode (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/IOUtils.html b/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
index 55b15a0..7038acf 100644
--- a/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/IOUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IOUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>IOUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IOUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="IOUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/IdentityList.html b/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
index dadb383..dde4e7d 100644
--- a/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
+++ b/content/site/apidocs/org/apache/juneau/internal/IdentityList.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>IdentityList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>IdentityList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="IdentityList (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="IdentityList (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html b/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
index 84f779b..b6b4935 100644
--- a/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
+++ b/content/site/apidocs/org/apache/juneau/internal/JuneauLogger.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>JuneauLogger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>JuneauLogger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JuneauLogger (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="JuneauLogger (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/KeywordSet.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/KeywordSet.html b/content/site/apidocs/org/apache/juneau/internal/KeywordSet.html
index f4a21fd..219fb98 100644
--- a/content/site/apidocs/org/apache/juneau/internal/KeywordSet.html
+++ b/content/site/apidocs/org/apache/juneau/internal/KeywordSet.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>KeywordSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>KeywordSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="KeywordSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="KeywordSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/MultiIterable.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/MultiIterable.html b/content/site/apidocs/org/apache/juneau/internal/MultiIterable.html
index c03c5cc..f4147e9 100644
--- a/content/site/apidocs/org/apache/juneau/internal/MultiIterable.html
+++ b/content/site/apidocs/org/apache/juneau/internal/MultiIterable.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MultiIterable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MultiIterable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MultiIterable (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MultiIterable (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/MultiSet.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/MultiSet.html b/content/site/apidocs/org/apache/juneau/internal/MultiSet.html
index 6a544c2..6d2df31 100644
--- a/content/site/apidocs/org/apache/juneau/internal/MultiSet.html
+++ b/content/site/apidocs/org/apache/juneau/internal/MultiSet.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>MultiSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>MultiSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="MultiSet (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="MultiSet (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html b/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
index cfb59e9..1f95275 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ReflectionUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ReflectionUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ReflectionUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ReflectionUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ReflectionUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html b/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
index 0da196f..3495831 100644
--- a/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
+++ b/content/site/apidocs/org/apache/juneau/internal/SimpleMap.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>SimpleMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>SimpleMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SimpleMap (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="SimpleMap (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html b/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
index e8e6852..434dc8e 100644
--- a/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
+++ b/content/site/apidocs/org/apache/juneau/internal/StringBuilderWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StringBuilderWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StringBuilderWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StringBuilderWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StringBuilderWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/StringUtils.html b/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
index 7294a1d..d8dcf7a 100644
--- a/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/StringUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>StringUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>StringUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="StringUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="StringUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/TeeOutputStream.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/TeeOutputStream.html b/content/site/apidocs/org/apache/juneau/internal/TeeOutputStream.html
index 2fb0bbf..047de37 100644
--- a/content/site/apidocs/org/apache/juneau/internal/TeeOutputStream.html
+++ b/content/site/apidocs/org/apache/juneau/internal/TeeOutputStream.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>TeeOutputStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>TeeOutputStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="TeeOutputStream (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="TeeOutputStream (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/TeeWriter.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/TeeWriter.html b/content/site/apidocs/org/apache/juneau/internal/TeeWriter.html
index b3dcd13..ee5b081 100644
--- a/content/site/apidocs/org/apache/juneau/internal/TeeWriter.html
+++ b/content/site/apidocs/org/apache/juneau/internal/TeeWriter.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>TeeWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>TeeWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="TeeWriter (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="TeeWriter (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/ThrowableUtils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/ThrowableUtils.html b/content/site/apidocs/org/apache/juneau/internal/ThrowableUtils.html
index 8c0cbf8..3973b90 100644
--- a/content/site/apidocs/org/apache/juneau/internal/ThrowableUtils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/ThrowableUtils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>ThrowableUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>ThrowableUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ThrowableUtils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="ThrowableUtils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/Utils.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/Utils.html b/content/site/apidocs/org/apache/juneau/internal/Utils.html
index 7fac281..6498d25 100644
--- a/content/site/apidocs/org/apache/juneau/internal/Utils.html
+++ b/content/site/apidocs/org/apache/juneau/internal/Utils.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Utils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Utils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Utils (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Utils (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/Version.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/Version.html b/content/site/apidocs/org/apache/juneau/internal/Version.html
index 2231ae1..f1f8b07 100644
--- a/content/site/apidocs/org/apache/juneau/internal/Version.html
+++ b/content/site/apidocs/org/apache/juneau/internal/Version.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>Version (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>Version (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Version (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="Version (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/VersionRange.html b/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
index ae1ab81..a6e52be 100644
--- a/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
+++ b/content/site/apidocs/org/apache/juneau/internal/VersionRange.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>VersionRange (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>VersionRange (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="VersionRange (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="VersionRange (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/package-frame.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/package-frame.html b/content/site/apidocs/org/apache/juneau/internal/package-frame.html
index 4b7a3b2..a654e2b 100644
--- a/content/site/apidocs/org/apache/juneau/internal/package-frame.html
+++ b/content/site/apidocs/org/apache/juneau/internal/package-frame.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.internal (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.internal (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/org/apache/juneau/internal/package-summary.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/internal/package-summary.html b/content/site/apidocs/org/apache/juneau/internal/package-summary.html
index 16a336f..a050729 100644
--- a/content/site/apidocs/org/apache/juneau/internal/package-summary.html
+++ b/content/site/apidocs/org/apache/juneau/internal/package-summary.html
@@ -4,7 +4,7 @@
 <head>
 <!-- Generated by javadoc -->
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
-<title>org.apache.juneau.internal (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)</title>
+<title>org.apache.juneau.internal (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)</title>
 <link rel="stylesheet" type="text/css" href="../../../../javadoc.css" title="Style">
 <script type="text/javascript" src="../../../../script.js"></script>
 </head>
@@ -12,7 +12,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.juneau.internal (Apache Juneau (incubating) 6.0.2-incubating-SNAPSHOT)";
+            parent.document.title="org.apache.juneau.internal (Apache Juneau (incubating) 6.1.1-incubating-SNAPSHOT)";
         }
     }
     catch(err) {



[02/16] incubator-juneau-website git commit: Update docs and about page.

Posted by ja...@apache.org.
http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/7170135e/content/site/apidocs/src-html/org/apache/juneau/BeanPropertyMeta.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/src-html/org/apache/juneau/BeanPropertyMeta.html b/content/site/apidocs/src-html/org/apache/juneau/BeanPropertyMeta.html
index 1ca5859..583ddea 100644
--- a/content/site/apidocs/src-html/org/apache/juneau/BeanPropertyMeta.html
+++ b/content/site/apidocs/src-html/org/apache/juneau/BeanPropertyMeta.html
@@ -50,862 +50,904 @@
 <span class="sourceLineNo">042</span>@SuppressWarnings({ "rawtypes", "unchecked" })<a name="line.42"></a>
 <span class="sourceLineNo">043</span>public class BeanPropertyMeta {<a name="line.43"></a>
 <span class="sourceLineNo">044</span><a name="line.44"></a>
-<span class="sourceLineNo">045</span>   private Field field;<a name="line.45"></a>
-<span class="sourceLineNo">046</span>   private Method getter, setter;<a name="line.46"></a>
-<span class="sourceLineNo">047</span>   private boolean isConstructorArg, isUri;<a name="line.47"></a>
-<span class="sourceLineNo">048</span><a name="line.48"></a>
-<span class="sourceLineNo">049</span>   private final BeanMeta&lt;?&gt; beanMeta;<a name="line.49"></a>
-<span class="sourceLineNo">050</span>   private final BeanContext beanContext;<a name="line.50"></a>
-<span class="sourceLineNo">051</span><a name="line.51"></a>
-<span class="sourceLineNo">052</span>   private String name;<a name="line.52"></a>
-<span class="sourceLineNo">053</span>   private ClassMeta&lt;?&gt;<a name="line.53"></a>
-<span class="sourceLineNo">054</span>      rawTypeMeta,                           // The real class type of the bean property.<a name="line.54"></a>
-<span class="sourceLineNo">055</span>      typeMeta;                              // The transformed class type of the bean property.<a name="line.55"></a>
-<span class="sourceLineNo">056</span>   private String[] properties;<a name="line.56"></a>
-<span class="sourceLineNo">057</span>   private PojoSwap swap;                     // PojoSwap defined only via @BeanProperty annotation.<a name="line.57"></a>
-<span class="sourceLineNo">058</span><a name="line.58"></a>
-<span class="sourceLineNo">059</span>   private MetadataMap extMeta = new MetadataMap();  // Extended metadata<a name="line.59"></a>
-<span class="sourceLineNo">060</span>   BeanRegistry beanRegistry;<a name="line.60"></a>
-<span class="sourceLineNo">061</span><a name="line.61"></a>
-<span class="sourceLineNo">062</span>   /**<a name="line.62"></a>
-<span class="sourceLineNo">063</span>    * Constructor.<a name="line.63"></a>
-<span class="sourceLineNo">064</span>    *<a name="line.64"></a>
-<span class="sourceLineNo">065</span>    * @param beanMeta The metadata of the bean containing this property.<a name="line.65"></a>
-<span class="sourceLineNo">066</span>    * @param name This property name.<a name="line.66"></a>
-<span class="sourceLineNo">067</span>    */<a name="line.67"></a>
-<span class="sourceLineNo">068</span>   protected BeanPropertyMeta(BeanMeta&lt;?&gt; beanMeta, String name) {<a name="line.68"></a>
-<span class="sourceLineNo">069</span>      this.beanMeta = beanMeta;<a name="line.69"></a>
-<span class="sourceLineNo">070</span>      this.beanContext = beanMeta.ctx;<a name="line.70"></a>
-<span class="sourceLineNo">071</span>      this.name = name;<a name="line.71"></a>
-<span class="sourceLineNo">072</span>   }<a name="line.72"></a>
-<span class="sourceLineNo">073</span><a name="line.73"></a>
-<span class="sourceLineNo">074</span>   BeanPropertyMeta(BeanMeta&lt;?&gt; beanMeta, String name, ClassMeta&lt;?&gt; rawTypeMeta, BeanRegistry beanRegistry) {<a name="line.74"></a>
-<span class="sourceLineNo">075</span>      this(beanMeta, name);<a name="line.75"></a>
-<span class="sourceLineNo">076</span>      this.rawTypeMeta = rawTypeMeta;<a name="line.76"></a>
-<span class="sourceLineNo">077</span>      this.beanRegistry = beanRegistry;<a name="line.77"></a>
-<span class="sourceLineNo">078</span>   }<a name="line.78"></a>
-<span class="sourceLineNo">079</span><a name="line.79"></a>
-<span class="sourceLineNo">080</span>   BeanPropertyMeta(BeanMeta&lt;?&gt; beanMeta, String name, Method getter, Method setter) {<a name="line.80"></a>
-<span class="sourceLineNo">081</span>      this(beanMeta, name);<a name="line.81"></a>
-<span class="sourceLineNo">082</span>      setGetter(getter);<a name="line.82"></a>
-<span class="sourceLineNo">083</span>      setSetter(setter);<a name="line.83"></a>
-<span class="sourceLineNo">084</span>   }<a name="line.84"></a>
-<span class="sourceLineNo">085</span><a name="line.85"></a>
-<span class="sourceLineNo">086</span>   /**<a name="line.86"></a>
-<span class="sourceLineNo">087</span>    * Returns the name of this bean property.<a name="line.87"></a>
-<span class="sourceLineNo">088</span>    *<a name="line.88"></a>
-<span class="sourceLineNo">089</span>    * @return The name of the bean property.<a name="line.89"></a>
-<span class="sourceLineNo">090</span>    */<a name="line.90"></a>
-<span class="sourceLineNo">091</span>   public String getName() {<a name="line.91"></a>
-<span class="sourceLineNo">092</span>      return name;<a name="line.92"></a>
-<span class="sourceLineNo">093</span>   }<a name="line.93"></a>
-<span class="sourceLineNo">094</span><a name="line.94"></a>
-<span class="sourceLineNo">095</span>   /**<a name="line.95"></a>
-<span class="sourceLineNo">096</span>    * Returns the bean meta that this property belongs to.<a name="line.96"></a>
-<span class="sourceLineNo">097</span>    *<a name="line.97"></a>
-<span class="sourceLineNo">098</span>    * @return The bean meta that this property belongs to.<a name="line.98"></a>
-<span class="sourceLineNo">099</span>    */<a name="line.99"></a>
-<span class="sourceLineNo">100</span>   @BeanIgnore<a name="line.100"></a>
-<span class="sourceLineNo">101</span>   public BeanMeta&lt;?&gt; getBeanMeta() {<a name="line.101"></a>
-<span class="sourceLineNo">102</span>      return beanMeta;<a name="line.102"></a>
-<span class="sourceLineNo">103</span>   }<a name="line.103"></a>
-<span class="sourceLineNo">104</span><a name="line.104"></a>
-<span class="sourceLineNo">105</span>   /**<a name="line.105"></a>
-<span class="sourceLineNo">106</span>    * Returns the getter method for this property.<a name="line.106"></a>
-<span class="sourceLineNo">107</span>    *<a name="line.107"></a>
-<span class="sourceLineNo">108</span>    * @return The getter method for this bean property, or &lt;jk&gt;null&lt;/jk&gt; if there is no getter method.<a name="line.108"></a>
-<span class="sourceLineNo">109</span>    */<a name="line.109"></a>
-<span class="sourceLineNo">110</span>   public Method getGetter() {<a name="line.110"></a>
-<span class="sourceLineNo">111</span>      return getter;<a name="line.111"></a>
-<span class="sourceLineNo">112</span>   }<a name="line.112"></a>
+<span class="sourceLineNo">045</span>   final BeanMeta&lt;?&gt; beanMeta;                               // The bean that this property belongs to.<a name="line.45"></a>
+<span class="sourceLineNo">046</span>   private final BeanContext beanContext;                    // The context that created this meta.<a name="line.46"></a>
+<span class="sourceLineNo">047</span><a name="line.47"></a>
+<span class="sourceLineNo">048</span>   private final String name;                                // The name of the property.<a name="line.48"></a>
+<span class="sourceLineNo">049</span>   private final Field field;                                // The bean property field (if it has one).<a name="line.49"></a>
+<span class="sourceLineNo">050</span>   private final Method getter, setter;                      // The bean property getter and setter.<a name="line.50"></a>
+<span class="sourceLineNo">051</span>   private final boolean isUri;                              // True if this is a URL/URI or annotated with @URI.<a name="line.51"></a>
+<span class="sourceLineNo">052</span><a name="line.52"></a>
+<span class="sourceLineNo">053</span>   private final ClassMeta&lt;?&gt;<a name="line.53"></a>
+<span class="sourceLineNo">054</span>      rawTypeMeta,                                           // The real class type of the bean property.<a name="line.54"></a>
+<span class="sourceLineNo">055</span>      typeMeta;                                              // The transformed class type of the bean property.<a name="line.55"></a>
+<span class="sourceLineNo">056</span><a name="line.56"></a>
+<span class="sourceLineNo">057</span>   private final String[] properties;                        // The value of the @BeanProperty(properties) annotation.<a name="line.57"></a>
+<span class="sourceLineNo">058</span>   private final PojoSwap swap;                              // PojoSwap defined only via @BeanProperty annotation.<a name="line.58"></a>
+<span class="sourceLineNo">059</span><a name="line.59"></a>
+<span class="sourceLineNo">060</span>   private final MetadataMap extMeta = new MetadataMap();    // Extended metadata<a name="line.60"></a>
+<span class="sourceLineNo">061</span>   private final BeanRegistry beanRegistry;<a name="line.61"></a>
+<span class="sourceLineNo">062</span><a name="line.62"></a>
+<span class="sourceLineNo">063</span>   private final Object overrideValue;                       // The bean property value (if it's an overridden delegate).<a name="line.63"></a>
+<span class="sourceLineNo">064</span>   private final BeanPropertyMeta delegateFor;               // The bean property that this meta is a delegate for.<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>    * BeanPropertyMeta builder class.<a name="line.67"></a>
+<span class="sourceLineNo">068</span>    */<a name="line.68"></a>
+<span class="sourceLineNo">069</span>   public static class Builder {<a name="line.69"></a>
+<span class="sourceLineNo">070</span>      private BeanMeta&lt;?&gt; beanMeta;<a name="line.70"></a>
+<span class="sourceLineNo">071</span>      private BeanContext beanContext;<a name="line.71"></a>
+<span class="sourceLineNo">072</span>      String name;<a name="line.72"></a>
+<span class="sourceLineNo">073</span>      Field field;<a name="line.73"></a>
+<span class="sourceLineNo">074</span>      Method getter, setter;<a name="line.74"></a>
+<span class="sourceLineNo">075</span>      private boolean isConstructorArg, isUri;<a name="line.75"></a>
+<span class="sourceLineNo">076</span>      private ClassMeta&lt;?&gt; rawTypeMeta, typeMeta;<a name="line.76"></a>
+<span class="sourceLineNo">077</span>      private String[] properties;<a name="line.77"></a>
+<span class="sourceLineNo">078</span>      private PojoSwap swap;<a name="line.78"></a>
+<span class="sourceLineNo">079</span>      private BeanRegistry beanRegistry;<a name="line.79"></a>
+<span class="sourceLineNo">080</span>      private Object overrideValue;<a name="line.80"></a>
+<span class="sourceLineNo">081</span>      private BeanPropertyMeta delegateFor;<a name="line.81"></a>
+<span class="sourceLineNo">082</span><a name="line.82"></a>
+<span class="sourceLineNo">083</span>      Builder(BeanMeta&lt;?&gt; beanMeta, String name) {<a name="line.83"></a>
+<span class="sourceLineNo">084</span>         this.beanMeta = beanMeta;<a name="line.84"></a>
+<span class="sourceLineNo">085</span>         this.beanContext = beanMeta.ctx;<a name="line.85"></a>
+<span class="sourceLineNo">086</span>         this.name = name;<a name="line.86"></a>
+<span class="sourceLineNo">087</span>      }<a name="line.87"></a>
+<span class="sourceLineNo">088</span><a name="line.88"></a>
+<span class="sourceLineNo">089</span>      Builder(BeanMeta&lt;?&gt; beanMeta, String name, ClassMeta&lt;?&gt; rawTypeMeta, BeanRegistry beanRegistry) {<a name="line.89"></a>
+<span class="sourceLineNo">090</span>         this(beanMeta, name);<a name="line.90"></a>
+<span class="sourceLineNo">091</span>         this.rawTypeMeta = rawTypeMeta;<a name="line.91"></a>
+<span class="sourceLineNo">092</span>         if (rawTypeMeta == null)<a name="line.92"></a>
+<span class="sourceLineNo">093</span>            throw new RuntimeException("xxx");<a name="line.93"></a>
+<span class="sourceLineNo">094</span>         this.typeMeta = rawTypeMeta;<a name="line.94"></a>
+<span class="sourceLineNo">095</span>         this.beanRegistry = beanRegistry;<a name="line.95"></a>
+<span class="sourceLineNo">096</span>      }<a name="line.96"></a>
+<span class="sourceLineNo">097</span><a name="line.97"></a>
+<span class="sourceLineNo">098</span>      /**<a name="line.98"></a>
+<span class="sourceLineNo">099</span>       * BeanPropertyMeta builder for delegate classes.<a name="line.99"></a>
+<span class="sourceLineNo">100</span>       *<a name="line.100"></a>
+<span class="sourceLineNo">101</span>       * @param beanMeta The Bean that this property belongs to.<a name="line.101"></a>
+<span class="sourceLineNo">102</span>       * @param name The property name.<a name="line.102"></a>
+<span class="sourceLineNo">103</span>       * @param overrideValue The overridden value of this bean property.<a name="line.103"></a>
+<span class="sourceLineNo">104</span>       * @param delegateFor The original bean property that this one is overriding.<a name="line.104"></a>
+<span class="sourceLineNo">105</span>       */<a name="line.105"></a>
+<span class="sourceLineNo">106</span>      public Builder(BeanMeta&lt;?&gt; beanMeta, String name, Object overrideValue, BeanPropertyMeta delegateFor) {<a name="line.106"></a>
+<span class="sourceLineNo">107</span>         this(beanMeta, name);<a name="line.107"></a>
+<span class="sourceLineNo">108</span>         this.delegateFor = delegateFor;<a name="line.108"></a>
+<span class="sourceLineNo">109</span>         this.overrideValue = overrideValue;<a name="line.109"></a>
+<span class="sourceLineNo">110</span>      }<a name="line.110"></a>
+<span class="sourceLineNo">111</span><a name="line.111"></a>
+<span class="sourceLineNo">112</span>      boolean validate(BeanContext f, BeanRegistry parentBeanRegistry, Map&lt;Class&lt;?&gt;,Class&lt;?&gt;[]&gt; typeVarImpls) throws Exception {<a name="line.112"></a>
 <span class="sourceLineNo">113</span><a name="line.113"></a>
-<span class="sourceLineNo">114</span>   /**<a name="line.114"></a>
-<span class="sourceLineNo">115</span>    * Returns the setter method for this property.<a name="line.115"></a>
-<span class="sourceLineNo">116</span>    *<a name="line.116"></a>
-<span class="sourceLineNo">117</span>    * @return The setter method for this bean property, or &lt;jk&gt;null&lt;/jk&gt; if there is no setter method.<a name="line.117"></a>
-<span class="sourceLineNo">118</span>    */<a name="line.118"></a>
-<span class="sourceLineNo">119</span>   public Method getSetter() {<a name="line.119"></a>
-<span class="sourceLineNo">120</span>      return setter;<a name="line.120"></a>
-<span class="sourceLineNo">121</span>   }<a name="line.121"></a>
-<span class="sourceLineNo">122</span><a name="line.122"></a>
-<span class="sourceLineNo">123</span>   /**<a name="line.123"></a>
-<span class="sourceLineNo">124</span>    * Returns the field for this property.<a name="line.124"></a>
-<span class="sourceLineNo">125</span>    *<a name="line.125"></a>
-<span class="sourceLineNo">126</span>    * @return The field for this bean property, or &lt;jk&gt;null&lt;/jk&gt; if there is no field associated with this bean property.<a name="line.126"></a>
-<span class="sourceLineNo">127</span>    */<a name="line.127"></a>
-<span class="sourceLineNo">128</span>   public Field getField() {<a name="line.128"></a>
-<span class="sourceLineNo">129</span>      return field;<a name="line.129"></a>
-<span class="sourceLineNo">130</span>   }<a name="line.130"></a>
-<span class="sourceLineNo">131</span><a name="line.131"></a>
-<span class="sourceLineNo">132</span>   /**<a name="line.132"></a>
-<span class="sourceLineNo">133</span>    * Returns the {@link ClassMeta} of the class of this property.<a name="line.133"></a>
-<span class="sourceLineNo">134</span>    * &lt;p&gt;<a name="line.134"></a>
-<span class="sourceLineNo">135</span>    * If this property or the property type class has a {@link PojoSwap} associated with it, this<a name="line.135"></a>
-<span class="sourceLineNo">136</span>    *    method returns the transformed class meta.<a name="line.136"></a>
-<span class="sourceLineNo">137</span>    * This matches the class type that is used by the {@link #get(BeanMap)} and {@link #set(BeanMap, Object)} methods.<a name="line.137"></a>
-<span class="sourceLineNo">138</span>    *<a name="line.138"></a>
-<span class="sourceLineNo">139</span>    * @return The {@link ClassMeta} of the class of this property.<a name="line.139"></a>
-<span class="sourceLineNo">140</span>    */<a name="line.140"></a>
-<span class="sourceLineNo">141</span>   public ClassMeta&lt;?&gt; getClassMeta() {<a name="line.141"></a>
-<span class="sourceLineNo">142</span>      if (typeMeta == null)<a name="line.142"></a>
-<span class="sourceLineNo">143</span>         typeMeta = (swap != null ? swap.getSwapClassMeta(beanContext) : rawTypeMeta == null ? beanContext.object() : rawTypeMeta.getSerializedClassMeta());<a name="line.143"></a>
-<span class="sourceLineNo">144</span>      return typeMeta;<a name="line.144"></a>
-<span class="sourceLineNo">145</span>   }<a name="line.145"></a>
-<span class="sourceLineNo">146</span><a name="line.146"></a>
-<span class="sourceLineNo">147</span>   /**<a name="line.147"></a>
-<span class="sourceLineNo">148</span>    * Returns the bean dictionary in use for this bean property.<a name="line.148"></a>
-<span class="sourceLineNo">149</span>    * The order of lookup for the dictionary is as follows:<a name="line.149"></a>
-<span class="sourceLineNo">150</span>    * &lt;ol&gt;<a name="line.150"></a>
-<span class="sourceLineNo">151</span>    *    &lt;li&gt;Dictionary defined via {@link BeanProperty#beanDictionary()}.<a name="line.151"></a>
-<span class="sourceLineNo">152</span>    *    &lt;li&gt;Dictionary defined via {@link BeanContext#BEAN_beanDictionary} context property.<a name="line.152"></a>
-<span class="sourceLineNo">153</span>    * &lt;/ol&gt;<a name="line.153"></a>
-<span class="sourceLineNo">154</span>    * @return The bean dictionary in use for this bean property.  Never &lt;jk&gt;null&lt;/jk&gt;.<a name="line.154"></a>
-<span class="sourceLineNo">155</span>    */<a name="line.155"></a>
-<span class="sourceLineNo">156</span>   public BeanRegistry getBeanRegistry() {<a name="line.156"></a>
-<span class="sourceLineNo">157</span>      return beanRegistry;<a name="line.157"></a>
-<span class="sourceLineNo">158</span>   }<a name="line.158"></a>
-<span class="sourceLineNo">159</span><a name="line.159"></a>
-<span class="sourceLineNo">160</span>   /**<a name="line.160"></a>
-<span class="sourceLineNo">161</span>    * Sets the getter method for this property.<a name="line.161"></a>
-<span class="sourceLineNo">162</span>    *<a name="line.162"></a>
-<span class="sourceLineNo">163</span>    * @param getter The getter method to associate with this property.<a name="line.163"></a>
-<span class="sourceLineNo">164</span>    * @return This object (for method chaining).<a name="line.164"></a>
-<span class="sourceLineNo">165</span>    */<a name="line.165"></a>
-<span class="sourceLineNo">166</span>   BeanPropertyMeta setGetter(Method getter) {<a name="line.166"></a>
-<span class="sourceLineNo">167</span>      setAccessible(getter);<a name="line.167"></a>
-<span class="sourceLineNo">168</span>      this.getter = getter;<a name="line.168"></a>
-<span class="sourceLineNo">169</span>      return this;<a name="line.169"></a>
-<span class="sourceLineNo">170</span>   }<a name="line.170"></a>
-<span class="sourceLineNo">171</span><a name="line.171"></a>
-<span class="sourceLineNo">172</span>   /**<a name="line.172"></a>
-<span class="sourceLineNo">173</span>    * Sets the setter method for this property.<a name="line.173"></a>
-<span class="sourceLineNo">174</span>    *<a name="line.174"></a>
-<span class="sourceLineNo">175</span>    * @param setter The setter method to associate with this property.<a name="line.175"></a>
-<span class="sourceLineNo">176</span>    * @return This object (for method chaining).<a name="line.176"></a>
-<span class="sourceLineNo">177</span>    */<a name="line.177"></a>
-<span class="sourceLineNo">178</span>   BeanPropertyMeta setSetter(Method setter) {<a name="line.178"></a>
-<span class="sourceLineNo">179</span>      setAccessible(setter);<a name="line.179"></a>
-<span class="sourceLineNo">180</span>      this.setter = setter;<a name="line.180"></a>
-<span class="sourceLineNo">181</span>      return this;<a name="line.181"></a>
-<span class="sourceLineNo">182</span>   }<a name="line.182"></a>
+<span class="sourceLineNo">114</span>         List&lt;Class&lt;?&gt;&gt; bdClasses = new ArrayList&lt;Class&lt;?&gt;&gt;();<a name="line.114"></a>
+<span class="sourceLineNo">115</span><a name="line.115"></a>
+<span class="sourceLineNo">116</span>         if (field == null &amp;&amp; getter == null)<a name="line.116"></a>
+<span class="sourceLineNo">117</span>            return false;<a name="line.117"></a>
+<span class="sourceLineNo">118</span><a name="line.118"></a>
+<span class="sourceLineNo">119</span>         if (field == null &amp;&amp; setter == null &amp;&amp; f.beansRequireSettersForGetters &amp;&amp; ! isConstructorArg)<a name="line.119"></a>
+<span class="sourceLineNo">120</span>            return false;<a name="line.120"></a>
+<span class="sourceLineNo">121</span><a name="line.121"></a>
+<span class="sourceLineNo">122</span>         if (field != null) {<a name="line.122"></a>
+<span class="sourceLineNo">123</span>            BeanProperty p = field.getAnnotation(BeanProperty.class);<a name="line.123"></a>
+<span class="sourceLineNo">124</span>            rawTypeMeta = f.resolveClassMeta(p, field.getGenericType(), typeVarImpls);<a name="line.124"></a>
+<span class="sourceLineNo">125</span>            isUri |= (rawTypeMeta.isUri() || field.isAnnotationPresent(org.apache.juneau.annotation.URI.class));<a name="line.125"></a>
+<span class="sourceLineNo">126</span>            if (p != null) {<a name="line.126"></a>
+<span class="sourceLineNo">127</span>               swap = getPropertyPojoSwap(p);<a name="line.127"></a>
+<span class="sourceLineNo">128</span>               if (! p.properties().isEmpty())<a name="line.128"></a>
+<span class="sourceLineNo">129</span>                  properties = StringUtils.split(p.properties(), ',');<a name="line.129"></a>
+<span class="sourceLineNo">130</span>               bdClasses.addAll(Arrays.asList(p.beanDictionary()));<a name="line.130"></a>
+<span class="sourceLineNo">131</span>            }<a name="line.131"></a>
+<span class="sourceLineNo">132</span>         }<a name="line.132"></a>
+<span class="sourceLineNo">133</span><a name="line.133"></a>
+<span class="sourceLineNo">134</span>         if (getter != null) {<a name="line.134"></a>
+<span class="sourceLineNo">135</span>            BeanProperty p = getter.getAnnotation(BeanProperty.class);<a name="line.135"></a>
+<span class="sourceLineNo">136</span>            if (rawTypeMeta == null)<a name="line.136"></a>
+<span class="sourceLineNo">137</span>               rawTypeMeta = f.resolveClassMeta(p, getter.getGenericReturnType(), typeVarImpls);<a name="line.137"></a>
+<span class="sourceLineNo">138</span>            isUri |= (rawTypeMeta.isUri() || getter.isAnnotationPresent(org.apache.juneau.annotation.URI.class));<a name="line.138"></a>
+<span class="sourceLineNo">139</span>            if (p != null) {<a name="line.139"></a>
+<span class="sourceLineNo">140</span>               if (swap == null)<a name="line.140"></a>
+<span class="sourceLineNo">141</span>                  swap = getPropertyPojoSwap(p);<a name="line.141"></a>
+<span class="sourceLineNo">142</span>               if (properties != null &amp;&amp; ! p.properties().isEmpty())<a name="line.142"></a>
+<span class="sourceLineNo">143</span>                  properties = StringUtils.split(p.properties(), ',');<a name="line.143"></a>
+<span class="sourceLineNo">144</span>               bdClasses.addAll(Arrays.asList(p.beanDictionary()));<a name="line.144"></a>
+<span class="sourceLineNo">145</span>            }<a name="line.145"></a>
+<span class="sourceLineNo">146</span>         }<a name="line.146"></a>
+<span class="sourceLineNo">147</span><a name="line.147"></a>
+<span class="sourceLineNo">148</span>         if (setter != null) {<a name="line.148"></a>
+<span class="sourceLineNo">149</span>            BeanProperty p = setter.getAnnotation(BeanProperty.class);<a name="line.149"></a>
+<span class="sourceLineNo">150</span>            if (rawTypeMeta == null)<a name="line.150"></a>
+<span class="sourceLineNo">151</span>               rawTypeMeta = f.resolveClassMeta(p, setter.getGenericParameterTypes()[0], typeVarImpls);<a name="line.151"></a>
+<span class="sourceLineNo">152</span>            isUri |= (rawTypeMeta.isUri() || setter.isAnnotationPresent(org.apache.juneau.annotation.URI.class));<a name="line.152"></a>
+<span class="sourceLineNo">153</span>            if (p != null) {<a name="line.153"></a>
+<span class="sourceLineNo">154</span>            if (swap == null)<a name="line.154"></a>
+<span class="sourceLineNo">155</span>               swap = getPropertyPojoSwap(p);<a name="line.155"></a>
+<span class="sourceLineNo">156</span>               if (properties != null &amp;&amp; ! p.properties().isEmpty())<a name="line.156"></a>
+<span class="sourceLineNo">157</span>                  properties = StringUtils.split(p.properties(), ',');<a name="line.157"></a>
+<span class="sourceLineNo">158</span>               bdClasses.addAll(Arrays.asList(p.beanDictionary()));<a name="line.158"></a>
+<span class="sourceLineNo">159</span>            }<a name="line.159"></a>
+<span class="sourceLineNo">160</span>         }<a name="line.160"></a>
+<span class="sourceLineNo">161</span><a name="line.161"></a>
+<span class="sourceLineNo">162</span>         if (rawTypeMeta == null)<a name="line.162"></a>
+<span class="sourceLineNo">163</span>            return false;<a name="line.163"></a>
+<span class="sourceLineNo">164</span><a name="line.164"></a>
+<span class="sourceLineNo">165</span>         this.beanRegistry = new BeanRegistry(beanContext, parentBeanRegistry, bdClasses.toArray(new Class&lt;?&gt;[0]));<a name="line.165"></a>
+<span class="sourceLineNo">166</span><a name="line.166"></a>
+<span class="sourceLineNo">167</span>         // Do some annotation validation.<a name="line.167"></a>
+<span class="sourceLineNo">168</span>         Class&lt;?&gt; c = rawTypeMeta.getInnerClass();<a name="line.168"></a>
+<span class="sourceLineNo">169</span>         if (getter != null &amp;&amp; ! isParentClass(getter.getReturnType(), c))<a name="line.169"></a>
+<span class="sourceLineNo">170</span>            return false;<a name="line.170"></a>
+<span class="sourceLineNo">171</span>         if (setter != null &amp;&amp; ! isParentClass(setter.getParameterTypes()[0], c))<a name="line.171"></a>
+<span class="sourceLineNo">172</span>            return false;<a name="line.172"></a>
+<span class="sourceLineNo">173</span>         if (field != null &amp;&amp; ! isParentClass(field.getType(), c))<a name="line.173"></a>
+<span class="sourceLineNo">174</span>            return false;<a name="line.174"></a>
+<span class="sourceLineNo">175</span><a name="line.175"></a>
+<span class="sourceLineNo">176</span>         if (typeMeta == null)<a name="line.176"></a>
+<span class="sourceLineNo">177</span>            typeMeta = (swap != null ? swap.getSwapClassMeta(beanContext) : rawTypeMeta == null ? beanContext.object() : rawTypeMeta.getSerializedClassMeta());<a name="line.177"></a>
+<span class="sourceLineNo">178</span>         if (typeMeta == null)<a name="line.178"></a>
+<span class="sourceLineNo">179</span>            typeMeta = rawTypeMeta;<a name="line.179"></a>
+<span class="sourceLineNo">180</span><a name="line.180"></a>
+<span class="sourceLineNo">181</span>         return true;<a name="line.181"></a>
+<span class="sourceLineNo">182</span>      }<a name="line.182"></a>
 <span class="sourceLineNo">183</span><a name="line.183"></a>
-<span class="sourceLineNo">184</span>   /**<a name="line.184"></a>
-<span class="sourceLineNo">185</span>    * Sets the field for this property.<a name="line.185"></a>
-<span class="sourceLineNo">186</span>    *<a name="line.186"></a>
-<span class="sourceLineNo">187</span>    * @param field The field to associate with this property.<a name="line.187"></a>
-<span class="sourceLineNo">188</span>    * @return This object (for method chaining).<a name="line.188"></a>
-<span class="sourceLineNo">189</span>    */<a name="line.189"></a>
-<span class="sourceLineNo">190</span>   BeanPropertyMeta setField(Field field) {<a name="line.190"></a>
-<span class="sourceLineNo">191</span>      setAccessible(field);<a name="line.191"></a>
-<span class="sourceLineNo">192</span>      this.field = field;<a name="line.192"></a>
-<span class="sourceLineNo">193</span>      return this;<a name="line.193"></a>
-<span class="sourceLineNo">194</span>   }<a name="line.194"></a>
-<span class="sourceLineNo">195</span><a name="line.195"></a>
-<span class="sourceLineNo">196</span>   /**<a name="line.196"></a>
-<span class="sourceLineNo">197</span>    * Marks this property as only settable through a constructor arg.<a name="line.197"></a>
-<span class="sourceLineNo">198</span>    *<a name="line.198"></a>
-<span class="sourceLineNo">199</span>    * @return This object (for method chaining).<a name="line.199"></a>
-<span class="sourceLineNo">200</span>    */<a name="line.200"></a>
-<span class="sourceLineNo">201</span>   BeanPropertyMeta setAsConstructorArg() {<a name="line.201"></a>
-<span class="sourceLineNo">202</span>      this.isConstructorArg = true;<a name="line.202"></a>
-<span class="sourceLineNo">203</span>      return this;<a name="line.203"></a>
-<span class="sourceLineNo">204</span>   }<a name="line.204"></a>
-<span class="sourceLineNo">205</span><a name="line.205"></a>
-<span class="sourceLineNo">206</span>   /**<a name="line.206"></a>
-<span class="sourceLineNo">207</span>    * Returns &lt;jk&gt;true&lt;/jk&gt; if this bean property is a URI.<a name="line.207"></a>
-<span class="sourceLineNo">208</span>    * &lt;p&gt;<a name="line.208"></a>
-<span class="sourceLineNo">209</span>    * A bean property can be considered a URI if any of the following are true:<a name="line.209"></a>
-<span class="sourceLineNo">210</span>    * &lt;ul class='spaced-list'&gt;<a name="line.210"></a>
-<span class="sourceLineNo">211</span>    *    &lt;li&gt;Property class type is {@link URL} or {@link URI}.<a name="line.211"></a>
-<span class="sourceLineNo">212</span>    *    &lt;li&gt;Property class type is annotated with {@link org.apache.juneau.annotation.URI}.<a name="line.212"></a>
-<span class="sourceLineNo">213</span>    *    &lt;li&gt;Property getter, setter, or field is annotated with {@link org.apache.juneau.annotation.URI}.<a name="line.213"></a>
-<span class="sourceLineNo">214</span>    * &lt;/ul&gt;<a name="line.214"></a>
-<span class="sourceLineNo">215</span>    *<a name="line.215"></a>
-<span class="sourceLineNo">216</span>    * @return &lt;jk&gt;true&lt;/jk&gt; if this bean property is a URI.<a name="line.216"></a>
-<span class="sourceLineNo">217</span>    */<a name="line.217"></a>
-<span class="sourceLineNo">218</span>   public boolean isUri() {<a name="line.218"></a>
-<span class="sourceLineNo">219</span>      return isUri;<a name="line.219"></a>
-<span class="sourceLineNo">220</span>   }<a name="line.220"></a>
-<span class="sourceLineNo">221</span><a name="line.221"></a>
-<span class="sourceLineNo">222</span>   /**<a name="line.222"></a>
-<span class="sourceLineNo">223</span>    * Returns the override list of properties defined through a {@link BeanProperty#properties()} annotation<a name="line.223"></a>
-<span class="sourceLineNo">224</span>    *  on this property.<a name="line.224"></a>
-<span class="sourceLineNo">225</span>    *<a name="line.225"></a>
-<span class="sourceLineNo">226</span>    * @return The list of override properties, or &lt;jk&gt;null&lt;/jk&gt; if annotation not specified.<a name="line.226"></a>
-<span class="sourceLineNo">227</span>    */<a name="line.227"></a>
-<span class="sourceLineNo">228</span>   public String[] getProperties() {<a name="line.228"></a>
-<span class="sourceLineNo">229</span>      return properties;<a name="line.229"></a>
-<span class="sourceLineNo">230</span>   }<a name="line.230"></a>
-<span class="sourceLineNo">231</span><a name="line.231"></a>
-<span class="sourceLineNo">232</span>   /**<a name="line.232"></a>
-<span class="sourceLineNo">233</span>    * Returns the language-specified extended metadata on this bean property.<a name="line.233"></a>
-<span class="sourceLineNo">234</span>    *<a name="line.234"></a>
-<span class="sourceLineNo">235</span>    * @param c The name of the metadata class to create.<a name="line.235"></a>
-<span class="sourceLineNo">236</span>    * @return Extended metadata on this bean property.  Never &lt;jk&gt;null&lt;/jk&gt;.<a name="line.236"></a>
-<span class="sourceLineNo">237</span>    */<a name="line.237"></a>
-<span class="sourceLineNo">238</span>   public &lt;M extends BeanPropertyMetaExtended&gt; M getExtendedMeta(Class&lt;M&gt; c) {<a name="line.238"></a>
-<span class="sourceLineNo">239</span>      return extMeta.get(c, this);<a name="line.239"></a>
-<span class="sourceLineNo">240</span>   }<a name="line.240"></a>
-<span class="sourceLineNo">241</span><a name="line.241"></a>
-<span class="sourceLineNo">242</span>   boolean validate(BeanContext f, BeanRegistry parentBeanRegistry, Map&lt;Class&lt;?&gt;,Class&lt;?&gt;[]&gt; typeVarImpls) throws Exception {<a name="line.242"></a>
-<span class="sourceLineNo">243</span><a name="line.243"></a>
-<span class="sourceLineNo">244</span>      List&lt;Class&lt;?&gt;&gt; bdClasses = new ArrayList&lt;Class&lt;?&gt;&gt;();<a name="line.244"></a>
-<span class="sourceLineNo">245</span><a name="line.245"></a>
-<span class="sourceLineNo">246</span>      if (field == null &amp;&amp; getter == null)<a name="line.246"></a>
-<span class="sourceLineNo">247</span>         return false;<a name="line.247"></a>
-<span class="sourceLineNo">248</span><a name="line.248"></a>
-<span class="sourceLineNo">249</span>      if (field == null &amp;&amp; setter == null &amp;&amp; f.beansRequireSettersForGetters &amp;&amp; ! isConstructorArg)<a name="line.249"></a>
-<span class="sourceLineNo">250</span>         return false;<a name="line.250"></a>
+<span class="sourceLineNo">184</span>      /**<a name="line.184"></a>
+<span class="sourceLineNo">185</span>       * @return A new BeanPropertyMeta object using this builder.<a name="line.185"></a>
+<span class="sourceLineNo">186</span>       */<a name="line.186"></a>
+<span class="sourceLineNo">187</span>      public BeanPropertyMeta build() {<a name="line.187"></a>
+<span class="sourceLineNo">188</span>         return new BeanPropertyMeta(this);<a name="line.188"></a>
+<span class="sourceLineNo">189</span>      }<a name="line.189"></a>
+<span class="sourceLineNo">190</span><a name="line.190"></a>
+<span class="sourceLineNo">191</span>      private PojoSwap getPropertyPojoSwap(BeanProperty p) throws Exception {<a name="line.191"></a>
+<span class="sourceLineNo">192</span>         Class&lt;?&gt; c = p.swap();<a name="line.192"></a>
+<span class="sourceLineNo">193</span>         if (c == Null.class)<a name="line.193"></a>
+<span class="sourceLineNo">194</span>            return null;<a name="line.194"></a>
+<span class="sourceLineNo">195</span>         try {<a name="line.195"></a>
+<span class="sourceLineNo">196</span>            if (ClassUtils.isParentClass(PojoSwap.class, c)) {<a name="line.196"></a>
+<span class="sourceLineNo">197</span>               return (PojoSwap)c.newInstance();<a name="line.197"></a>
+<span class="sourceLineNo">198</span>            }<a name="line.198"></a>
+<span class="sourceLineNo">199</span>            throw new RuntimeException("TODO - Surrogate swaps not yet supported.");<a name="line.199"></a>
+<span class="sourceLineNo">200</span>         } catch (Exception e) {<a name="line.200"></a>
+<span class="sourceLineNo">201</span>            throw new BeanRuntimeException(this.beanMeta.c, "Could not instantiate PojoSwap ''{0}'' for bean property ''{1}''", c.getName(), this.name).initCause(e);<a name="line.201"></a>
+<span class="sourceLineNo">202</span>         }<a name="line.202"></a>
+<span class="sourceLineNo">203</span>      }<a name="line.203"></a>
+<span class="sourceLineNo">204</span><a name="line.204"></a>
+<span class="sourceLineNo">205</span>      BeanPropertyMeta.Builder setGetter(Method getter) {<a name="line.205"></a>
+<span class="sourceLineNo">206</span>         setAccessible(getter);<a name="line.206"></a>
+<span class="sourceLineNo">207</span>         this.getter = getter;<a name="line.207"></a>
+<span class="sourceLineNo">208</span>         return this;<a name="line.208"></a>
+<span class="sourceLineNo">209</span>      }<a name="line.209"></a>
+<span class="sourceLineNo">210</span><a name="line.210"></a>
+<span class="sourceLineNo">211</span>      BeanPropertyMeta.Builder setSetter(Method setter) {<a name="line.211"></a>
+<span class="sourceLineNo">212</span>         setAccessible(setter);<a name="line.212"></a>
+<span class="sourceLineNo">213</span>         this.setter = setter;<a name="line.213"></a>
+<span class="sourceLineNo">214</span>         return this;<a name="line.214"></a>
+<span class="sourceLineNo">215</span>      }<a name="line.215"></a>
+<span class="sourceLineNo">216</span><a name="line.216"></a>
+<span class="sourceLineNo">217</span>      BeanPropertyMeta.Builder setField(Field field) {<a name="line.217"></a>
+<span class="sourceLineNo">218</span>         setAccessible(field);<a name="line.218"></a>
+<span class="sourceLineNo">219</span>         this.field = field;<a name="line.219"></a>
+<span class="sourceLineNo">220</span>         return this;<a name="line.220"></a>
+<span class="sourceLineNo">221</span>      }<a name="line.221"></a>
+<span class="sourceLineNo">222</span><a name="line.222"></a>
+<span class="sourceLineNo">223</span>      BeanPropertyMeta.Builder setAsConstructorArg() {<a name="line.223"></a>
+<span class="sourceLineNo">224</span>         this.isConstructorArg = true;<a name="line.224"></a>
+<span class="sourceLineNo">225</span>         return this;<a name="line.225"></a>
+<span class="sourceLineNo">226</span>      }<a name="line.226"></a>
+<span class="sourceLineNo">227</span><a name="line.227"></a>
+<span class="sourceLineNo">228</span>   }<a name="line.228"></a>
+<span class="sourceLineNo">229</span><a name="line.229"></a>
+<span class="sourceLineNo">230</span>   /**<a name="line.230"></a>
+<span class="sourceLineNo">231</span>    * Creates a new BeanPropertyMeta using the contents of the specified builder.<a name="line.231"></a>
+<span class="sourceLineNo">232</span>    *<a name="line.232"></a>
+<span class="sourceLineNo">233</span>    * @param b The builder to copy fields from.<a name="line.233"></a>
+<span class="sourceLineNo">234</span>    */<a name="line.234"></a>
+<span class="sourceLineNo">235</span>   protected BeanPropertyMeta(BeanPropertyMeta.Builder b) {<a name="line.235"></a>
+<span class="sourceLineNo">236</span>      this.field = b.field;<a name="line.236"></a>
+<span class="sourceLineNo">237</span>      this.getter = b.getter;<a name="line.237"></a>
+<span class="sourceLineNo">238</span>      this.setter = b.setter;<a name="line.238"></a>
+<span class="sourceLineNo">239</span>      this.isUri = b.isUri;<a name="line.239"></a>
+<span class="sourceLineNo">240</span>      this.beanMeta = b.beanMeta;<a name="line.240"></a>
+<span class="sourceLineNo">241</span>      this.beanContext = b.beanContext;<a name="line.241"></a>
+<span class="sourceLineNo">242</span>      this.name = b.name;<a name="line.242"></a>
+<span class="sourceLineNo">243</span>      this.rawTypeMeta = b.rawTypeMeta;<a name="line.243"></a>
+<span class="sourceLineNo">244</span>      this.typeMeta = b.typeMeta;<a name="line.244"></a>
+<span class="sourceLineNo">245</span>      this.properties = b.properties;<a name="line.245"></a>
+<span class="sourceLineNo">246</span>      this.swap = b.swap;<a name="line.246"></a>
+<span class="sourceLineNo">247</span>      this.beanRegistry = b.beanRegistry;<a name="line.247"></a>
+<span class="sourceLineNo">248</span>      this.overrideValue = b.overrideValue;<a name="line.248"></a>
+<span class="sourceLineNo">249</span>      this.delegateFor = b.delegateFor;<a name="line.249"></a>
+<span class="sourceLineNo">250</span>   }<a name="line.250"></a>
 <span class="sourceLineNo">251</span><a name="line.251"></a>
-<span class="sourceLineNo">252</span>      if (field != null) {<a name="line.252"></a>
-<span class="sourceLineNo">253</span>         BeanProperty p = field.getAnnotation(BeanProperty.class);<a name="line.253"></a>
-<span class="sourceLineNo">254</span>         rawTypeMeta = f.resolveClassMeta(p, field.getGenericType(), typeVarImpls);<a name="line.254"></a>
-<span class="sourceLineNo">255</span>         isUri |= (rawTypeMeta.isUri() || field.isAnnotationPresent(org.apache.juneau.annotation.URI.class));<a name="line.255"></a>
-<span class="sourceLineNo">256</span>         if (p != null) {<a name="line.256"></a>
-<span class="sourceLineNo">257</span>            swap = getPropertyPojoSwap(p);<a name="line.257"></a>
-<span class="sourceLineNo">258</span>            if (! p.properties().isEmpty())<a name="line.258"></a>
-<span class="sourceLineNo">259</span>               properties = StringUtils.split(p.properties(), ',');<a name="line.259"></a>
-<span class="sourceLineNo">260</span>            bdClasses.addAll(Arrays.asList(p.beanDictionary()));<a name="line.260"></a>
-<span class="sourceLineNo">261</span>         }<a name="line.261"></a>
-<span class="sourceLineNo">262</span>      }<a name="line.262"></a>
-<span class="sourceLineNo">263</span><a name="line.263"></a>
-<span class="sourceLineNo">264</span>      if (getter != null) {<a name="line.264"></a>
-<span class="sourceLineNo">265</span>         BeanProperty p = getter.getAnnotation(BeanProperty.class);<a name="line.265"></a>
-<span class="sourceLineNo">266</span>         if (rawTypeMeta == null)<a name="line.266"></a>
-<span class="sourceLineNo">267</span>            rawTypeMeta = f.resolveClassMeta(p, getter.getGenericReturnType(), typeVarImpls);<a name="line.267"></a>
-<span class="sourceLineNo">268</span>         isUri |= (rawTypeMeta.isUri() || getter.isAnnotationPresent(org.apache.juneau.annotation.URI.class));<a name="line.268"></a>
-<span class="sourceLineNo">269</span>         if (p != null) {<a name="line.269"></a>
-<span class="sourceLineNo">270</span>            if (swap == null)<a name="line.270"></a>
-<span class="sourceLineNo">271</span>               swap = getPropertyPojoSwap(p);<a name="line.271"></a>
-<span class="sourceLineNo">272</span>            if (properties != null &amp;&amp; ! p.properties().isEmpty())<a name="line.272"></a>
-<span class="sourceLineNo">273</span>               properties = StringUtils.split(p.properties(), ',');<a name="line.273"></a>
-<span class="sourceLineNo">274</span>            bdClasses.addAll(Arrays.asList(p.beanDictionary()));<a name="line.274"></a>
-<span class="sourceLineNo">275</span>         }<a name="line.275"></a>
-<span class="sourceLineNo">276</span>      }<a name="line.276"></a>
-<span class="sourceLineNo">277</span><a name="line.277"></a>
-<span class="sourceLineNo">278</span>      if (setter != null) {<a name="line.278"></a>
-<span class="sourceLineNo">279</span>         BeanProperty p = setter.getAnnotation(BeanProperty.class);<a name="line.279"></a>
-<span class="sourceLineNo">280</span>         if (rawTypeMeta == null)<a name="line.280"></a>
-<span class="sourceLineNo">281</span>            rawTypeMeta = f.resolveClassMeta(p, setter.getGenericParameterTypes()[0], typeVarImpls);<a name="line.281"></a>
-<span class="sourceLineNo">282</span>         isUri |= (rawTypeMeta.isUri() || setter.isAnnotationPresent(org.apache.juneau.annotation.URI.class));<a name="line.282"></a>
-<span class="sourceLineNo">283</span>         if (p != null) {<a name="line.283"></a>
-<span class="sourceLineNo">284</span>         if (swap == null)<a name="line.284"></a>
-<span class="sourceLineNo">285</span>            swap = getPropertyPojoSwap(p);<a name="line.285"></a>
-<span class="sourceLineNo">286</span>            if (properties != null &amp;&amp; ! p.properties().isEmpty())<a name="line.286"></a>
-<span class="sourceLineNo">287</span>               properties = StringUtils.split(p.properties(), ',');<a name="line.287"></a>
-<span class="sourceLineNo">288</span>            bdClasses.addAll(Arrays.asList(p.beanDictionary()));<a name="line.288"></a>
-<span class="sourceLineNo">289</span>         }<a name="line.289"></a>
-<span class="sourceLineNo">290</span>      }<a name="line.290"></a>
-<span class="sourceLineNo">291</span><a name="line.291"></a>
-<span class="sourceLineNo">292</span>      if (rawTypeMeta == null)<a name="line.292"></a>
-<span class="sourceLineNo">293</span>         return false;<a name="line.293"></a>
-<span class="sourceLineNo">294</span><a name="line.294"></a>
-<span class="sourceLineNo">295</span>      this.beanRegistry = new BeanRegistry(beanContext, parentBeanRegistry, bdClasses.toArray(new Class&lt;?&gt;[0]));<a name="line.295"></a>
-<span class="sourceLineNo">296</span><a name="line.296"></a>
-<span class="sourceLineNo">297</span>      // Do some annotation validation.<a name="line.297"></a>
-<span class="sourceLineNo">298</span>      Class&lt;?&gt; c = rawTypeMeta.getInnerClass();<a name="line.298"></a>
-<span class="sourceLineNo">299</span>      if (getter != null &amp;&amp; ! isParentClass(getter.getReturnType(), c))<a name="line.299"></a>
-<span class="sourceLineNo">300</span>         return false;<a name="line.300"></a>
-<span class="sourceLineNo">301</span>      if (setter != null &amp;&amp; ! isParentClass(setter.getParameterTypes()[0], c))<a name="line.301"></a>
-<span class="sourceLineNo">302</span>         return false;<a name="line.302"></a>
-<span class="sourceLineNo">303</span>      if (field != null &amp;&amp; ! isParentClass(field.getType(), c))<a name="line.303"></a>
-<span class="sourceLineNo">304</span>         return false;<a name="line.304"></a>
-<span class="sourceLineNo">305</span><a name="line.305"></a>
-<span class="sourceLineNo">306</span>      return true;<a name="line.306"></a>
-<span class="sourceLineNo">307</span>   }<a name="line.307"></a>
-<span class="sourceLineNo">308</span><a name="line.308"></a>
-<span class="sourceLineNo">309</span>   private PojoSwap getPropertyPojoSwap(BeanProperty p) throws Exception {<a name="line.309"></a>
-<span class="sourceLineNo">310</span>      Class&lt;?&gt; c = p.swap();<a name="line.310"></a>
-<span class="sourceLineNo">311</span>      if (c == Null.class)<a name="line.311"></a>
-<span class="sourceLineNo">312</span>         return null;<a name="line.312"></a>
-<span class="sourceLineNo">313</span>      try {<a name="line.313"></a>
-<span class="sourceLineNo">314</span>         if (ClassUtils.isParentClass(PojoSwap.class, c)) {<a name="line.314"></a>
-<span class="sourceLineNo">315</span>            return (PojoSwap)c.newInstance();<a name="line.315"></a>
-<span class="sourceLineNo">316</span>         }<a name="line.316"></a>
-<span class="sourceLineNo">317</span>         throw new RuntimeException("TODO - Surrogate swaps not yet supported.");<a name="line.317"></a>
-<span class="sourceLineNo">318</span>      } catch (Exception e) {<a name="line.318"></a>
-<span class="sourceLineNo">319</span>         throw new BeanRuntimeException(this.beanMeta.c, "Could not instantiate PojoSwap ''{0}'' for bean property ''{1}''", c.getName(), this.name).initCause(e);<a name="line.319"></a>
-<span class="sourceLineNo">320</span>      }<a name="line.320"></a>
-<span class="sourceLineNo">321</span>   }<a name="line.321"></a>
-<span class="sourceLineNo">322</span><a name="line.322"></a>
-<span class="sourceLineNo">323</span>   /**<a name="line.323"></a>
-<span class="sourceLineNo">324</span>    * Equivalent to calling {@link BeanMap#get(Object)}, but is faster since it avoids looking up the property meta.<a name="line.324"></a>
-<span class="sourceLineNo">325</span>    *<a name="line.325"></a>
-<span class="sourceLineNo">326</span>    * @param m The bean map to get the transformed value from.<a name="line.326"></a>
-<span class="sourceLineNo">327</span>    * @return The property value.<a name="line.327"></a>
-<span class="sourceLineNo">328</span>    */<a name="line.328"></a>
-<span class="sourceLineNo">329</span>   public Object get(BeanMap&lt;?&gt; m) {<a name="line.329"></a>
-<span class="sourceLineNo">330</span>      try {<a name="line.330"></a>
-<span class="sourceLineNo">331</span>         // Read-only beans have their properties stored in a cache until getBean() is called.<a name="line.331"></a>
-<span class="sourceLineNo">332</span>         Object bean = m.bean;<a name="line.332"></a>
-<span class="sourceLineNo">333</span>         if (bean == null)<a name="line.333"></a>
-<span class="sourceLineNo">334</span>            return m.propertyCache.get(name);<a name="line.334"></a>
-<span class="sourceLineNo">335</span><a name="line.335"></a>
-<span class="sourceLineNo">336</span>         Object o = null;<a name="line.336"></a>
-<span class="sourceLineNo">337</span><a name="line.337"></a>
-<span class="sourceLineNo">338</span>         if (getter == null &amp;&amp; field == null)<a name="line.338"></a>
-<span class="sourceLineNo">339</span>            throw new BeanRuntimeException(beanMeta.c, "Getter or public field not defined on property ''{0}''", name);<a name="line.339"></a>
-<span class="sourceLineNo">340</span><a name="line.340"></a>
-<span class="sourceLineNo">341</span>         if (getter != null)<a name="line.341"></a>
-<span class="sourceLineNo">342</span>            o = getter.invoke(bean, (Object[])null);<a name="line.342"></a>
-<span class="sourceLineNo">343</span><a name="line.343"></a>
-<span class="sourceLineNo">344</span>         else if (field != null)<a name="line.344"></a>
-<span class="sourceLineNo">345</span>            o = field.get(bean);<a name="line.345"></a>
-<span class="sourceLineNo">346</span><a name="line.346"></a>
-<span class="sourceLineNo">347</span>         return toSerializedForm(m.getBeanSession(), o);<a name="line.347"></a>
-<span class="sourceLineNo">348</span><a name="line.348"></a>
-<span class="sourceLineNo">349</span>      } catch (Throwable e) {<a name="line.349"></a>
-<span class="sourceLineNo">350</span>         if (beanContext.ignoreInvocationExceptionsOnGetters) {<a name="line.350"></a>
-<span class="sourceLineNo">351</span>            if (rawTypeMeta.isPrimitive())<a name="line.351"></a>
-<span class="sourceLineNo">352</span>               return rawTypeMeta.getPrimitiveDefault();<a name="line.352"></a>
-<span class="sourceLineNo">353</span>            return null;<a name="line.353"></a>
-<span class="sourceLineNo">354</span>         }<a name="line.354"></a>
-<span class="sourceLineNo">355</span>         throw new BeanRuntimeException(beanMeta.c, "Exception occurred while getting property ''{0}''", name).initCause(e);<a name="line.355"></a>
-<span class="sourceLineNo">356</span>      }<a name="line.356"></a>
-<span class="sourceLineNo">357</span>   }<a name="line.357"></a>
-<span class="sourceLineNo">358</span><a name="line.358"></a>
-<span class="sourceLineNo">359</span>   /**<a name="line.359"></a>
-<span class="sourceLineNo">360</span>    * Converts a raw bean property value to serialized form.<a name="line.360"></a>
-<span class="sourceLineNo">361</span>    * Applies transforms and child property filters.<a name="line.361"></a>
-<span class="sourceLineNo">362</span>    */<a name="line.362"></a>
-<span class="sourceLineNo">363</span>   final Object toSerializedForm(BeanSession session, Object o) {<a name="line.363"></a>
-<span class="sourceLineNo">364</span>      try {<a name="line.364"></a>
-<span class="sourceLineNo">365</span>         o = transform(session, o);<a name="line.365"></a>
-<span class="sourceLineNo">366</span>         if (o == null)<a name="line.366"></a>
-<span class="sourceLineNo">367</span>            return null;<a name="line.367"></a>
-<span class="sourceLineNo">368</span>         if (properties != null) {<a name="line.368"></a>
-<span class="sourceLineNo">369</span>            if (rawTypeMeta.isArray()) {<a name="line.369"></a>
-<span class="sourceLineNo">370</span>               Object[] a = (Object[])o;<a name="line.370"></a>
-<span class="sourceLineNo">371</span>               List l = new DelegateList(rawTypeMeta);<a name="line.371"></a>
-<span class="sourceLineNo">372</span>               ClassMeta childType = rawTypeMeta.getElementType();<a name="line.372"></a>
-<span class="sourceLineNo">373</span>               for (Object c : a)<a name="line.373"></a>
-<span class="sourceLineNo">374</span>                  l.add(applyChildPropertiesFilter(session, childType, c));<a name="line.374"></a>
-<span class="sourceLineNo">375</span>               return l;<a name="line.375"></a>
-<span class="sourceLineNo">376</span>            } else if (rawTypeMeta.isCollection()) {<a name="line.376"></a>
-<span class="sourceLineNo">377</span>               Collection c = (Collection)o;<a name="line.377"></a>
-<span class="sourceLineNo">378</span>               List l = new ArrayList(c.size());<a name="line.378"></a>
-<span class="sourceLineNo">379</span>               ClassMeta childType = rawTypeMeta.getElementType();<a name="line.379"></a>
-<span class="sourceLineNo">380</span>               for (Object cc : c)<a name="line.380"></a>
-<span class="sourceLineNo">381</span>                  l.add(applyChildPropertiesFilter(session, childType, cc));<a name="line.381"></a>
-<span class="sourceLineNo">382</span>               return l;<a name="line.382"></a>
-<span class="sourceLineNo">383</span>            } else {<a name="line.383"></a>
-<span class="sourceLineNo">384</span>               return applyChildPropertiesFilter(session, rawTypeMeta, o);<a name="line.384"></a>
-<span class="sourceLineNo">385</span>            }<a name="line.385"></a>
-<span class="sourceLineNo">386</span>         }<a name="line.386"></a>
-<span class="sourceLineNo">387</span>         return o;<a name="line.387"></a>
-<span class="sourceLineNo">388</span>      } catch (SerializeException e) {<a name="line.388"></a>
-<span class="sourceLineNo">389</span>         throw new BeanRuntimeException(e);<a name="line.389"></a>
-<span class="sourceLineNo">390</span>      }<a name="line.390"></a>
-<span class="sourceLineNo">391</span>   }<a name="line.391"></a>
-<span class="sourceLineNo">392</span><a name="line.392"></a>
-<span class="sourceLineNo">393</span>   /**<a name="line.393"></a>
-<span class="sourceLineNo">394</span>    * Equivalent to calling {@link BeanMap#put(String, Object)}, but is faster since it avoids<a name="line.394"></a>
-<span class="sourceLineNo">395</span>    *    looking up the property meta.<a name="line.395"></a>
-<span class="sourceLineNo">396</span>    *<a name="line.396"></a>
-<span class="sourceLineNo">397</span>    * @param m The bean map to set the property value on.<a name="line.397"></a>
-<span class="sourceLineNo">398</span>    * @param value The value to set.<a name="line.398"></a>
-<span class="sourceLineNo">399</span>    * @return The previous property value.<a name="line.399"></a>
-<span class="sourceLineNo">400</span>    * @throws BeanRuntimeException If property could not be set.<a name="line.400"></a>
-<span class="sourceLineNo">401</span>    */<a name="line.401"></a>
-<span class="sourceLineNo">402</span>   public Object set(BeanMap&lt;?&gt; m, Object value) throws BeanRuntimeException {<a name="line.402"></a>
-<span class="sourceLineNo">403</span>      try {<a name="line.403"></a>
-<span class="sourceLineNo">404</span><a name="line.404"></a>
-<span class="sourceLineNo">405</span>         BeanSession session = m.getBeanSession();<a name="line.405"></a>
-<span class="sourceLineNo">406</span><a name="line.406"></a>
-<span class="sourceLineNo">407</span>         // Comvert to raw form.<a name="line.407"></a>
-<span class="sourceLineNo">408</span>         value = unswap(session, value);<a name="line.408"></a>
-<span class="sourceLineNo">409</span><a name="line.409"></a>
-<span class="sourceLineNo">410</span>         if (m.bean == null) {<a name="line.410"></a>
-<span class="sourceLineNo">411</span><a name="line.411"></a>
-<span class="sourceLineNo">412</span>            // If this bean has subtypes, and we haven't set the subtype yet,<a name="line.412"></a>
-<span class="sourceLineNo">413</span>            // store the property in a temporary cache until the bean can be instantiated.<a name="line.413"></a>
-<span class="sourceLineNo">414</span>            if (m.meta.subTypeProperty != null &amp;&amp; m.propertyCache == null)<a name="line.414"></a>
-<span class="sourceLineNo">415</span>               m.propertyCache = new TreeMap&lt;String,Object&gt;();<a name="line.415"></a>
-<span class="sourceLineNo">416</span><a name="line.416"></a>
-<span class="sourceLineNo">417</span>            // Read-only beans get their properties stored in a cache.<a name="line.417"></a>
-<span class="sourceLineNo">418</span>            if (m.propertyCache != null)<a name="line.418"></a>
-<span class="sourceLineNo">419</span>               return m.propertyCache.put(name, value);<a name="line.419"></a>
-<span class="sourceLineNo">420</span><a name="line.420"></a>
-<span class="sourceLineNo">421</span>            throw new BeanRuntimeException("Non-existent bean instance on bean.");<a name="line.421"></a>
-<span class="sourceLineNo">422</span>         }<a name="line.422"></a>
-<span class="sourceLineNo">423</span><a name="line.423"></a>
-<span class="sourceLineNo">424</span>            boolean isMap = rawTypeMeta.isMap();<a name="line.424"></a>
-<span class="sourceLineNo">425</span>            boolean isCollection = rawTypeMeta.isCollection();<a name="line.425"></a>
-<span class="sourceLineNo">426</span><a name="line.426"></a>
-<span class="sourceLineNo">427</span>         if (field == null &amp;&amp; setter == null &amp;&amp; ! (isMap || isCollection)) {<a name="line.427"></a>
-<span class="sourceLineNo">428</span>            if ((value == null &amp;&amp; beanContext.ignoreUnknownNullBeanProperties) || beanContext.ignorePropertiesWithoutSetters)<a name="line.428"></a>
-<span class="sourceLineNo">429</span>               return null;<a name="line.429"></a>
-<span class="sourceLineNo">430</span>            throw new BeanRuntimeException(beanMeta.c, "Setter or public field not defined on property ''{0}''", name);<a name="line.430"></a>
-<span class="sourceLineNo">431</span>         }<a name="line.431"></a>
-<span class="sourceLineNo">432</span><a name="line.432"></a>
-<span class="sourceLineNo">433</span>         Object bean = m.getBean(true);  // Don't use getBean() because it triggers array creation!<a name="line.433"></a>
+<span class="sourceLineNo">252</span>   /**<a name="line.252"></a>
+<span class="sourceLineNo">253</span>    * Returns the name of this bean property.<a name="line.253"></a>
+<span class="sourceLineNo">254</span>    *<a name="line.254"></a>
+<span class="sourceLineNo">255</span>    * @return The name of the bean property.<a name="line.255"></a>
+<span class="sourceLineNo">256</span>    */<a name="line.256"></a>
+<span class="sourceLineNo">257</span>   public String getName() {<a name="line.257"></a>
+<span class="sourceLineNo">258</span>      return name;<a name="line.258"></a>
+<span class="sourceLineNo">259</span>   }<a name="line.259"></a>
+<span class="sourceLineNo">260</span><a name="line.260"></a>
+<span class="sourceLineNo">261</span>   /**<a name="line.261"></a>
+<span class="sourceLineNo">262</span>    * Returns the bean meta that this property belongs to.<a name="line.262"></a>
+<span class="sourceLineNo">263</span>    *<a name="line.263"></a>
+<span class="sourceLineNo">264</span>    * @return The bean meta that this property belongs to.<a name="line.264"></a>
+<span class="sourceLineNo">265</span>    */<a name="line.265"></a>
+<span class="sourceLineNo">266</span>   @BeanIgnore<a name="line.266"></a>
+<span class="sourceLineNo">267</span>   public BeanMeta&lt;?&gt; getBeanMeta() {<a name="line.267"></a>
+<span class="sourceLineNo">268</span>      return beanMeta;<a name="line.268"></a>
+<span class="sourceLineNo">269</span>   }<a name="line.269"></a>
+<span class="sourceLineNo">270</span><a name="line.270"></a>
+<span class="sourceLineNo">271</span>   /**<a name="line.271"></a>
+<span class="sourceLineNo">272</span>    * Returns the getter method for this property.<a name="line.272"></a>
+<span class="sourceLineNo">273</span>    *<a name="line.273"></a>
+<span class="sourceLineNo">274</span>    * @return The getter method for this bean property, or &lt;jk&gt;null&lt;/jk&gt; if there is no getter method.<a name="line.274"></a>
+<span class="sourceLineNo">275</span>    */<a name="line.275"></a>
+<span class="sourceLineNo">276</span>   public Method getGetter() {<a name="line.276"></a>
+<span class="sourceLineNo">277</span>      return getter;<a name="line.277"></a>
+<span class="sourceLineNo">278</span>   }<a name="line.278"></a>
+<span class="sourceLineNo">279</span><a name="line.279"></a>
+<span class="sourceLineNo">280</span>   /**<a name="line.280"></a>
+<span class="sourceLineNo">281</span>    * Returns the setter method for this property.<a name="line.281"></a>
+<span class="sourceLineNo">282</span>    *<a name="line.282"></a>
+<span class="sourceLineNo">283</span>    * @return The setter method for this bean property, or &lt;jk&gt;null&lt;/jk&gt; if there is no setter method.<a name="line.283"></a>
+<span class="sourceLineNo">284</span>    */<a name="line.284"></a>
+<span class="sourceLineNo">285</span>   public Method getSetter() {<a name="line.285"></a>
+<span class="sourceLineNo">286</span>      return setter;<a name="line.286"></a>
+<span class="sourceLineNo">287</span>   }<a name="line.287"></a>
+<span class="sourceLineNo">288</span><a name="line.288"></a>
+<span class="sourceLineNo">289</span>   /**<a name="line.289"></a>
+<span class="sourceLineNo">290</span>    * Returns the field for this property.<a name="line.290"></a>
+<span class="sourceLineNo">291</span>    *<a name="line.291"></a>
+<span class="sourceLineNo">292</span>    * @return The field for this bean property, or &lt;jk&gt;null&lt;/jk&gt; if there is no field associated with this bean property.<a name="line.292"></a>
+<span class="sourceLineNo">293</span>    */<a name="line.293"></a>
+<span class="sourceLineNo">294</span>   public Field getField() {<a name="line.294"></a>
+<span class="sourceLineNo">295</span>      return field;<a name="line.295"></a>
+<span class="sourceLineNo">296</span>   }<a name="line.296"></a>
+<span class="sourceLineNo">297</span><a name="line.297"></a>
+<span class="sourceLineNo">298</span>   /**<a name="line.298"></a>
+<span class="sourceLineNo">299</span>    * Returns the {@link ClassMeta} of the class of this property.<a name="line.299"></a>
+<span class="sourceLineNo">300</span>    * &lt;p&gt;<a name="line.300"></a>
+<span class="sourceLineNo">301</span>    * If this property or the property type class has a {@link PojoSwap} associated with it, this<a name="line.301"></a>
+<span class="sourceLineNo">302</span>    *    method returns the transformed class meta.<a name="line.302"></a>
+<span class="sourceLineNo">303</span>    * This matches the class type that is used by the {@link #get(BeanMap)} and {@link #set(BeanMap, Object)} methods.<a name="line.303"></a>
+<span class="sourceLineNo">304</span>    *<a name="line.304"></a>
+<span class="sourceLineNo">305</span>    * @return The {@link ClassMeta} of the class of this property.<a name="line.305"></a>
+<span class="sourceLineNo">306</span>    */<a name="line.306"></a>
+<span class="sourceLineNo">307</span>   public ClassMeta&lt;?&gt; getClassMeta() {<a name="line.307"></a>
+<span class="sourceLineNo">308</span>      return typeMeta;<a name="line.308"></a>
+<span class="sourceLineNo">309</span>   }<a name="line.309"></a>
+<span class="sourceLineNo">310</span><a name="line.310"></a>
+<span class="sourceLineNo">311</span>   /**<a name="line.311"></a>
+<span class="sourceLineNo">312</span>    * Returns the bean dictionary in use for this bean property.<a name="line.312"></a>
+<span class="sourceLineNo">313</span>    * The order of lookup for the dictionary is as follows:<a name="line.313"></a>
+<span class="sourceLineNo">314</span>    * &lt;ol&gt;<a name="line.314"></a>
+<span class="sourceLineNo">315</span>    *    &lt;li&gt;Dictionary defined via {@link BeanProperty#beanDictionary()}.<a name="line.315"></a>
+<span class="sourceLineNo">316</span>    *    &lt;li&gt;Dictionary defined via {@link BeanContext#BEAN_beanDictionary} context property.<a name="line.316"></a>
+<span class="sourceLineNo">317</span>    * &lt;/ol&gt;<a name="line.317"></a>
+<span class="sourceLineNo">318</span>    * @return The bean dictionary in use for this bean property.  Never &lt;jk&gt;null&lt;/jk&gt;.<a name="line.318"></a>
+<span class="sourceLineNo">319</span>    */<a name="line.319"></a>
+<span class="sourceLineNo">320</span>   public BeanRegistry getBeanRegistry() {<a name="line.320"></a>
+<span class="sourceLineNo">321</span>      return beanRegistry;<a name="line.321"></a>
+<span class="sourceLineNo">322</span>   }<a name="line.322"></a>
+<span class="sourceLineNo">323</span><a name="line.323"></a>
+<span class="sourceLineNo">324</span>   /**<a name="line.324"></a>
+<span class="sourceLineNo">325</span>    * Returns &lt;jk&gt;true&lt;/jk&gt; if this bean property is a URI.<a name="line.325"></a>
+<span class="sourceLineNo">326</span>    * &lt;p&gt;<a name="line.326"></a>
+<span class="sourceLineNo">327</span>    * A bean property can be considered a URI if any of the following are true:<a name="line.327"></a>
+<span class="sourceLineNo">328</span>    * &lt;ul class='spaced-list'&gt;<a name="line.328"></a>
+<span class="sourceLineNo">329</span>    *    &lt;li&gt;Property class type is {@link URL} or {@link URI}.<a name="line.329"></a>
+<span class="sourceLineNo">330</span>    *    &lt;li&gt;Property class type is annotated with {@link org.apache.juneau.annotation.URI}.<a name="line.330"></a>
+<span class="sourceLineNo">331</span>    *    &lt;li&gt;Property getter, setter, or field is annotated with {@link org.apache.juneau.annotation.URI}.<a name="line.331"></a>
+<span class="sourceLineNo">332</span>    * &lt;/ul&gt;<a name="line.332"></a>
+<span class="sourceLineNo">333</span>    *<a name="line.333"></a>
+<span class="sourceLineNo">334</span>    * @return &lt;jk&gt;true&lt;/jk&gt; if this bean property is a URI.<a name="line.334"></a>
+<span class="sourceLineNo">335</span>    */<a name="line.335"></a>
+<span class="sourceLineNo">336</span>   public boolean isUri() {<a name="line.336"></a>
+<span class="sourceLineNo">337</span>      return isUri;<a name="line.337"></a>
+<span class="sourceLineNo">338</span>   }<a name="line.338"></a>
+<span class="sourceLineNo">339</span><a name="line.339"></a>
+<span class="sourceLineNo">340</span>   /**<a name="line.340"></a>
+<span class="sourceLineNo">341</span>    * Returns the override list of properties defined through a {@link BeanProperty#properties()} annotation<a name="line.341"></a>
+<span class="sourceLineNo">342</span>    *  on this property.<a name="line.342"></a>
+<span class="sourceLineNo">343</span>    *<a name="line.343"></a>
+<span class="sourceLineNo">344</span>    * @return The list of override properties, or &lt;jk&gt;null&lt;/jk&gt; if annotation not specified.<a name="line.344"></a>
+<span class="sourceLineNo">345</span>    */<a name="line.345"></a>
+<span class="sourceLineNo">346</span>   public String[] getProperties() {<a name="line.346"></a>
+<span class="sourceLineNo">347</span>      return properties;<a name="line.347"></a>
+<span class="sourceLineNo">348</span>   }<a name="line.348"></a>
+<span class="sourceLineNo">349</span><a name="line.349"></a>
+<span class="sourceLineNo">350</span>   /**<a name="line.350"></a>
+<span class="sourceLineNo">351</span>    * Returns the language-specified extended metadata on this bean property.<a name="line.351"></a>
+<span class="sourceLineNo">352</span>    *<a name="line.352"></a>
+<span class="sourceLineNo">353</span>    * @param c The name of the metadata class to create.<a name="line.353"></a>
+<span class="sourceLineNo">354</span>    * @return Extended metadata on this bean property.  Never &lt;jk&gt;null&lt;/jk&gt;.<a name="line.354"></a>
+<span class="sourceLineNo">355</span>    */<a name="line.355"></a>
+<span class="sourceLineNo">356</span>   public &lt;M extends BeanPropertyMetaExtended&gt; M getExtendedMeta(Class&lt;M&gt; c) {<a name="line.356"></a>
+<span class="sourceLineNo">357</span>      if (delegateFor != null)<a name="line.357"></a>
+<span class="sourceLineNo">358</span>         return delegateFor.getExtendedMeta(c);<a name="line.358"></a>
+<span class="sourceLineNo">359</span>      return extMeta.get(c, this);<a name="line.359"></a>
+<span class="sourceLineNo">360</span>   }<a name="line.360"></a>
+<span class="sourceLineNo">361</span><a name="line.361"></a>
+<span class="sourceLineNo">362</span>   /**<a name="line.362"></a>
+<span class="sourceLineNo">363</span>    * Equivalent to calling {@link BeanMap#get(Object)}, but is faster since it avoids looking up the property meta.<a name="line.363"></a>
+<span class="sourceLineNo">364</span>    *<a name="line.364"></a>
+<span class="sourceLineNo">365</span>    * @param m The bean map to get the transformed value from.<a name="line.365"></a>
+<span class="sourceLineNo">366</span>    * @return The property value.<a name="line.366"></a>
+<span class="sourceLineNo">367</span>    */<a name="line.367"></a>
+<span class="sourceLineNo">368</span>   public Object get(BeanMap&lt;?&gt; m) {<a name="line.368"></a>
+<span class="sourceLineNo">369</span>      try {<a name="line.369"></a>
+<span class="sourceLineNo">370</span>         if (overrideValue != null)<a name="line.370"></a>
+<span class="sourceLineNo">371</span>            return overrideValue;<a name="line.371"></a>
+<span class="sourceLineNo">372</span><a name="line.372"></a>
+<span class="sourceLineNo">373</span>         // Read-only beans have their properties stored in a cache until getBean() is called.<a name="line.373"></a>
+<span class="sourceLineNo">374</span>         Object bean = m.bean;<a name="line.374"></a>
+<span class="sourceLineNo">375</span>         if (bean == null)<a name="line.375"></a>
+<span class="sourceLineNo">376</span>            return m.propertyCache.get(name);<a name="line.376"></a>
+<span class="sourceLineNo">377</span><a name="line.377"></a>
+<span class="sourceLineNo">378</span>         Object o = null;<a name="line.378"></a>
+<span class="sourceLineNo">379</span><a name="line.379"></a>
+<span class="sourceLineNo">380</span>         if (getter == null &amp;&amp; field == null)<a name="line.380"></a>
+<span class="sourceLineNo">381</span>            throw new BeanRuntimeException(beanMeta.c, "Getter or public field not defined on property ''{0}''", name);<a name="line.381"></a>
+<span class="sourceLineNo">382</span><a name="line.382"></a>
+<span class="sourceLineNo">383</span>         if (getter != null)<a name="line.383"></a>
+<span class="sourceLineNo">384</span>            o = getter.invoke(bean, (Object[])null);<a name="line.384"></a>
+<span class="sourceLineNo">385</span><a name="line.385"></a>
+<span class="sourceLineNo">386</span>         else if (field != null)<a name="line.386"></a>
+<span class="sourceLineNo">387</span>            o = field.get(bean);<a name="line.387"></a>
+<span class="sourceLineNo">388</span><a name="line.388"></a>
+<span class="sourceLineNo">389</span>         return toSerializedForm(m.getBeanSession(), o);<a name="line.389"></a>
+<span class="sourceLineNo">390</span><a name="line.390"></a>
+<span class="sourceLineNo">391</span>      } catch (Throwable e) {<a name="line.391"></a>
+<span class="sourceLineNo">392</span>         if (beanContext.ignoreInvocationExceptionsOnGetters) {<a name="line.392"></a>
+<span class="sourceLineNo">393</span>            if (rawTypeMeta.isPrimitive())<a name="line.393"></a>
+<span class="sourceLineNo">394</span>               return rawTypeMeta.getPrimitiveDefault();<a name="line.394"></a>
+<span class="sourceLineNo">395</span>            return null;<a name="line.395"></a>
+<span class="sourceLineNo">396</span>         }<a name="line.396"></a>
+<span class="sourceLineNo">397</span>         throw new BeanRuntimeException(beanMeta.c, "Exception occurred while getting property ''{0}''", name).initCause(e);<a name="line.397"></a>
+<span class="sourceLineNo">398</span>      }<a name="line.398"></a>
+<span class="sourceLineNo">399</span>   }<a name="line.399"></a>
+<span class="sourceLineNo">400</span><a name="line.400"></a>
+<span class="sourceLineNo">401</span>   /**<a name="line.401"></a>
+<span class="sourceLineNo">402</span>    * Converts a raw bean property value to serialized form.<a name="line.402"></a>
+<span class="sourceLineNo">403</span>    * Applies transforms and child property filters.<a name="line.403"></a>
+<span class="sourceLineNo">404</span>    */<a name="line.404"></a>
+<span class="sourceLineNo">405</span>   final Object toSerializedForm(BeanSession session, Object o) {<a name="line.405"></a>
+<span class="sourceLineNo">406</span>      try {<a name="line.406"></a>
+<span class="sourceLineNo">407</span>         o = transform(session, o);<a name="line.407"></a>
+<span class="sourceLineNo">408</span>         if (o == null)<a name="line.408"></a>
+<span class="sourceLineNo">409</span>            return null;<a name="line.409"></a>
+<span class="sourceLineNo">410</span>         if (properties != null) {<a name="line.410"></a>
+<span class="sourceLineNo">411</span>            if (rawTypeMeta.isArray()) {<a name="line.411"></a>
+<span class="sourceLineNo">412</span>               Object[] a = (Object[])o;<a name="line.412"></a>
+<span class="sourceLineNo">413</span>               List l = new DelegateList(rawTypeMeta);<a name="line.413"></a>
+<span class="sourceLineNo">414</span>               ClassMeta childType = rawTypeMeta.getElementType();<a name="line.414"></a>
+<span class="sourceLineNo">415</span>               for (Object c : a)<a name="line.415"></a>
+<span class="sourceLineNo">416</span>                  l.add(applyChildPropertiesFilter(session, childType, c));<a name="line.416"></a>
+<span class="sourceLineNo">417</span>               return l;<a name="line.417"></a>
+<span class="sourceLineNo">418</span>            } else if (rawTypeMeta.isCollection()) {<a name="line.418"></a>
+<span class="sourceLineNo">419</span>               Collection c = (Collection)o;<a name="line.419"></a>
+<span class="sourceLineNo">420</span>               List l = new ArrayList(c.size());<a name="line.420"></a>
+<span class="sourceLineNo">421</span>               ClassMeta childType = rawTypeMeta.getElementType();<a name="line.421"></a>
+<span class="sourceLineNo">422</span>               for (Object cc : c)<a name="line.422"></a>
+<span class="sourceLineNo">423</span>                  l.add(applyChildPropertiesFilter(session, childType, cc));<a name="line.423"></a>
+<span class="sourceLineNo">424</span>               return l;<a name="line.424"></a>
+<span class="sourceLineNo">425</span>            } else {<a name="line.425"></a>
+<span class="sourceLineNo">426</span>               return applyChildPropertiesFilter(session, rawTypeMeta, o);<a name="line.426"></a>
+<span class="sourceLineNo">427</span>            }<a name="line.427"></a>
+<span class="sourceLineNo">428</span>         }<a name="line.428"></a>
+<span class="sourceLineNo">429</span>         return o;<a name="line.429"></a>
+<span class="sourceLineNo">430</span>      } catch (SerializeException e) {<a name="line.430"></a>
+<span class="sourceLineNo">431</span>         throw new BeanRuntimeException(e);<a name="line.431"></a>
+<span class="sourceLineNo">432</span>      }<a name="line.432"></a>
+<span class="sourceLineNo">433</span>   }<a name="line.433"></a>
 <span class="sourceLineNo">434</span><a name="line.434"></a>
-<span class="sourceLineNo">435</span>         try {<a name="line.435"></a>
-<span class="sourceLineNo">436</span><a name="line.436"></a>
-<span class="sourceLineNo">437</span>            Object r = beanContext.beanMapPutReturnsOldValue || isMap || isCollection ? get(m) : null;<a name="line.437"></a>
-<span class="sourceLineNo">438</span>               Class&lt;?&gt; propertyClass = rawTypeMeta.getInnerClass();<a name="line.438"></a>
-<span class="sourceLineNo">439</span><a name="line.439"></a>
-<span class="sourceLineNo">440</span>            if (value == null &amp;&amp; (isMap || isCollection)) {<a name="line.440"></a>
-<span class="sourceLineNo">441</span>               if (setter != null) {<a name="line.441"></a>
-<span class="sourceLineNo">442</span>                  setter.invoke(bean, new Object[] { null });<a name="line.442"></a>
-<span class="sourceLineNo">443</span>                  return r;<a name="line.443"></a>
-<span class="sourceLineNo">444</span>               } else if (field != null) {<a name="line.444"></a>
-<span class="sourceLineNo">445</span>                  field.set(bean, null);<a name="line.445"></a>
-<span class="sourceLineNo">446</span>                  return r;<a name="line.446"></a>
-<span class="sourceLineNo">447</span>               }<a name="line.447"></a>
-<span class="sourceLineNo">448</span>               throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' to null because no setter or public field is defined", name);<a name="line.448"></a>
-<span class="sourceLineNo">449</span>            }<a name="line.449"></a>
-<span class="sourceLineNo">450</span><a name="line.450"></a>
-<span class="sourceLineNo">451</span>            if (isMap) {<a name="line.451"></a>
-<span class="sourceLineNo">452</span><a name="line.452"></a>
-<span class="sourceLineNo">453</span>               if (! (value instanceof Map)) {<a name="line.453"></a>
-<span class="sourceLineNo">454</span>                  if (value instanceof CharSequence)<a name="line.454"></a>
-<span class="sourceLineNo">455</span>                     value = new ObjectMap((CharSequence)value).setBeanSession(session);<a name="line.455"></a>
-<span class="sourceLineNo">456</span>                  else<a name="line.456"></a>
-<span class="sourceLineNo">457</span>                     throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}''", name, propertyClass.getName(), findClassName(value));<a name="line.457"></a>
-<span class="sourceLineNo">458</span>               }<a name="line.458"></a>
-<span class="sourceLineNo">459</span><a name="line.459"></a>
-<span class="sourceLineNo">460</span>               Map valueMap = (Map)value;<a name="line.460"></a>
-<span class="sourceLineNo">461</span>               Map propMap = (Map)r;<a name="line.461"></a>
-<span class="sourceLineNo">462</span>                  ClassMeta&lt;?&gt; valueType = rawTypeMeta.getValueType();<a name="line.462"></a>
-<span class="sourceLineNo">463</span><a name="line.463"></a>
-<span class="sourceLineNo">464</span>               // If the property type is abstract, then we either need to reuse the existing<a name="line.464"></a>
-<span class="sourceLineNo">465</span>               // map (if it's not null), or try to assign the value directly.<a name="line.465"></a>
-<span class="sourceLineNo">466</span>                  if (! rawTypeMeta.canCreateNewInstance()) {<a name="line.466"></a>
-<span class="sourceLineNo">467</span>                  if (propMap == null) {<a name="line.467"></a>
-<span class="sourceLineNo">468</span>                     if (setter == null &amp;&amp; field == null)<a name="line.468"></a>
-<span class="sourceLineNo">469</span>                        throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}'' because no setter or public field is defined, and the current value is null", name, propertyClass.getName(), findClassName(value));<a name="line.469"></a>
-<span class="sourceLineNo">470</span><a name="line.470"></a>
-<span class="sourceLineNo">471</span>                     if (propertyClass.isInstance(valueMap)) {<a name="line.471"></a>
-<span class="sourceLineNo">472</span>                        if (! valueType.isObject()) {<a name="line.472"></a>
-<span class="sourceLineNo">473</span>                           for (Map.Entry e : (Set&lt;Map.Entry&gt;)valueMap.entrySet()) {<a name="line.473"></a>
-<span class="sourceLineNo">474</span>                              Object v = e.getValue();<a name="line.474"></a>
-<span class="sourceLineNo">475</span>                              if (v != null &amp;&amp; ! valueType.getInnerClass().isInstance(v))<a name="line.475"></a>
-<span class="sourceLineNo">476</span>                                 throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}'' because the value types in the assigned map do not match the specified ''elementClass'' attribute on the property, and the property value is currently null", name, propertyClass.getName(), findClassName(value));<a name="line.476"></a>
-<span class="sourceLineNo">477</span>                           }<a name="line.477"></a>
-<span class="sourceLineNo">478</span>                        }<a name="line.478"></a>
-<span class="sourceLineNo">479</span>                        if (setter != null)<a name="line.479"></a>
-<span class="sourceLineNo">480</span>                           setter.invoke(bean, valueMap);<a name="line.480"></a>
-<span class="sourceLineNo">481</span>                        else<a name="line.481"></a>
-<span class="sourceLineNo">482</span>                           field.set(bean, valueMap);<a name="line.482"></a>
-<span class="sourceLineNo">483</span>                        return r;<a name="line.483"></a>
-<span class="sourceLineNo">484</span>                     }<a name="line.484"></a>
-<span class="sourceLineNo">485</span>                     throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{2}'' to object of type ''{2}'' because the assigned map cannot be converted to the specified type because the property type is abstract, and the property value is currently null", name, propertyClass.getName(), findClassName(value));<a name="line.485"></a>
-<span class="sourceLineNo">486</span>                  }<a name="line.486"></a>
-<span class="sourceLineNo">487</span>               } else {<a name="line.487"></a>
-<span class="sourceLineNo">488</span>                  if (propMap == null) {<a name="line.488"></a>
-<span class="sourceLineNo">489</span>                     propMap = (Map)propertyClass.newInstance();<a name="line.489"></a>
-<span class="sourceLineNo">490</span>                     if (setter != null)<a name="line.490"></a>
-<span class="sourceLineNo">491</span>                        setter.invoke(bean, propMap);<a name="line.491"></a>
-<span class="sourceLineNo">492</span>                     else if (field != null)<a name="line.492"></a>
-<span class="sourceLineNo">493</span>                        field.set(bean, propMap);<a name="line.493"></a>
-<span class="sourceLineNo">494</span>                     else<a name="line.494"></a>
-<span class="sourceLineNo">495</span>                        throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}'' because no setter or public field is defined on this property, and the existing property value is null", name, propertyClass.getName(), findClassName(value));<a name="line.495"></a>
-<span class="sourceLineNo">496</span>                  } else {<a name="line.496"></a>
-<span class="sourceLineNo">497</span>                     propMap.clear();<a name="line.497"></a>
-<span class="sourceLineNo">498</span>                  }<a name="line.498"></a>
-<span class="sourceLineNo">499</span>               }<a name="line.499"></a>
-<span class="sourceLineNo">500</span><a name="line.500"></a>
-<span class="sourceLineNo">501</span>               // Set the values.<a name="line.501"></a>
-<span class="sourceLineNo">502</span>               for (Map.Entry e : (Set&lt;Map.Entry&gt;)valueMap.entrySet()) {<a name="line.502"></a>
-<span class="sourceLineNo">503</span>                  Object k = e.getKey();<a name="line.503"></a>
-<span class="sourceLineNo">504</span>                  Object v = e.getValue();<a name="line.504"></a>
-<span class="sourceLineNo">505</span>                  if (! valueType.isObject())<a name="line.505"></a>
-<span class="sourceLineNo">506</span>                     v = session.convertToType(v, valueType);<a name="line.506"></a>
-<span class="sourceLineNo">507</span>                  propMap.put(k, v);<a name="line.507"></a>
-<span class="sourceLineNo">508</span>               }<a name="line.508"></a>
-<span class="sourceLineNo">509</span><a name="line.509"></a>
-<span class="sourceLineNo">510</span>            } else if (isCollection) {<a name="line.510"></a>
-<span class="sourceLineNo">511</span><a name="line.511"></a>
-<span class="sourceLineNo">512</span>               if (! (value instanceof Collection)) {<a name="line.512"></a>
-<span class="sourceLineNo">513</span>                  if (value instanceof CharSequence)<a name="line.513"></a>
-<span class="sourceLineNo">514</span>                     value = new ObjectList((CharSequence)value).setBeanSession(session);<a name="line.514"></a>
-<span class="sourceLineNo">515</span>                  else<a name="line.515"></a>
-<span class="sourceLineNo">516</span>                     throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}''", name, propertyClass.getName(), findClassName(value));<a name="line.516"></a>
-<span class="sourceLineNo">517</span>               }<a name="line.517"></a>
-<span class="sourceLineNo">518</span><a name="line.518"></a>
-<span class="sourceLineNo">519</span>               Collection valueList = (Collection)value;<a name="line.519"></a>
-<span class="sourceLineNo">520</span>               Collection propList = (Collection)r;<a name="line.520"></a>
-<span class="sourceLineNo">521</span>                  ClassMeta elementType = rawTypeMeta.getElementType();<a name="line.521"></a>
-<span class="sourceLineNo">522</span><a name="line.522"></a>
-<span class="sourceLineNo">523</span>               // If the property type is abstract, then we either need to reuse the existing<a name="line.523"></a>
-<span class="sourceLineNo">524</span>               // collection (if it's not null), or try to assign the value directly.<a name="line.524"></a>
-<span class="sourceLineNo">525</span>                  if (! rawTypeMeta.canCreateNewInstance()) {<a name="line.525"></a>
-<span class="sourceLineNo">526</span>                  if (propList == null) {<a name="line.526"></a>
-<span class="sourceLineNo">527</span>                     if (setter == null &amp;&amp; field == null)<a name="line.527"></a>
-<span class="sourceLineNo">528</span>                        throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}'' because no setter or public field is defined, and the current value is null", name, propertyClass.getName(), findClassName(value));<a name="line.528"></a>
-<span class="sourceLineNo">529</span><a name="line.529"></a>
-<span class="sourceLineNo">530</span>                     if (propertyClass.isInstance(valueList)) {<a name="line.530"></a>
-<span class="sourceLineNo">531</span>                        if (! elementType.isObject()) {<a name="line.531"></a>
-<span class="sourceLineNo">532</span>                              List l = new ObjectList(valueList);<a name="line.532"></a>
-<span class="sourceLineNo">533</span>                              for (ListIterator&lt;Object&gt; i = l.listIterator(); i.hasNext(); ) {<a name="line.533"></a>
-<span class="sourceLineNo">534</span>                                 Object v = i.next();<a name="line.534"></a>
-<span class="sourceLineNo">535</span>                                 if (v != null &amp;&amp; (! elementType.getInnerClass().isInstance(v))) {<a name="line.535"></a>
-<span class="sourceLineNo">536</span>                                    i.set(session.convertToType(v, elementType));<a name="line.536"></a>
-<span class="sourceLineNo">537</span>                                 }<a name="line.537"></a>
-<span class="sourceLineNo">538</span

<TRUNCATED>