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 cdc94a48ce Doc updates.
cdc94a48ce is described below

commit cdc94a48ce74f1a789e67b7fcc973226a0fccf5d
Author: James Bognar <[email protected]>
AuthorDate: Mon Dec 29 10:51:12 2025 -0500

    Doc updates.
---
 .../org/apache/juneau/commons/reflect/ParameterInfo.html     | 12 ++++++------
 .../9.2.1/org/apache/juneau/commons/reflect/Visibility.html  |  8 ++++----
 .../org/apache/juneau/rest/widget/ContentTypeMenuItem.html   |  2 +-
 .../9.2.1/org/apache/juneau/rest/widget/MenuItemWidget.html  |  2 +-
 .../9.2.1/org/apache/juneau/rest/widget/QueryMenuItem.html   |  2 +-
 .../9.2.1/org/apache/juneau/rest/widget/ThemeMenuItem.html   |  2 +-
 .../org/apache/juneau/commons/reflect/ParameterInfo.html     | 12 ++++++------
 .../org/apache/juneau/commons/reflect/Visibility.html        |  8 ++++----
 .../org/apache/juneau/rest/widget/MenuItemWidget.html        |  2 +-
 static/javadocs/releases.json                                |  2 +-
 10 files changed, 26 insertions(+), 26 deletions(-)

diff --git 
a/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/ParameterInfo.html 
b/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/ParameterInfo.html
index 8590e41a6d..73b0e1ff9a 100644
--- a/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/ParameterInfo.html
+++ b/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/ParameterInfo.html
@@ -93,7 +93,7 @@ implements <a href="Annotatable.html" title="interface in 
org.apache.juneau.comm
  This class provides a convenient wrapper around <a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/reflect/Parameter.html";
 title="class or interface in java.lang.reflect" 
class="external-link"><code>Parameter</code></a> that extends the standard Java 
reflection
  API with additional functionality for parameter introspection, annotation 
handling, and name resolution.
  It supports resolving parameter names from bytecode (when compiled with 
<c>-parameters</c>) or from
- <a href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>Name</code></a> annotations.
+ <a href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>@Name</code></a> annotations.
 
  <h5 class='section'>Features:</h5>
  <ul class='spaced-list'>
@@ -134,7 +134,7 @@ implements <a href="Annotatable.html" title="interface in 
org.apache.juneau.comm
  <p>
  Parameter names are resolved in the following order:
  <ol class='spaced-list'>
-   <li><a href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>Name</code></a> annotation value (if 
present)
+   <li><a href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>@Name</code></a> annotation value (if 
present)
    <li>Bytecode parameter names (if compiled with <c>-parameters</c> flag)
    <li><c>arg0</c>, <c>arg1</c>, etc. (fallback if names unavailable)
  </ol>
@@ -725,7 +725,7 @@ implements <a href="Annotatable.html" title="interface in 
org.apache.juneau.comm
  <p>
  Searches for the parameter name in the following order:
  <ol>
-   <li><a href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>Name</code></a> annotation value
+   <li><a href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>@Name</code></a> annotation value
    <li>Bytecode parameter name (if available and not disabled via system 
property)
    <li>Matching parameters in parent classes/interfaces
  </ol>
@@ -734,7 +734,7 @@ implements <a href="Annotatable.html" title="interface in 
org.apache.juneau.comm
  This method is used for mapping constructor parameters to bean properties.
 
  <p>
- <b>Note:</b> This is different from <a 
href="#getResolvedQualifier()"><code>getResolvedQualifier()</code></a> which 
looks for <a href="../../annotation/Named.html" title="annotation interface in 
org.apache.juneau.annotation"><code>Named</code></a>
+ <b>Note:</b> This is different from <a 
href="#getResolvedQualifier()"><code>getResolvedQualifier()</code></a> which 
looks for <a href="../../annotation/Named.html" title="annotation interface in 
org.apache.juneau.annotation"><code>@Named</code></a>
  annotations for bean injection purposes.</div>
 <dl class="notes">
 <dt>Returns:</dt>
@@ -756,14 +756,14 @@ implements <a href="Annotatable.html" title="interface in 
org.apache.juneau.comm
 <div class="block">Finds the bean injection qualifier for this parameter.
 
  <p>
- Searches for the <a href="../../annotation/Named.html" title="annotation 
interface in org.apache.juneau.annotation"><code>Named</code></a> annotation 
value to determine
+ Searches for the <a href="../../annotation/Named.html" title="annotation 
interface in org.apache.juneau.annotation"><code>@Named</code></a> annotation 
value to determine
  which named bean should be injected.
 
  <p>
  This method is used by the <a href="../../cp/BeanStore.html" title="class in 
