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

markt-asf pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new c37e06c926 Fix Javadoc warnings (all from recent changes)
c37e06c926 is described below

commit c37e06c9265e5e474312f6cc864b943b25dd785f
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Jun 15 13:40:09 2026 +0100

    Fix Javadoc warnings (all from recent changes)
---
 .../catalina/tribes/group/interceptors/OrderInterceptor.java       | 5 +++++
 .../catalina/tribes/membership/cloud/CloudMembershipProvider.java  | 7 +++++++
 java/org/apache/catalina/util/ContextName.java                     | 5 +++++
 java/org/apache/tomcat/jni/SSL.java                                | 6 ++++++
 4 files changed, 23 insertions(+)

diff --git 
a/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java 
b/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
index 6a015ddcdc..59d9cda4ed 100644
--- a/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
+++ b/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
@@ -263,6 +263,11 @@ public class OrderInterceptor extends 
ChannelInterceptorBase {
             this(0);
         }
 
+        /**
+         * Constructs a Counter with the given initial value.
+         *
+         * @param startValue The initial value
+         */
         public Counter(int startValue) {
             value =  new AtomicInteger(startValue);
         }
diff --git 
a/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java 
b/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
index 46ff974194..ea8e7eb76b 100644
--- 
a/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
+++ 
b/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
@@ -137,6 +137,13 @@ public abstract class CloudMembershipProvider extends 
MembershipProviderBase imp
         return val;
     }
 
+    /**
+     * Default constructor.
+     */
+    public CloudMembershipProvider() {
+    }
+
+
     /**
      * Get the Kubernetes namespace, or "tomcat" if the Kubernetes environment 
variable cannot be found (with a warning
      * log about the missing namespace).
diff --git a/java/org/apache/catalina/util/ContextName.java 
b/java/org/apache/catalina/util/ContextName.java
index 54014c37f4..4945476f27 100644
--- a/java/org/apache/catalina/util/ContextName.java
+++ b/java/org/apache/catalina/util/ContextName.java
@@ -201,6 +201,11 @@ public final class ContextName {
     }
 
 
+    /**
+     * Checks if the path for this instance is valid.
+     *
+     * @return {@code true} if the path given/calculated for this instance is 
valid, otherwise {@code false}
+     */
     public boolean isPathValid() {
         // No need to test for null since path can never be null (see 
constructors)
         //
diff --git a/java/org/apache/tomcat/jni/SSL.java 
b/java/org/apache/tomcat/jni/SSL.java
index 6b39679c04..5ac6eabe86 100644
--- a/java/org/apache/tomcat/jni/SSL.java
+++ b/java/org/apache/tomcat/jni/SSL.java
@@ -1141,6 +1141,12 @@ public final class SSL {
      */
     public static native int getPostHandshakeAuthInProgress(long ssl);
 
+    /**
+     * Marks post handshake authentication complete for the connection. Used 
when JSSE is performing certificate
+     * verification for OpenSSL.
+     *
+     * @param ssl the SSL instance (SSL *)
+     */
     public static native void markPostHandshakeAuthComplete(long ssl);
 
     /**


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to