This is an automated email from the ASF dual-hosted git repository.

jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git


The following commit(s) were added to refs/heads/master by this push:
     new 4f1c51b  Javadocs
4f1c51b is described below

commit 4f1c51b4f80d24cc3964dfd057651f3bc1b4777b
Author: JamesBognar <[email protected]>
AuthorDate: Mon May 13 20:38:20 2019 -0400

    Javadocs
---
 .../apache/juneau/jena/RdfConfigAnnotationTest.java   |  6 +++---
 .../java/org/apache/juneau/jena/RdfSerializer.java    |  2 +-
 .../org/apache/juneau/jena/RdfSerializerSession.java  |  6 +++---
 juneau-doc/docs/ReleaseNotes/5.0.0.04.html            |  2 +-
 juneau-doc/docs/ReleaseNotes/5.1.0.14.html            |  2 +-
 juneau-doc/docs/ReleaseNotes/5.2.0.0.html             |  2 +-
 juneau-doc/docs/ReleaseNotes/6.0.0.html               |  2 +-
 .../10.Transforms/09.BeanPropertyAnnotation.html      |  2 +-
 .../01.RdfDetails/01.Serializers.html                 |  2 +-
 .../01.RdfDetails/02.Parsers.html                     |  1 -
 .../28.Swagger/08.ResponseExamples.html               |  2 +-
 .../07.juneau-rest-server/29.HtmlDocAnnotation.html   |  2 +-
 .../29.HtmlDocAnnotation/05.Stylesheets.html          |  2 +-
 juneau-doc/src/main/javadoc/overview.html             | 19 +++++++++----------
 .../org/apache/juneau/rest/mock/MockHttpSession.java  |  5 -----
 .../java/org/apache/juneau/rest/mock/MockRest.java    |  6 ------
 .../apache/juneau/rest/mock/MockServletRequest.java   |  5 -----
 .../apache/juneau/rest/mock/MockServletResponse.java  |  5 -----
 18 files changed, 25 insertions(+), 48 deletions(-)

diff --git 
a/juneau-core/juneau-core-test/src/test/java/org/apache/juneau/jena/RdfConfigAnnotationTest.java
 