org.apache.juneau.cp"><code>BeanStore</code></a> for bean injection.
 
  <p>
- <b>Note:</b> This is different from <a 
href="#getResolvedName()"><code>getResolvedName()</code></a> which looks for <a 
href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>Name</code></a>
+ <b>Note:</b> This is different from <a 
href="#getResolvedName()"><code>getResolvedName()</code></a> which looks for <a 
href="../../annotation/Name.html" title="annotation interface in 
org.apache.juneau.annotation"><code>@Name</code></a>
  annotations for bean property mapping.</div>
 <dl class="notes">
 <dt>Returns:</dt>
diff --git 
a/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/Visibility.html 
b/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/Visibility.html
index 2f213fd583..1b95628554 100644
--- a/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/Visibility.html
+++ b/static/javadocs/9.2.1/org/apache/juneau/commons/reflect/Visibility.html
@@ -94,10 +94,10 @@ loadScripts(document, 'script');</script>
  <p>
  Used in conjunction with the following bean context properties:
  <ul class='javatree'>
-   <li class='jm'><a 
href="../../BeanContext.Builder.html#beanConstructorVisibility(org.apache.juneau.commons.reflect.Visibility)"><code>BeanContext.Builder.beanConstructorVisibility(org.apache.juneau.commons.reflect.Visibility)</code></a>
-   <li class='jm'><a 
href="../../BeanContext.Builder.html#beanClassVisibility(org.apache.juneau.commons.reflect.Visibility)"><code>BeanContext.Builder.beanClassVisibility(org.apache.juneau.commons.reflect.Visibility)</code></a>
-   <li class='jm'><a 
href="../../BeanContext.Builder.html#beanFieldVisibility(org.apache.juneau.commons.reflect.Visibility)"><code>BeanContext.Builder.beanFieldVisibility(org.apache.juneau.commons.reflect.Visibility)</code></a>
-   <li class='jm'><a 
href="../../BeanContext.Builder.html#beanMethodVisibility(org.apache.juneau.commons.reflect.Visibility)"><code>BeanContext.Builder.beanMethodVisibility(org.apache.juneau.commons.reflect.Visibility)</code></a>
+   <li class='jm'><code>BeanContext.Builder.beanConstructorVisibility</code>
+   <li class='jm'><code>BeanContext.Builder.beanClassVisibility</code>
+   <li class='jm'><code>BeanContext.Builder.beanFieldVisibility</code>
+   <li class='jm'><code>BeanContext.Builder.beanMethodVisibility</code>
  </ul></div>
 </section>
 <section class="summary">
diff --git 
a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ContentTypeMenuItem.html 
b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ContentTypeMenuItem.html
index 6026a06b20..e04fff572d 100644
--- 
a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ContentTypeMenuItem.html
+++ 
b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ContentTypeMenuItem.html
@@ -214,7 +214,7 @@ loadScripts(document, 'script');</script>
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Reader.html";
 title="class or interface in java.io" 
class="external-link"><code>Reader</code></a> - Serialized directly to the 
output.
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/CharSequence.html";
 title="class or interface in java.lang" 
class="external-link"><code>CharSequence</code></a> - Serialized directly to 
the output.
       <li>Other - Serialized as HTML using <a 
href="../../html/HtmlSerializer.html#DEFAULT"><code>HtmlSerializer.DEFAULT</code></a>.
-         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html"><code>org.apache.juneau.bean.html5</code></a>
 beans.
+         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html">HTML5 bean</a> classes.
    </ul></dd>
 </dl>
 </section>
diff --git 
a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/MenuItemWidget.html 
b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/MenuItemWidget.html
index 0dad1d2c9c..14499d6d82 100644
--- a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/MenuItemWidget.html
+++ b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/MenuItemWidget.html
@@ -289,7 +289,7 @@ loadScripts(document, 'script');</script>
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Reader.html";
 title="class or interface in java.io" 
class="external-link"><code>Reader</code></a> - Serialized directly to the 
output.
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/CharSequence.html";
 title="class or interface in java.lang" 
class="external-link"><code>CharSequence</code></a> - Serialized directly to 
the output.
       <li>Other - Serialized as HTML using <a 
href="../../html/HtmlSerializer.html#DEFAULT"><code>HtmlSerializer.DEFAULT</code></a>.
-         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html"><code>org.apache.juneau.bean.html5</code></a>
 beans.
