This is an automated email from the ASF dual-hosted git repository.
vavrtom pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git
The following commit(s) were added to refs/heads/main by this push:
new 15b2f4f058 NO-JIRA: Fixed javadoc (#156)
15b2f4f058 is described below
commit 15b2f4f058fe33d3dba18bedda723f20e6c3e7ff
Author: vavrtom <[email protected]>
AuthorDate: Mon Nov 7 13:06:42 2022 +0100
NO-JIRA: Fixed javadoc (#156)
---
.../org/apache/qpid/server/exchange/HeadersExchangeImpl.java | 1 -
...uppressingInheritedAccessControlContextThreadFactory.java | 5 ++---
.../qpid/server/security/auth/AuthenticationResult.java | 3 +--
.../CompositeUsernamePasswordAuthenticationManagerImpl.java | 12 +++++++-----
.../java/org/apache/qpid/server/util/CommandLineParser.java | 2 +-
.../ConfiguredObjectMethodOperationTransformer.java | 4 ++--
.../filter/RewriteRequestForUncompressedJavascript.java | 2 +-
7 files changed, 14 insertions(+), 15 deletions(-)
diff --git
a/broker-core/src/main/java/org/apache/qpid/server/exchange/HeadersExchangeImpl.java
b/broker-core/src/main/java/org/apache/qpid/server/exchange/HeadersExchangeImpl.java
index a454cfb5e6..6c48603d35 100644
---
a/broker-core/src/main/java/org/apache/qpid/server/exchange/HeadersExchangeImpl.java
+++
b/broker-core/src/main/java/org/apache/qpid/server/exchange/HeadersExchangeImpl.java
@@ -42,7 +42,6 @@ import
org.apache.qpid.server.virtualhost.QueueManagingVirtualHost;
* An exchange that binds queues based on a set of required headers and header
values
* and routes messages to these queues by matching the headers of the message
against
* those with which the queues were bound.
- * <p>
* <pre>
* The Headers Exchange
*
diff --git
a/broker-core/src/main/java/org/apache/qpid/server/pool/SuppressingInheritedAccessControlContextThreadFactory.java
b/broker-core/src/main/java/org/apache/qpid/server/pool/SuppressingInheritedAccessControlContextThreadFactory.java
index 32a8077fa3..63b168c386 100644
---
a/broker-core/src/main/java/org/apache/qpid/server/pool/SuppressingInheritedAccessControlContextThreadFactory.java
+++
b/broker-core/src/main/java/org/apache/qpid/server/pool/SuppressingInheritedAccessControlContextThreadFactory.java
@@ -20,7 +20,6 @@
*/
package org.apache.qpid.server.pool;
-
import javax.security.auth.Subject;
import java.security.PrivilegedAction;
@@ -29,8 +28,8 @@ import java.util.concurrent.ThreadFactory;
import java.util.concurrent.atomic.AtomicInteger;
/**
- * <code>ThreadFactory</code> to create threads with empty inherited
<code>java.security.AccessControlContext</code>
- * <p></p>
+ * <code>ThreadFactory</code> to create threads with empty inherited
<code>java.security.AccessControlContext</code>.
+ * <br/>
* It delegates thread creation to <code>Executors</code> default thread
factory.
*/
public class SuppressingInheritedAccessControlContextThreadFactory implements
ThreadFactory
diff --git
a/broker-core/src/main/java/org/apache/qpid/server/security/auth/AuthenticationResult.java
b/broker-core/src/main/java/org/apache/qpid/server/security/auth/AuthenticationResult.java
index 215e857b86..49a7f727d7 100644
---
a/broker-core/src/main/java/org/apache/qpid/server/security/auth/AuthenticationResult.java
+++
b/broker-core/src/main/java/org/apache/qpid/server/security/auth/AuthenticationResult.java
@@ -25,12 +25,11 @@ import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
-
/**
* Encapsulates the result of an attempt to authenticate using an {@link
org.apache.qpid.server.model.AuthenticationProvider}.
* <p>
* The authentication status describes the overall outcome.
- * <p>
+ * </p>
* <ol>
* <li>If authentication status is SUCCESS, at least one {@link Principal}
will be populated.
* </li>
diff --git
a/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/CompositeUsernamePasswordAuthenticationManagerImpl.java
b/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/CompositeUsernamePasswordAuthenticationManagerImpl.java
index 3674ef5f78..cb35032419 100644
---
a/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/CompositeUsernamePasswordAuthenticationManagerImpl.java
+++
b/broker-core/src/main/java/org/apache/qpid/server/security/auth/manager/CompositeUsernamePasswordAuthenticationManagerImpl.java
@@ -269,11 +269,13 @@ public class
CompositeUsernamePasswordAuthenticationManagerImpl
}
/**
- * MD5 => ["PLAIN", "CRAM-MD5-HASHED", "CRAM-MD5-HEX"]
- * Plain => ["PLAIN", "CRAM-MD5", "SCRAM-SHA-1", "SCRAM-SHA-256"]
- * SCRAM-SHA-1 => ["PLAIN", "SCRAM-SHA-1"]
- * SCRAM-SHA-256 => ["PLAIN", "SCRAM-SHA-256"]
- * SimpleLDAP => ["PLAIN"]
+ * <ul>
+ * <li>MD5 => ["PLAIN", "CRAM-MD5-HASHED", "CRAM-MD5-HEX"]</li>
+ * <li>Plain => ["PLAIN", "CRAM-MD5", "SCRAM-SHA-1",
"SCRAM-SHA-256"]</li>
+ * <li>SCRAM-SHA-1 => ["PLAIN", "SCRAM-SHA-1"]</li>
+ * <li>SCRAM-SHA-256 => ["PLAIN", "SCRAM-SHA-256"]</li>
+ * <li>SimpleLDAP => ["PLAIN"]</li>
+ * </ul>
*
* @return List of mechanism names
*/
diff --git
a/broker-core/src/main/java/org/apache/qpid/server/util/CommandLineParser.java
b/broker-core/src/main/java/org/apache/qpid/server/util/CommandLineParser.java
index 15cf80b72f..74de8119f9 100644
---
a/broker-core/src/main/java/org/apache/qpid/server/util/CommandLineParser.java
+++
b/broker-core/src/main/java/org/apache/qpid/server/util/CommandLineParser.java
@@ -604,7 +604,7 @@ public class CommandLineParser
*
* @param args The command line.
* @param commandLine The command line parser.
- * @param properties The properties object to inject all parsed
properties into (optional may be <tt>null</tt>).
+ * @param properties The properties object to inject all parsed
properties into (optional may be <code>null</code>).
*
* @return A set of properties containing all name=value pairs from the
command line.
*/
diff --git
a/broker-instrumentation/src/main/java/org/apache/qpid/server/instrumentation/transformer/ConfiguredObjectMethodOperationTransformer.java
b/broker-instrumentation/src/main/java/org/apache/qpid/server/instrumentation/transformer/ConfiguredObjectMethodOperationTransformer.java
index e7f31602aa..9a87df1ae8 100644
---
a/broker-instrumentation/src/main/java/org/apache/qpid/server/instrumentation/transformer/ConfiguredObjectMethodOperationTransformer.java
+++
b/broker-instrumentation/src/main/java/org/apache/qpid/server/instrumentation/transformer/ConfiguredObjectMethodOperationTransformer.java
@@ -62,7 +62,7 @@ import
org.apache.qpid.server.instrumentation.metadata.MethodDescription;
* MH_3 = lookup.unreflect(method);
* }
*
- * ConfiguredObjectMethodOperation(final Class<C> clazz,
+ * ConfiguredObjectMethodOperation(final Class<C> clazz,
* final Method operation,
* final ConfiguredObjectTypeRegistry
typeRegistry)
* {
@@ -75,7 +75,7 @@ import
org.apache.qpid.server.instrumentation.metadata.MethodDescription;
* _hashcode = _signature.hashCode();
* }
*
- * public Object perform(C subject, Map<String, Object> parameters)
+ * public Object perform(C subject, Map<String, Object> parameters)
* {
* //
* // original code
diff --git
a/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/RewriteRequestForUncompressedJavascript.java
b/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/RewriteRequestForUncompressedJavascript.java
index f9280d6e0f..1b0509b1a5 100644
---
a/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/RewriteRequestForUncompressedJavascript.java
+++
b/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/filter/RewriteRequestForUncompressedJavascript.java
@@ -35,7 +35,7 @@ import javax.servlet.http.HttpServletRequest;
* Filter is active when context variable
"qpid.httpManagement.serveUncompressedDojo" has value true.
*
* It redirects request from regular dojo file to uncompressed dojo file,
- * e.g. /dojo/dojo.js => /dojo/dojo.js.uncompressed.js
+ * e.g. /dojo/dojo.js => /dojo/dojo.js.uncompressed.js.
*
* Is used mostly for debug purposes.
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]