b/juneau-core/juneau-core-test/src/test/java/org/apache/juneau/jena/RdfConfigAnnotationTest.java
index 5d43e00..a15b623 100644
--- 
a/juneau-core/juneau-core-test/src/test/java/org/apache/juneau/jena/RdfConfigAnnotationTest.java
+++ 
b/juneau-core/juneau-core-test/src/test/java/org/apache/juneau/jena/RdfConfigAnnotationTest.java
@@ -103,7 +103,7 @@ public class RdfConfigAnnotationTest {
                RdfSerializerSession x = 
RdfSerializer.create().applyAnnotations(m, sr).build().createSession();
                check("true", x.isAddBeanTypes());
                check("true", x.isAddLiteralTypes());
-               check("true", x.isAddRootProperty());
+               check("true", x.isAddRootProp());
                check("true", x.isAutoDetectNamespaces());
                check("SEQ", x.getCollectionFormat());
                check("foo:http://foo";, x.getJuneauBpNs());
@@ -189,7 +189,7 @@ public class RdfConfigAnnotationTest {
                RdfSerializerSession x = 
RdfSerializer.create().applyAnnotations(m, sr).build().createSession();
                check("false", x.isAddBeanTypes());
                check("false", x.isAddLiteralTypes());
-               check("false", x.isAddRootProperty());
+               check("false", x.isAddRootProp());
                check("true", x.isAutoDetectNamespaces());
                check("DEFAULT", x.getCollectionFormat());
                check("jp:http://www.apache.org/juneaubp/";, x.getJuneauBpNs());
@@ -273,7 +273,7 @@ public class RdfConfigAnnotationTest {
                RdfSerializerSession x = 
RdfSerializer.create().applyAnnotations(m, sr).build().createSession();
                check("false", x.isAddBeanTypes());
                check("false", x.isAddLiteralTypes());
-               check("false", x.isAddRootProperty());
+               check("false", x.isAddRootProp());
                check("true", x.isAutoDetectNamespaces());
                check("DEFAULT", x.getCollectionFormat());
                check("jp:http://www.apache.org/juneaubp/";, x.getJuneauBpNs());
diff --git 
a/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializer.java
 
b/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializer.java
index 69c18ff..ff3a76d 100644
--- 
a/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializer.java
+++ 
b/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializer.java
@@ -413,7 +413,7 @@ public class RdfSerializer extends WriterSerializer 
implements RdfCommon {
         *      <jk>true</jk> if RDF property 
<code>http://www.apache.org/juneau/root</code> is added with a value of 
<js>"true"</js>
         *      to identify the root node in the graph.
         */
-       protected final boolean isAddRootProperty() {
+       protected final boolean isAddRootProp() {
                return addRootProperty;
        }
 
diff --git 
a/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializerSession.java
 
b/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializerSession.java
index 07ab6e6..ef52ec7 100644
--- 
a/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializerSession.java
+++ 
b/juneau-core/juneau-marshall-rdf/src/main/java/org/apache/juneau/jena/RdfSerializerSession.java
@@ -138,7 +138,7 @@ public final class RdfSerializerSession extends 
WriterSerializerSession {
                                r = n.asResource();
                        }
 
-                       if (isAddRootProperty())
+                       if (isAddRootProp())
                                r.addProperty(pRoot, "true");
                }
 
@@ -511,8 +511,8 @@ public final class RdfSerializerSession extends 
WriterSerializerSession {
         *      <jk>true</jk> if RDF property 
<code>http://www.apache.org/juneau/root</code> is added with a value of 
<js>"true"</js>
         *      to identify the root node in the graph.
         */
-       protected final boolean isAddRootProperty() {
-               return ctx.isAddRootProperty();
+       protected final boolean isAddRootProp() {
+               return ctx.isAddRootProp();
        }
 
        /**
diff --git a/juneau-doc/docs/ReleaseNotes/5.0.0.04.html 
b/juneau-doc/docs/ReleaseNotes/5.0.0.04.html
index a54b546..4bb7a6f 100644
--- a/juneau-doc/docs/ReleaseNotes/5.0.0.04.html
+++ b/juneau-doc/docs/ReleaseNotes/5.0.0.04.html
@@ -20,7 +20,7 @@
 </p>
 <ul class='spaced-list'>
        <li>
-               New {@link oajr.annotation.RestMethod @RestMethod} annoation on 
{@link oajr.RestServlet} methods.<br>
+               New {@link oajr.annotation.RestMethod @RestMethod} annotation 
on {@link oajr.RestServlet} methods.<br>
                Allows the usage of URL pattern matching and automatic 
conversion of URL variables to arguments passed to method handlers.<br>
                See {@link oajr.RestServlet} for more information.
        </li>
diff --git a/juneau-doc/docs/ReleaseNotes/5.1.0.14.html 
b/juneau-doc/docs/ReleaseNotes/5.1.0.14.html
index ac1f2e0..9a90245 100644
--- a/juneau-doc/docs/ReleaseNotes/5.1.0.14.html
+++ b/juneau-doc/docs/ReleaseNotes/5.1.0.14.html
@@ -26,7 +26,7 @@
 <h5 class='topic w800'>Core</h5>               
 <ul class='spaced-list'>
        <li>Simplified {@link oaj.utils.PojoIntrospector} class.
-       <li>New {@link oaj.internal.ClassUtils#getMethodSignature(Method)} 
method.
+       <li>New <code><del>ClassUtils.getMethodSignature(Method)</del></code> 
method.
 </ul>
 
 <h5 class='topic w800'>Client</h5>             
diff --git a/juneau-doc/docs/ReleaseNotes/5.2.0.0.html 
b/juneau-doc/docs/ReleaseNotes/5.2.0.0.html
index 25eac96..14c7435 100644
--- a/juneau-doc/docs/ReleaseNotes/5.2.0.0.html
+++ b/juneau-doc/docs/ReleaseNotes/5.2.0.0.html
@@ -90,7 +90,7 @@
                        <li>{@link oaj.Streamable} interface for identifying 
objects that can be serialized directly to an output stream.
                        <li>{@link oaj.Writable} interface for identifying 
objects that can be serialized directly to a writer.
                        <li><code><del>StringObject</del></code> class that can 
be used for delayed object serialization.
-                       <li>{@link oaj.internal.ByteArrayCache}
+                       <li><code><del>ByteArrayCache</del></code>
                        <li>{@link oaj.internal.ByteArrayInOutStream} 
                        <li>{@link oaj.internal.FileUtils}
                        <li>{@link oaj.internal.ThrowableUtils}
diff --git a/juneau-doc/docs/ReleaseNotes/6.0.0.html 
b/juneau-doc/docs/ReleaseNotes/6.0.0.html
index 07d68c7..4a5bee5 100644
--- a/juneau-doc/docs/ReleaseNotes/6.0.0.html
+++ b/juneau-doc/docs/ReleaseNotes/6.0.0.html
@@ -89,7 +89,7 @@
        <li>Added <ja>@Bean.properties</ja> annotations on various DTO beans to 
make the ordering consistent
                between IBM and Oracle JVMs.<br>
                IBM JVMs maintain the order of methods in a class, whereas 
Oracle JVMs do not.
-       <li>Serializers and parsers now automatically convert {@link 
java.lang.Class} objects to readable names via {@link 
oaj.internal.ClassUtils#getReadableClassName(Class)}.
+       <li>Serializers and parsers now automatically convert {@link 
java.lang.Class} objects to readable names via 
<code><del>ClassUtils.getReadableClassName(Class)</del></code>.
        <li>Eliminated the <code>ClassFilter</code> class since it's no longer 
needed.
        <li>Code and concurrency improvements to {@link 
oaj.serializer.SerializerGroup} and {@link oaj.parser.ParserGroup}.
        <li>Various enhancements to 
<code><del>BeanContext.convertToType(Object,Class)</del></code>.
diff --git 
a/juneau-doc/docs/Topics/02.juneau-marshall/10.Transforms/09.BeanPropertyAnnotation.html
 
b/juneau-doc/docs/Topics/02.juneau-marshall/10.Transforms/09.BeanPropertyAnnotation.html
index 8bdef83..2218eb7 100644
--- 
a/juneau-doc/docs/Topics/02.juneau-marshall/10.Transforms/09.BeanPropertyAnnotation.html
+++ 
b/juneau-doc/docs/Topics/02.juneau-marshall/10.Transforms/09.BeanPropertyAnnotation.html
@@ -30,7 +30,7 @@
        }
 </p>
 <p>
-       The {@link oaj.annoation.Name @Name} annotation is a shortcut for 
specifying a bean property name:
+       The {@link oaj.annotation.Name @Name} annotation is a shortcut for 
specifying a bean property name:
 </p>
 <p class='bpcode w800'>
        <jk>public class</jk> MyBean {
diff --git 
a/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/01.Serializers.html
 
b/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/01.Serializers.html
index 8a86556..e844f13 100644
--- 
a/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/01.Serializers.html
+++ 
b/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/01.Serializers.html
@@ -65,7 +65,6 @@ RDF Serializers
                <li class='jf'>{@link 
oaj.jena.RdfCommon#RDF_rdfxml_showXmlDeclaration RDF_rdfxml_showXmlDeclaration}
                <li class='jf'>{@link oaj.jena.RdfCommon#RDF_rdfxml_tab 
RDF_rdfxml_tab}
                <li class='jf'>{@link oaj.jena.RdfCommon#RDF_rdfxml_xmlBase 
RDF_rdfxml_xmlBase}
-               <li class='jf'>{@link oaj.jena.RdfCommon#RDF_useXmlNamespaces 
RDF_useXmlNamespaces}                                     
        </ul>
        <li class='jc'>{@link oaj.jena.RdfSerializer}
        <ul>
@@ -74,6 +73,7 @@ RDF Serializers
                <li class='jf'>{@link 
oaj.jena.RdfSerializer#RDF_addRootProperty RDF_addRootProperty}
                <li class='jf'>{@link 
oaj.jena.RdfSerializer#RDF_autoDetectNamespaces RDF_autoDetectNamespaces}
                <li class='jf'>{@link oaj.jena.RdfSerializer#RDF_namespaces 
RDF_namespaces}                             
+               <li class='jf'>{@link 
oaj.jena.RdfSerializer#RDF_useXmlNamespaces RDF_useXmlNamespaces}               
                  
        </ul>
 </ul>
 <p>
diff --git 
a/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/02.Parsers.html 
b/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/02.Parsers.html
index ea97129..d9ae6ff 100644
--- 
a/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/02.Parsers.html
+++ 
b/juneau-doc/docs/Topics/03.juneau-marshall-rdf/01.RdfDetails/02.Parsers.html
@@ -69,7 +69,6 @@ RDF Parsers
                <li class='jf'>{@link 
oaj.jena.RdfCommon#RDF_rdfxml_showXmlDeclaration RDF_rdfxml_showXmlDeclaration}
                <li class='jf'>{@link oaj.jena.RdfCommon#RDF_rdfxml_tab 
RDF_rdfxml_tab}
                <li class='jf'>{@link oaj.jena.RdfCommon#RDF_rdfxml_xmlBase 
RDF_rdfxml_xmlBase}
-               <li class='jf'>{@link oaj.jena.RdfCommon#RDF_useXmlNamespaces 
RDF_useXmlNamespaces}                                     
        </ul>
        <li class='jc'>{@link oaj.jena.RdfParser}
        <ul>
diff --git 
a/juneau-doc/docs/Topics/07.juneau-rest-server/28.Swagger/08.ResponseExamples.html
 
b/juneau-doc/docs/Topics/07.juneau-rest-server/28.Swagger/08.ResponseExamples.html
index 75c7e09..bc79b0f 100644
--- 
a/juneau-doc/docs/Topics/07.juneau-rest-server/28.Swagger/08.ResponseExamples.html
+++ 
b/juneau-doc/docs/Topics/07.juneau-rest-server/28.Swagger/08.ResponseExamples.html
@@ -148,7 +148,7 @@ Response Examples
 </p>
 <p>
        Examples can also be specified via generic properties as well using the 
{@link oaj.BeanContext#BEAN_examples} property 
-       or {@link oaj.annoation.BeanConfig#examples @BeanConfig(examples)} 
annotation at either the class or method level.
+       or {@link oaj.annotation.BeanConfig#examples @BeanConfig(examples)} 
annotation at either the class or method level.
 </p>
 <p class='bpcode w800'>
        <jc>// Examples defined at class level.</jc>
diff --git 
a/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation.html 
b/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation.html
index 60b1024..885e420 100644
--- a/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation.html
+++ b/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation.html
@@ -16,7 +16,7 @@
 {updated} @HtmlDocConfig
 
 <p>
-       The {@link oajr.annotation.HtmlDocConfig @HtmlDocConfig} annotation is 
used to customize the HTML 
+       The {@link oaj.html.annotation.HtmlDocConfig @HtmlDocConfig} annotation 
is used to customize the HTML 
        view of your serialized POJOs.
        It's used in the following locations:
 </p>
diff --git 
a/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation/05.Stylesheets.html
 
b/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation/05.Stylesheets.html
index c59dc56..0c02fe5 100644
--- 
a/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation/05.Stylesheets.html
+++ 
b/juneau-doc/docs/Topics/07.juneau-rest-server/29.HtmlDocAnnotation/05.Stylesheets.html
@@ -41,7 +41,7 @@
 </p>
 <img class='bordered w800' 
src='doc-files/juneau-rest-server.Stylesheets.3.png'>
 <p>
-       The stylesheet URL is controlled by the {@link 
oajr.annotation.HtmlDocConfig#stylesheet() @HtmlDocConfig(stylesheet)} 
annotation.
+       The stylesheet URL is controlled by the {@link 
oaj.html.annotation.HtmlDocConfig#stylesheet() @HtmlDocConfig(stylesheet)} 
annotation.
        The {@link oajr.BasicRestServlet} class defines the stylesheet served 
up as a static file:
 <p class='bpcode w800'>
        <ja>@RestResource</ja>(
diff --git a/juneau-doc/src/main/javadoc/overview.html 
b/juneau-doc/src/main/javadoc/overview.html
index a41b006..20d3a81 100644
--- a/juneau-doc/src/main/javadoc/overview.html
+++ b/juneau-doc/src/main/javadoc/overview.html
@@ -2627,7 +2627,7 @@
        }
 </p>
 <p>
-       The {@link org.apache.juneau.annoation.Name @Name} annotation is a 
shortcut for specifying a bean property name:
+       The {@link org.apache.juneau.annotation.Name @Name} annotation is a 
shortcut for specifying a bean property name:
 </p>
 <p class='bpcode w800'>
        <jk>public class</jk> MyBean {
@@ -9895,7 +9895,6 @@
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_rdfxml_showXmlDeclaration 
RDF_rdfxml_showXmlDeclaration}
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_rdfxml_tab RDF_rdfxml_tab}
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_rdfxml_xmlBase RDF_rdfxml_xmlBase}
-               <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_useXmlNamespaces RDF_useXmlNamespaces}     
                                  
        </ul>
        <li class='jc'>{@link org.apache.juneau.jena.RdfSerializer}
        <ul>
@@ -9904,6 +9903,7 @@
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfSerializer#RDF_addRootProperty RDF_addRootProperty}
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfSerializer#RDF_autoDetectNamespaces 
RDF_autoDetectNamespaces}
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfSerializer#RDF_namespaces RDF_namespaces}             
                  
+               <li class='jf'>{@link 
org.apache.juneau.jena.RdfSerializer#RDF_useXmlNamespaces RDF_useXmlNamespaces} 
                                  
        </ul>
 </ul>
 <p>
@@ -9998,7 +9998,6 @@
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_rdfxml_showXmlDeclaration 
RDF_rdfxml_showXmlDeclaration}
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_rdfxml_tab RDF_rdfxml_tab}
                <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_rdfxml_xmlBase RDF_rdfxml_xmlBase}
-               <li class='jf'>{@link 
org.apache.juneau.jena.RdfCommon#RDF_useXmlNamespaces RDF_useXmlNamespaces}     
                                  
        </ul>
        <li class='jc'>{@link org.apache.juneau.jena.RdfParser}
        <ul>
@@ -19896,7 +19895,7 @@
 </p>
 <p>
        Examples can also be specified via generic properties as well using the 
{@link org.apache.juneau.BeanContext#BEAN_examples} property 
-       or {@link org.apache.juneau.annoation.BeanConfig#examples 
@BeanConfig(examples)} annotation at either the class or method level.
+       or {@link org.apache.juneau.annotation.BeanConfig#examples 
@BeanConfig(examples)} annotation at either the class or method level.
 </p>
 <p class='bpcode w800'>
        <jc>// Examples defined at class level.</jc>
@@ -20100,7 +20099,7 @@
 <h3 class='topic updated' onclick='toggle(this)'><a 
href='#juneau-rest-server.HtmlDocAnnotation' 
id='juneau-rest-server.HtmlDocAnnotation'>7.29 - @HtmlDocConfig</a></h3>
 <div class='topic'><!-- START: 7.29 - juneau-rest-server.HtmlDocAnnotation -->
 <p>
-       The {@link org.apache.juneau.rest.annotation.HtmlDocConfig 
@HtmlDocConfig} annotation is used to customize the HTML 
+       The {@link org.apache.juneau.html.annotation.HtmlDocConfig 
@HtmlDocConfig} annotation is used to customize the HTML 
        view of your serialized POJOs.
        It's used in the following locations:
 </p>
@@ -20801,7 +20800,7 @@
 </p>
 <img class='bordered w800' 
src='doc-files/juneau-rest-server.Stylesheets.3.png'>
 <p>
-       The stylesheet URL is controlled by the {@link 
org.apache.juneau.rest.annotation.HtmlDocConfig#stylesheet() 
@HtmlDocConfig(stylesheet)} annotation.
+       The stylesheet URL is controlled by the {@link 
org.apache.juneau.html.annotation.HtmlDocConfig#stylesheet() 
@HtmlDocConfig(stylesheet)} annotation.
        The {@link org.apache.juneau.rest.BasicRestServlet} class defines the 
stylesheet served up as a static file:
 <p class='bpcode w800'>
        <ja>@RestResource</ja>(
@@ -29617,7 +29616,7 @@
 </p>
 <ul class='spaced-list'>
        <li>
-               New {@link org.apache.juneau.rest.annotation.RestMethod 
@RestMethod} annoation on {@link org.apache.juneau.rest.RestServlet} 
methods.<br>
+               New {@link org.apache.juneau.rest.annotation.RestMethod 
@RestMethod} annotation on {@link org.apache.juneau.rest.RestServlet} 
methods.<br>
                Allows the usage of URL pattern matching and automatic 
conversion of URL variables to arguments passed to method handlers.<br>
                See {@link org.apache.juneau.rest.RestServlet} for more 
information.
        </li>
@@ -31364,7 +31363,7 @@
 <h5 class='topic w800'>Core</h5>               
 <ul class='spaced-list'>
        <li>Simplified {@link org.apache.juneau.utils.PojoIntrospector} class.
-       <li>New {@link 
org.apache.juneau.internal.ClassUtils#getMethodSignature(Method)} method.
+       <li>New <code><del>ClassUtils.getMethodSignature(Method)</del></code> 
method.
 </ul>
 
 <h5 class='topic w800'>Client</h5>             
@@ -31853,7 +31852,7 @@
                        <li>{@link org.apache.juneau.Streamable} interface for 
identifying objects that can be serialized directly to an output stream.
                        <li>{@link org.apache.juneau.Writable} interface for 
identifying objects that can be serialized directly to a writer.
                        <li><code><del>StringObject</del></code> class that can 
be used for delayed object serialization.
-                       <li>{@link org.apache.juneau.internal.ByteArrayCache}
+                       <li><code><del>ByteArrayCache</del></code>
                        <li>{@link 
org.apache.juneau.internal.ByteArrayInOutStream} 
                        <li>{@link org.apache.juneau.internal.FileUtils}
                        <li>{@link org.apache.juneau.internal.ThrowableUtils}
@@ -32337,7 +32336,7 @@
        <li>Added <ja>@Bean.properties</ja> annotations on various DTO beans to 
make the ordering consistent
                between IBM and Oracle JVMs.<br>
                IBM JVMs maintain the order of methods in a class, whereas 
Oracle JVMs do not.
-       <li>Serializers and parsers now automatically convert {@link 
java.lang.Class} objects to readable names via {@link 
org.apache.juneau.internal.ClassUtils#getReadableClassName(Class)}.
+       <li>Serializers and parsers now automatically convert {@link 
java.lang.Class} objects to readable names via 
<code><del>ClassUtils.getReadableClassName(Class)</del></code>.
        <li>Eliminated the <code>ClassFilter</code> class since it's no longer 
needed.
        <li>Code and concurrency improvements to {@link 
org.apache.juneau.serializer.SerializerGroup} and {@link 
org.apache.juneau.parser.ParserGroup}.
        <li>Various enhancements to 
<code><del>BeanContext.convertToType(Object,Class)</del></code>.
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockHttpSession.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockHttpSession.java
index 8ebe936..4bf2180 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockHttpSession.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockHttpSession.java
@@ -20,11 +20,6 @@ import javax.servlet.http.*;
 /**
  * An implementation of {@link HttpSession} for mocking purposes.
  *
- * <h5 class='section'>See Also:</h5>
- * <ul>
- *     <li class='link'>{@doc juneau-rest-server.UnitTesting}
- * </ul>
- *
  * @deprecated Use <code>org.apache.juneau.rest.mock2</code>
  */
 @Deprecated
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockRest.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockRest.java
index 733ea88..a5682be 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockRest.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockRest.java
@@ -49,12 +49,6 @@ import org.apache.juneau.utils.*;
  *  }
  * </p>
  *
- * <h5 class='section'>See Also:</h5>
- * <ul>
- *     <li class='link'>{@doc juneau-rest-server.UnitTesting}
- *     <li class='link'>{@doc juneau-rest-client.UnitTesting}
- * </ul>
- *
  * @deprecated Use <code>org.apache.juneau.rest.mock2</code>
  */
 @Deprecated
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletRequest.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletRequest.java
index 2019ae6..b6d7cfa 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletRequest.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletRequest.java
@@ -31,11 +31,6 @@ import org.apache.juneau.utils.*;
 /**
  * An implementation of {@link HttpServletRequest} for mocking purposes.
  *
- * <h5 class='section'>See Also:</h5>
- * <ul>
- *     <li class='link'>{@doc juneau-rest-server.UnitTesting}
- * </ul>
- *
  * @deprecated Use <code>org.apache.juneau.rest.mock2</code>
  */
 @Deprecated
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletResponse.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletResponse.java
index 84a85d9..bf2863e 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletResponse.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/mock/MockServletResponse.java
@@ -29,11 +29,6 @@ import org.apache.juneau.utils.*;
 /**
  * An implementation of {@link HttpServletResponse} for mocking purposes.
  *
- * <h5 class='section'>See Also:</h5>
- * <ul>
- *     <li class='link'>{@doc juneau-rest-server.UnitTesting}
- * </ul>
- *
  * @deprecated Use <code>org.apache.juneau.rest.mock2</code>
 */
 @Deprecated

Reply via email to