+         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html">HTML5 bean</a> classes.
    </ul></dd>
 </dl>
 </section>
diff --git 
a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/QueryMenuItem.html 
b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/QueryMenuItem.html
index 23221199ea..cf7b8fe82b 100644
--- a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/QueryMenuItem.html
+++ b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/QueryMenuItem.html
@@ -199,7 +199,7 @@ loadScripts(document, 'script');</script>
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Reader.html";
 title="class or interface in java.io" 
class="external-link"><code>Reader</code></a> - Serialized directly to the 
output.
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/CharSequence.html";
 title="class or interface in java.lang" 
class="external-link"><code>CharSequence</code></a> - Serialized directly to 
the output.
       <li>Other - Serialized as HTML using <a 
href="../../html/HtmlSerializer.html#DEFAULT"><code>HtmlSerializer.DEFAULT</code></a>.
-         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html"><code>org.apache.juneau.bean.html5</code></a>
 beans.
+         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html">HTML5 bean</a> classes.
    </ul></dd>
 </dl>
 </section>
diff --git 
a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ThemeMenuItem.html 
b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ThemeMenuItem.html
index b119763ddc..34979bf073 100644
--- a/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ThemeMenuItem.html
+++ b/static/javadocs/9.2.1/org/apache/juneau/rest/widget/ThemeMenuItem.html
@@ -193,7 +193,7 @@ loadScripts(document, 'script');</script>
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/io/Reader.html";
 title="class or interface in java.io" 
class="external-link"><code>Reader</code></a> - Serialized directly to the 
output.
       <li><a 
href="https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/lang/CharSequence.html";
 title="class or interface in java.lang" 
class="external-link"><code>CharSequence</code></a> - Serialized directly to 
the output.
       <li>Other - Serialized as HTML using <a 
href="../../html/HtmlSerializer.html#DEFAULT"><code>HtmlSerializer.DEFAULT</code></a>.
-         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html"><code>org.apache.juneau.bean.html5</code></a>
 beans.
+         <br>Note that this includes any of the <a 
href="../../bean/html5/package-summary.html">HTML5 bean</a> classes.
    </ul></dd>
 </dl>
 </section>
diff --git 
a/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/ParameterInfo.html
 
b/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/ParameterInfo.html
index 32e81e9c0e..2af9afbf43 100644
--- 
a/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/ParameterInfo.html
+++ 
b/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/ParameterInfo.html
@@ -49,7 +49,7 @@
 <span class="source-line-no">036</span><span id="line-36"> * This class 
provides a convenient wrapper around {@link Parameter} that extends the 
standard Java reflection</span>
 <span class="source-line-no">037</span><span id="line-37"> * API with 
additional functionality for parameter introspection, annotation handling, and 
name resolution.</span>
 <span class="source-line-no">038</span><span id="line-38"> * It supports 
resolving parameter names from bytecode (when compiled with 
&lt;c&gt;-parameters&lt;/c&gt;) or from</span>
-<span class="source-line-no">039</span><span id="line-39"> * {@link 
org.apache.juneau.annotation.Name Name} annotations.</span>
+<span class="source-line-no">039</span><span id="line-39"> * {@link 
org.apache.juneau.annotation.Name @Name} annotations.</span>
 <span class="source-line-no">040</span><span id="line-40"> *</span>
 <span class="source-line-no">041</span><span id="line-41"> * &lt;h5 
class='section'&gt;Features:&lt;/h5&gt;</span>
 <span class="source-line-no">042</span><span id="line-42"> * &lt;ul 
class='spaced-list'&gt;</span>
@@ -90,7 +90,7 @@
 <span class="source-line-no">077</span><span id="line-77">    * 
&lt;p&gt;</span>
 <span class="source-line-no">078</span><span id="line-78">    * Parameter 
names are resolved in the following order:</span>
 <span class="source-line-no">079</span><span id="line-79">    * &lt;ol 
class='spaced-list'&gt;</span>
-<span class="source-line-no">080</span><span id="line-80">    *    
&lt;li&gt;{@link org.apache.juneau.annotation.Name Name} annotation value (if 
present)</span>
+<span class="source-line-no">080</span><span id="line-80">    *    
&lt;li&gt;{@link org.apache.juneau.annotation.Name @Name} annotation value (if 
present)</span>
 <span class="source-line-no">081</span><span id="line-81">    *    
