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 71232cf  Javadocs.
71232cf is described below

commit 71232cfc192d7144937962084af5484ff1101f16
Author: JamesBognar <[email protected]>
AuthorDate: Tue Jul 27 08:23:24 2021 -0400

    Javadocs.
---
 .../main/java/org/apache/juneau/BeanContext.java   |  2 +-
 .../apache/juneau/assertions/ArrayAssertion.java   |  2 +-
 .../juneau/assertions/AssertionPredicates.java     |  2 +-
 .../juneau/assertions/BeanListAssertion.java       |  2 +-
 .../juneau/assertions/FluentArrayAssertion.java    |  2 +-
 .../juneau/assertions/FluentBeanListAssertion.java |  2 +-
 .../juneau/assertions/FluentListAssertion.java     |  2 +-
 .../juneau/assertions/FluentMapAssertion.java      |  4 +--
 .../assertions/FluentPrimitiveArrayAssertion.java  |  2 +-
 .../apache/juneau/assertions/ListAssertion.java    |  2 +-
 .../org/apache/juneau/assertions/MapAssertion.java |  4 +--
 .../org/apache/juneau/rest/NamedAttributeList.java |  2 +-
 .../apache/juneau/rest/ResponseProcessorList.java  |  2 +-
 .../org/apache/juneau/rest/RestContextBuilder.java | 14 ++++-----
 .../org/apache/juneau/rest/RestConverterList.java  |  2 +-
 .../java/org/apache/juneau/rest/RestGuardList.java |  2 +-
 .../org/apache/juneau/rest/RestMatcherList.java    |  2 +-
 .../apache/juneau/rest/RestOperationContext.java   | 36 +++++++++++-----------
 .../juneau/rest/util/UrlPathMatcherList.java       |  2 +-
 pom.xml                                            |  6 ----
 20 files changed, 44 insertions(+), 50 deletions(-)

diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java
index fcc0c52..963aa6c 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/BeanContext.java
@@ -144,7 +144,7 @@ import org.apache.juneau.utils.ReflectionMapBuilder;
  * </p>
  *
  * <ul class='seealso'>