&lt;li&gt;Bytecode parameter names (if compiled with 
&lt;c&gt;-parameters&lt;/c&gt; flag)</span>
 <span class="source-line-no">082</span><span id="line-82">    *    
&lt;li&gt;&lt;c&gt;arg0&lt;/c&gt;, &lt;c&gt;arg1&lt;/c&gt;, etc. (fallback if 
names unavailable)</span>
 <span class="source-line-no">083</span><span id="line-83">    * 
&lt;/ol&gt;</span>
@@ -413,7 +413,7 @@
 <span class="source-line-no">400</span><span id="line-400">    * 
&lt;p&gt;</span>
 <span class="source-line-no">401</span><span id="line-401">    * Searches for 
the parameter name in the following order:</span>
 <span class="source-line-no">402</span><span id="line-402">    * 
&lt;ol&gt;</span>
-<span class="source-line-no">403</span><span id="line-403">    *    
&lt;li&gt;{@link org.apache.juneau.annotation.Name Name} annotation value</span>
+<span class="source-line-no">403</span><span id="line-403">    *    
&lt;li&gt;{@link org.apache.juneau.annotation.Name @Name} annotation 
value</span>
 <span class="source-line-no">404</span><span id="line-404">    *    
&lt;li&gt;Bytecode parameter name (if available and not disabled via system 
property)</span>
 <span class="source-line-no">405</span><span id="line-405">    *    
&lt;li&gt;Matching parameters in parent classes/interfaces</span>
 <span class="source-line-no">406</span><span id="line-406">    * 
&lt;/ol&gt;</span>
@@ -422,7 +422,7 @@
 <span class="source-line-no">409</span><span id="line-409">    * This method 
is used for mapping constructor parameters to bean properties.</span>
 <span class="source-line-no">410</span><span id="line-410">    *</span>
 <span class="source-line-no">411</span><span id="line-411">    * 