- *     <li class='link'>{@doc ContextsBuildersSessionsContextProperties}
+ *     <li class='link'>{@doc ContextsBuildersSessionsPropertyStores}
  * </ul>
  */
 @SuppressWarnings({"unchecked","rawtypes"})
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ArrayAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ArrayAssertion.java
index ad86d9c..0e4883d 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ArrayAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ArrayAssertion.java
@@ -34,7 +34,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentArrayAssertion#has(E[])}
+ *             <li class='jm'>{@link FluentArrayAssertion#has(Object[])}
  *             <li class='jm'>{@link FluentArrayAssertion#is(Predicate)}
  *             <li class='jm'>{@link FluentArrayAssertion#any(Predicate)}
  *             <li class='jm'>{@link FluentArrayAssertion#all(Predicate)}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/AssertionPredicates.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/AssertionPredicates.java
index 576cfd3..ea934d0 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/AssertionPredicates.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/AssertionPredicates.java
@@ -323,7 +323,7 @@ public class AssertionPredicates {
         *      <br>Supports {@link MessageFormat}-style arguments.
         * @param args
         *      Optional message arguments.
-        *      <br>Can contain {@link #VALUE} to specify the value itself as 
an argument.
+        *      <br>Can contain {@code #VALUE} to specify the value itself as 
an argument.
         *      <br>Can contain {@link Function functions} to apply to the 
tested value.
         * @return A new predicate.
         */
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/BeanListAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/BeanListAssertion.java
index a02e1f4..debc87c 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/BeanListAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/BeanListAssertion.java
@@ -34,7 +34,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentListAssertion#has(E...)}
+ *             <li class='jm'>{@link FluentListAssertion#has(Object...)}
  *             <li class='jm'>{@link FluentListAssertion#each(Predicate...)}
  *             <li class='jm'>{@link FluentCollectionAssertion#isEmpty()}
  *             <li class='jm'>{@link FluentCollectionAssertion#isNotEmpty()}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentArrayAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentArrayAssertion.java
index 3962f61..e98e84f 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentArrayAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentArrayAssertion.java
@@ -34,7 +34,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentArrayAssertion#has(E[])}
+ *             <li class='jm'>{@link FluentArrayAssertion#has(Object[])}
  *             <li class='jm'>{@link FluentArrayAssertion#is(Predicate)}
  *             <li class='jm'>{@link FluentArrayAssertion#any(Predicate)}
  *             <li class='jm'>{@link FluentArrayAssertion#all(Predicate)}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentBeanListAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentBeanListAssertion.java
index 601bb98..31661fd 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentBeanListAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentBeanListAssertion.java
@@ -29,7 +29,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentListAssertion#has(E...)}
+ *             <li class='jm'>{@link FluentListAssertion#has(Object...)}
  *             <li class='jm'>{@link FluentListAssertion#each(Predicate...)}
  *             <li class='jm'>{@link FluentCollectionAssertion#isEmpty()}
  *             <li class='jm'>{@link FluentCollectionAssertion#isNotEmpty()}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentListAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentListAssertion.java
index 1818be2..7d5c31d 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentListAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentListAssertion.java
@@ -30,7 +30,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentListAssertion#has(E...)}
+ *             <li class='jm'>{@link FluentListAssertion#has(Object...)}
  *             <li class='jm'>{@link FluentListAssertion#each(Predicate...)}
  *             <li class='jm'>{@link FluentCollectionAssertion#isEmpty()}
  *             <li class='jm'>{@link FluentCollectionAssertion#isNotEmpty()}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentMapAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentMapAssertion.java
index b38035a..89c0904 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentMapAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentMapAssertion.java
@@ -58,8 +58,8 @@ import org.apache.juneau.serializer.*;
  * <h5 class='topic'>Transform Methods</h5>
  *     <ul>
  *             <li class='jm'>{@link FluentMapAssertion#value(Object)}
- *             <li class='jm'>{@link FluentMapAssertion#values(K...)}
- *             <li class='jm'>{@link FluentMapAssertion#extract(K...)}
+ *             <li class='jm'>{@link FluentMapAssertion#values(Object...)}
+ *             <li class='jm'>{@link FluentMapAssertion#extract(Object...)}
  *             <li class='jm'>{@link FluentMapAssertion#size()}
  *             <li class='jm'>{@link FluentObjectAssertion#asString()}
  *             <li class='jm'>{@link 
FluentObjectAssertion#asString(WriterSerializer)}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentPrimitiveArrayAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentPrimitiveArrayAssertion.java
index 51a858e..eaf1882 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentPrimitiveArrayAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/FluentPrimitiveArrayAssertion.java
@@ -33,7 +33,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentPrimitiveArrayAssertion#has(E...)}
+ *             <li class='jm'>{@link 
FluentPrimitiveArrayAssertion#has(Object...)}
  *             <li class='jm'>{@link 
FluentPrimitiveArrayAssertion#is(Predicate)}
  *             <li class='jm'>{@link 
FluentPrimitiveArrayAssertion#any(Predicate)}
  *             <li class='jm'>{@link 
FluentPrimitiveArrayAssertion#all(Predicate)}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ListAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ListAssertion.java
index e4f826b..8067cf5 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ListAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/ListAssertion.java
@@ -32,7 +32,7 @@ import org.apache.juneau.serializer.*;
  *
  * <h5 class='topic'>Test Methods</h5>
  *     <ul>
- *             <li class='jm'>{@link FluentListAssertion#has(E...)}
+ *             <li class='jm'>{@link FluentListAssertion#has(Object...)}
  *             <li class='jm'>{@link FluentListAssertion#each(Predicate...)}
  *             <li class='jm'>{@link FluentCollectionAssertion#isEmpty()}
  *             <li class='jm'>{@link FluentCollectionAssertion#isNotEmpty()}
diff --git 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/MapAssertion.java
 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/MapAssertion.java
index 029b944..eedd8c5 100644
--- 
a/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/MapAssertion.java
+++ 
b/juneau-core/juneau-marshall/src/main/java/org/apache/juneau/assertions/MapAssertion.java
@@ -58,8 +58,8 @@ import org.apache.juneau.serializer.*;
  * <h5 class='topic'>Transform Methods</h5>
  *     <ul>
  *             <li class='jm'>{@link FluentMapAssertion#value(Object)}
- *             <li class='jm'>{@link FluentMapAssertion#values(K...)}
- *             <li class='jm'>{@link FluentMapAssertion#extract(K...)}
+ *             <li class='jm'>{@link FluentMapAssertion#values(Object...)}
+ *             <li class='jm'>{@link FluentMapAssertion#extract(Object...)}
  *             <li class='jm'>{@link FluentMapAssertion#size()}
  *             <li class='jm'>{@link FluentObjectAssertion#asString()}
  *             <li class='jm'>{@link 
FluentObjectAssertion#asString(WriterSerializer)}
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/NamedAttributeList.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/NamedAttributeList.java
index de35146..7370487 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/NamedAttributeList.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/NamedAttributeList.java
@@ -17,7 +17,7 @@ import java.util.*;
 import org.apache.juneau.collections.*;
 
 /**
- * A list of {@Link NamedAttribute} objects.
+ * A list of {@link NamedAttribute} objects.
  */
 public class NamedAttributeList extends AList<NamedAttribute> {
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ResponseProcessorList.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ResponseProcessorList.java
index 8c4dacd..935b5c3 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ResponseProcessorList.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/ResponseProcessorList.java
@@ -15,7 +15,7 @@ package org.apache.juneau.rest;
 import org.apache.juneau.collections.*;
 
 /**
- * A list of {@Link ResponseProcessor} objects.
+ * A list of {@link ResponseProcessor} objects.
  */
 public class ResponseProcessorList extends AList<ResponseProcessor> {
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestContextBuilder.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestContextBuilder.java
index 4efd5b4..e75fcdb 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestContextBuilder.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestContextBuilder.java
@@ -199,9 +199,9 @@ public class RestContextBuilder extends BeanContextBuilder 
implements ServletCon
        }
 
        /**
-        * Specifies the default implementation class if not specified via 
{@link #REST_contextClass}.
+        * Specifies the default implementation class if not specified via 
{@link RestContext#REST_contextClass}.
         *
-        * @return The default implementation class if not specified via {@link 
#REST_contextClass}.
+        * @return The default implementation class if not specified via {@link 
RestContext#REST_contextClass}.
         */
        protected Class<? extends RestContext> getDefaultImplClass() {
                return RestContext.class;
@@ -821,7 +821,7 @@ public class RestContextBuilder extends BeanContextBuilder 
implements ServletCon
         * Configuration property:  Default debug mode.
         *
         * <p>
-        * The default value for the {@link #REST_debug} setting.
+        * The default value for the {@link RestContext#REST_debug} setting.
         *
         * @param value The new value for this setting.
         * @return This object (for method chaining).
@@ -1413,7 +1413,7 @@ public class RestContextBuilder extends 
BeanContextBuilder implements ServletCon
         * @return This object (for method chaining).
         */
        @FluentSetter
-       public RestContextBuilder parsers(Object...values) {
+       public RestContextBuilder parsers(Parser...values) {
                return prependTo(REST_parsers, values);
        }
 
@@ -1431,7 +1431,7 @@ public class RestContextBuilder extends 
BeanContextBuilder implements ServletCon
         * @return This object (for method chaining).
         */
        @FluentSetter
-       public RestContextBuilder parsersReplace(Object...values) {
+       public RestContextBuilder parsersReplace(Parser...values) {
                return set(REST_parsers, values);
        }
 
@@ -1845,7 +1845,7 @@ public class RestContextBuilder extends 
BeanContextBuilder implements ServletCon
         * @return This object (for method chaining).
         */
        @FluentSetter
-       public RestContextBuilder serializers(Object...values) {
+       public RestContextBuilder serializers(Serializer...values) {
                return prependTo(REST_serializers, values);
        }
 
@@ -1863,7 +1863,7 @@ public class RestContextBuilder extends 
BeanContextBuilder implements ServletCon
         * @return This object (for method chaining).
         */
        @FluentSetter
-       public RestContextBuilder serializersReplace(Object...values) {
+       public RestContextBuilder serializersReplace(Serializer...values) {
                return set(REST_serializers, values);
        }
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestConverterList.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestConverterList.java
index 61169dc..83904da 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestConverterList.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestConverterList.java
@@ -15,7 +15,7 @@ package org.apache.juneau.rest;
 import org.apache.juneau.collections.*;
 
 /**
- * A list of {@Link RestConverter} objects.
+ * A list of {@link RestConverter} objects.
  */
 public class RestConverterList extends AList<RestConverter> {
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestGuardList.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestGuardList.java
index c784fd4..b3be73a 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestGuardList.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestGuardList.java
@@ -15,7 +15,7 @@ package org.apache.juneau.rest;
 import org.apache.juneau.collections.*;
 
 /**
- * A list of {@Link RestGuard} objects.
+ * A list of {@link RestGuard} objects.
  */
 public class RestGuardList extends AList<RestGuard> {
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestMatcherList.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestMatcherList.java
index 5a2d25c..525f96d 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestMatcherList.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestMatcherList.java
@@ -15,7 +15,7 @@ package org.apache.juneau.rest;
 import org.apache.juneau.collections.*;
 
 /**
- * A list of {@Link RestMatcher} objects.
+ * A list of {@link RestMatcher} objects.
  */
 public class RestMatcherList extends AList<RestMatcher> {
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestOperationContext.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestOperationContext.java
index bac18db..884e906 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestOperationContext.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/RestOperationContext.java
@@ -196,8 +196,8 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * The subclass must have a public constructor that takes in any of the 
following arguments:
         * <ul>
         *      <li>{@link RestOperationContextBuilder} - The builder for the 
object.
-        *      <li>Any beans found in the specified {@link #REST_beanStore 
bean store}.
-        *      <li>Any {@link Optional} beans that may or may not be found in 
the specified {@link #REST_beanStore bean store}.
+        *      <li>Any beans found in the specified {@link 
RestContext#REST_beanStore bean store}.
+        *      <li>Any {@link Optional} beans that may or may not be found in 
the specified {@link RestContext#REST_beanStore bean store}.
         * </ul>
         *
         * <h5 class='section'>Example:</h5>
@@ -789,7 +789,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * <p>
         * Instantiates based on the following logic:
         * <ul>
-        *      <li>Looks for {@link #REST_converters} value set via any of the 
following:
+        *      <li>Looks for {@link RestContext#REST_converters} value set via 
any of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#converters(Class...)}/{@link 
RestContextBuilder#converters(RestConverter...)}
         *                      <li>{@link RestOp#converters()}.
@@ -812,7 +812,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The result converters for this REST resource method.
         * @throws Exception If result converters could not be instantiated.
-        * @seealso #REST_converters
+        * @see #REST_converters
         */
        protected RestConverterList createConverters(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
@@ -841,7 +841,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * <p>
         * Instantiates based on the following logic:
         * <ul>
-        *      <li>Looks for {@link #REST_guards} value set via any of the 
following:
+        *      <li>Looks for {@link RestContext#REST_guards} value set via any 
of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#guards(Class...)}/{@link 
RestContextBuilder#guards(RestGuard...)}
         *                      <li>{@link RestOp#guards()}.
@@ -864,7 +864,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The guards for this REST resource method.
         * @throws Exception If guards could not be instantiated.
-        * @seealso #REST_guards
+        * @see #REST_guards
         */
        protected RestGuardList createGuards(Object resource, ContextProperties 
properties, BeanStore beanStore) throws Exception {
 
@@ -925,7 +925,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The method matchers for this REST resource method.
         * @throws Exception If method matchers could not be instantiated.
-        * @seealso #RESTMETHOD_matchers
+        * @see #RESTOP_matchers
         */
        protected RestMatcherList createMatchers(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
@@ -957,7 +957,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * <p>
         * Instantiates based on the following logic:
         * <ul>
-        *      <li>Looks for {@link #REST_encoders} value set via any of the 
following:
+        *      <li>Looks for {@link RestContext#REST_encoders} value set via 
any of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#encoders(Class...)}/{@link 
RestContextBuilder#encoders(Encoder...)}
         *                      <li>{@link RestOp#encoders()}.
@@ -980,7 +980,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The encoders for this REST resource method.
         * @throws Exception If encoders could not be instantiated.
-        * @seealso #REST_encoders
+        * @see #REST_encoders
         */
        protected EncoderGroup createEncoders(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
@@ -1016,7 +1016,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * <p>
         * Instantiates based on the following logic:
         * <ul>
-        *      <li>Looks for {@link #REST_serializers} value set via any of 
the following:
+        *      <li>Looks for {@link RestContext#REST_serializers} value set 
via any of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#serializers(Class...)}/{@link 
RestContextBuilder#serializers(Serializer...)}
         *                      <li>{@link Rest#serializers()}.
@@ -1037,7 +1037,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The serializers for this REST resource.
         * @throws Exception If serializers could not be instantiated.
-        * @seealso #REST_serializers
+        * @see #REST_serializers
         */
        protected SerializerGroup createSerializers(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
@@ -1077,7 +1077,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * <p>
         * Instantiates based on the following logic:
         * <ul>
-        *      <li>Looks for {@link #REST_parsers} value set via any of the 
following:
+        *      <li>Looks for {@link RestContext#REST_parsers} value set via 
any of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#parsers(Class...)}/{@link 
RestContextBuilder#parsers(Parser...)}
         *                      <li>{@link Rest#parsers()}.
@@ -1098,7 +1098,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The parsers for this REST resource.
         * @throws Exception If parsers could not be instantiated.
-        * @seealso #REST_parsers
+        * @see #REST_parsers
         */
        protected ParserGroup createParsers(Object resource, ContextProperties 
properties, BeanStore beanStore) throws Exception {
 
@@ -1139,7 +1139,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * Instantiates based on the following logic:
         * <ul>
         *      <li>Returns the resource class itself is an instance of {@link 
HttpPartSerializer}.
-        *      <li>Looks for {@link #REST_partSerializer} value set via any of 
the following:
+        *      <li>Looks for {@link RestContext#REST_partSerializer} value set 
via any of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#partSerializer(Class)}/{@link 
RestContextBuilder#partSerializer(HttpPartSerializer)}
         *                      <li>{@link Rest#partSerializer()}.
@@ -1160,7 +1160,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The HTTP part serializer for this REST resource.
         * @throws Exception If serializer could not be instantiated.
-        * @seealso #REST_partSerializer
+        * @see #REST_partSerializer
         */
        protected HttpPartSerializer createPartSerializer(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
@@ -1197,7 +1197,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * Instantiates based on the following logic:
         * <ul>
         *      <li>Returns the resource class itself is an instance of {@link 
HttpPartParser}.
-        *      <li>Looks for {@link #REST_partParser} value set via any of the 
following:
+        *      <li>Looks for {@link RestContext#REST_partParser} value set via 
any of the following:
         *              <ul>
         *                      <li>{@link 
RestContextBuilder#partParser(Class)}/{@link 
RestContextBuilder#partParser(HttpPartParser)}
         *                      <li>{@link Rest#partParser()}.
@@ -1218,7 +1218,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The HTTP part parser for this REST resource.
         * @throws Exception If parser could not be instantiated.
-        * @seealso #REST_partParser
+        * @see #REST_partParser
         */
        protected HttpPartParser createPartParser(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
@@ -1256,7 +1256,7 @@ public class RestOperationContext extends BeanContext 
implements Comparable<Rest
         * @param beanStore The bean store to use for retrieving and creating 
beans.
         * @return The HTTP part parser for this REST resource.
         * @throws Exception If parser could not be instantiated.
-        * @seealso #RESTMETHOD_paths
+        * @see #RESTOP_path
         */
        protected UrlPathMatcherList createPathMatchers(Object resource, 
ContextProperties properties, BeanStore beanStore) throws Exception {
 
diff --git 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/util/UrlPathMatcherList.java
 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/util/UrlPathMatcherList.java
index d2929d8..4a47da0 100644
--- 
a/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/util/UrlPathMatcherList.java
+++ 
b/juneau-rest/juneau-rest-server/src/main/java/org/apache/juneau/rest/util/UrlPathMatcherList.java
@@ -15,7 +15,7 @@ package org.apache.juneau.rest.util;
 import org.apache.juneau.collections.*;
 
 /**
- * A list of {@Link UrlPathMatcher} objects.
+ * A list of {@link UrlPathMatcher} objects.
  */
 public class UrlPathMatcherList extends AList<UrlPathMatcher> {
 
diff --git a/pom.xml b/pom.xml
index c5ccb75..3934646 100644
--- a/pom.xml
+++ b/pom.xml
@@ -248,27 +248,21 @@
                                                <taglets>
                                                        <taglet>
                                                                
<tagletClass>org.apache.juneau.doc.internal.DocTag</tagletClass>
-                                                               
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>
                                                        </taglet>
                                                        <taglet>
                                                                
<tagletClass>org.apache.juneau.doc.internal.PropertyTag</tagletClass>
-                                                               
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>
                                                        </taglet>
                                                        <taglet>
                                                                
<tagletClass>org.apache.juneau.doc.internal.FragmentTag</tagletClass>
-                                                               
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>
                                                        </taglet>
                                                        <taglet>
                                                                
<tagletClass>org.apache.juneau.doc.internal.SourceTag</tagletClass>
-                                                               
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>
                                                        </taglet>
                                                        <taglet>
                                                                
<tagletClass>org.apache.juneau.doc.internal.ReviewTag</tagletClass>
-                                                               
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>
                                                        </taglet>
                                                        <taglet>
                                                                
<tagletClass>org.apache.juneau.doc.internal.ReviewedTag</tagletClass>
-                                                               
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>
                                                        </taglet>
                                                </taglets>
                                                
<tagletpath>${basedir}/juneau-doc/target/juneau-doc-${project.version}.jar</tagletpath>

Reply via email to