&lt;p&gt;</span>
-<span class="source-line-no">412</span><span id="line-412">    * 
&lt;b&gt;Note:&lt;/b&gt; This is different from {@link #getResolvedQualifier()} 
which looks for {@link org.apache.juneau.annotation.Named Named}</span>
+<span class="source-line-no">412</span><span id="line-412">    * 
&lt;b&gt;Note:&lt;/b&gt; This is different from {@link #getResolvedQualifier()} 
which looks for {@link org.apache.juneau.annotation.Named @Named}</span>
 <span class="source-line-no">413</span><span id="line-413">    * annotations 
for bean injection purposes.</span>
 <span class="source-line-no">414</span><span id="line-414">    *</span>
 <span class="source-line-no">415</span><span id="line-415">    * @return The 
parameter name if found, or &lt;jk&gt;null&lt;/jk&gt; if not available.</span>
@@ -435,14 +435,14 @@
 <span class="source-line-no">422</span><span id="line-422">    * Finds the 
bean injection qualifier for this parameter.</span>
 <span class="source-line-no">423</span><span id="line-423">    *</span>
 <span class="source-line-no">424</span><span id="line-424">    * 
&lt;p&gt;</span>
-<span class="source-line-no">425</span><span id="line-425">    * Searches for 
the {@link org.apache.juneau.annotation.Named Named} annotation value to 
determine</span>
+<span class="source-line-no">425</span><span id="line-425">    * Searches for 
the {@link org.apache.juneau.annotation.Named @Named} annotation value to 
determine</span>
 <span class="source-line-no">426</span><span id="line-426">    * which named 
bean should be injected.</span>
 <span class="source-line-no">427</span><span id="line-427">    *</span>
 <span class="source-line-no">428</span><span id="line-428">    * 
&lt;p&gt;</span>
 <span class="source-line-no">429</span><span id="line-429">    * This method 
is used by the {@link org.apache.juneau.cp.BeanStore} for bean injection.</span>
 <span class="source-line-no">430</span><span id="line-430">    *</span>
 <span class="source-line-no">431</span><span id="line-431">    * 
&lt;p&gt;</span>
-<span class="source-line-no">432</span><span id="line-432">    * 
&lt;b&gt;Note:&lt;/b&gt; This is different from {@link #getResolvedName()} 
which looks for {@link org.apache.juneau.annotation.Name Name}</span>
+<span class="source-line-no">432</span><span id="line-432">    * 
&lt;b&gt;Note:&lt;/b&gt; This is different from {@link #getResolvedName()} 
which looks for {@link org.apache.juneau.annotation.Name @Name}</span>
 <span class="source-line-no">433</span><span id="line-433">    * annotations 
for bean property mapping.</span>
 <span class="source-line-no">434</span><span id="line-434">    *</span>
 <span class="source-line-no">435</span><span id="line-435">    * @return The 
bean qualifier name if {@code @Named} annotation is found, or 
&lt;jk&gt;null&lt;/jk&gt; if not annotated.</span>
diff --git 
a/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/Visibility.html
 
b/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/Visibility.html
index dc9e9e8676..8d1887f98c 100644
--- 
a/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/Visibility.html
+++ 
b/static/javadocs/9.2.1/src-html/org/apache/juneau/commons/reflect/Visibility.html
@@ -44,10 +44,10 @@
 <span class="source-line-no">031</span><span id="line-31"> * &lt;p&gt;</span>
 <span class="source-line-no">032</span><span id="line-32"> * Used in 
conjunction with the following bean context properties:</span>
 <span class="source-line-no">033</span><span id="line-33"> * &lt;ul 
class='javatree'&gt;</span>
-<span class="source-line-no">034</span><span id="line-34"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanConstructorVisibility(org.apache.juneau.commons.reflect.Visibility)}</span>
-<span class="source-line-no">035</span><span id="line-35"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanClassVisibility(org.apache.juneau.commons.reflect.Visibility)}</span>
-<span class="source-line-no">036</span><span id="line-36"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanFieldVisibility(org.apache.juneau.commons.reflect.Visibility)}</span>
-<span class="source-line-no">037</span><span id="line-37"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanMethodVisibility(org.apache.juneau.commons.reflect.Visibility)}</span>
+<span class="source-line-no">034</span><span id="line-34"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanConstructorVisibility}</span>
+<span class="source-line-no">035</span><span id="line-35"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanClassVisibility}</span>
+<span class="source-line-no">036</span><span id="line-36"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanFieldVisibility}</span>
+<span class="source-line-no">037</span><span id="line-37"> *    &lt;li 
class='jm'&gt;{@link 
org.apache.juneau.BeanContext.Builder#beanMethodVisibility}</span>
 <span class="source-line-no">038</span><span id="line-38"> * &lt;/ul&gt;</span>
 <span class="source-line-no">039</span><span id="line-39"> *</span>
 <span class="source-line-no">040</span><span id="line-40"> */</span>
diff --git 
a/static/javadocs/9.2.1/src-html/org/apache/juneau/rest/widget/MenuItemWidget.html
 
b/static/javadocs/9.2.1/src-html/org/apache/juneau/rest/widget/MenuItemWidget.html
index 76211b1a45..bee29c4b53 100644
--- 
a/static/javadocs/9.2.1/src-html/org/apache/juneau/rest/widget/MenuItemWidget.html
+++ 
b/static/javadocs/9.2.1/src-html/org/apache/juneau/rest/widget/MenuItemWidget.html
@@ -125,7 +125,7 @@
 <span class="source-line-no">112</span><span id="line-112">    *       
&lt;li&gt;{@link Reader} - Serialized directly to the output.</span>
 <span class="source-line-no">113</span><span id="line-113">    *       
&lt;li&gt;{@link CharSequence} - Serialized directly to the output.</span>
 <span class="source-line-no">114</span><span id="line-114">    *       
&lt;li&gt;Other - Serialized as HTML using {@link 
HtmlSerializer#DEFAULT}.</span>
-<span class="source-line-no">115</span><span id="line-115">    *          
&lt;br&gt;Note that this includes any of the {@link 
org.apache.juneau.bean.html5} beans.</span>
+<span class="source-line-no">115</span><span id="line-115">    *          
&lt;br&gt;Note that this includes any of the {@linkplain 
org.apache.juneau.bean.html5 HTML5 bean} classes.</span>
 <span class="source-line-no">116</span><span id="line-116">    *    
&lt;/ul&gt;</span>
 <span class="source-line-no">117</span><span id="line-117">    */</span>
 <span class="source-line-no">118</span><span id="line-118">   public abstract 
Object getContent(RestRequest req, RestResponse res);</span>
diff --git a/static/javadocs/releases.json b/static/javadocs/releases.json
index 8ee1c6dd9f..7ca3ca6967 100644
--- a/static/javadocs/releases.json
+++ b/static/javadocs/releases.json
@@ -2,7 +2,7 @@
   {
     "version": "9.2.1",
     "path": "9.2.1/",
-    "released": "2025-12-28"
+    "released": "2025-12-29"
   },
   {
     "version": "9.2.0",

Reply via email to