You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2016/10/10 08:03:01 UTC

[3/7] activemq-artemis git commit: javadoc: Fix doclint html errors

javadoc: Fix doclint html errors


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/3b9ed795
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/3b9ed795
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/3b9ed795

Branch: refs/heads/master
Commit: 3b9ed795d1e5333d196907c2e31c1197f5af45a3
Parents: c708836
Author: Ville Skytt� <vi...@iki.fi>
Authored: Sun Oct 9 17:24:55 2016 +0300
Committer: Clebert Suconic <cl...@apache.org>
Committed: Mon Oct 10 10:02:49 2016 +0200

----------------------------------------------------------------------
 .../activemq/artemis/junit/EmbeddedJMSResource.java | 16 ++++++++--------
 .../jaas/TextFileCertificateLoginModule.java        |  4 ++--
 2 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/3b9ed795/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
----------------------------------------------------------------------
diff --git a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
index 7d5d3f0..525657b 100644
--- a/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
+++ b/artemis-junit/src/main/java/org/apache/activemq/artemis/junit/EmbeddedJMSResource.java
@@ -213,7 +213,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Start the embedded EmbeddedJMSResource.
-    * <p/>
+    * <p>
     * The server will normally be started by JUnit using the before() method.  This method allows the server to
     * be started manually to support advanced testing scenarios.
     */
@@ -228,7 +228,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Stop the embedded ActiveMQ broker, blocking until the broker has stopped.
-    * <p/>
+    * <p>
     * The broker will normally be stopped by JUnit using the after() method.  This method allows the broker to
     * be stopped manually to support advanced testing scenarios.
     */
@@ -250,7 +250,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Start the embedded ActiveMQ Broker
-    * <p/>
+    * <p>
     * Invoked by JUnit to setup the resource
     */
    @Override
@@ -264,7 +264,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Stop the embedded ActiveMQ Broker
-    * <p/>
+    * <p>
     * Invoked by JUnit to tear down the resource
     */
    @Override
@@ -278,7 +278,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Get the EmbeddedJMS server.
-    * <p/>
+    * <p>
     * This may be required for advanced configuration of the EmbeddedJMS server.
     *
     * @return
@@ -323,7 +323,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Get the Queue corresponding to a JMS Destination.
-    * <p/>
+    * <p>
     * The full name of the JMS destination including the prefix should be provided - i.e. queue://myQueue
     * or topic://myTopic.  If the destination type prefix is not included in the destination name, a prefix
     * of "queue://" is assumed.
@@ -359,7 +359,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Get the Queues corresponding to a JMS Topic.
-    * <p/>
+    * <p>
     * The full name of the JMS Topic including the prefix should be provided - i.e. topic://myTopic.  If the destination type prefix
     * is not included in the destination name, a prefix of "topic://" is assumed.
     *
@@ -391,7 +391,7 @@ public class EmbeddedJMSResource extends ExternalResource {
 
    /**
     * Get the number of messages in a specific JMS Destination.
-    * <p/>
+    * <p>
     * The full name of the JMS destination including the prefix should be provided - i.e. queue://myQueue
     * or topic://myTopic.  If the destination type prefix is not included in the destination name, a prefix
     * of "queue://" is assumed.

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/3b9ed795/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/TextFileCertificateLoginModule.java
----------------------------------------------------------------------
diff --git a/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/TextFileCertificateLoginModule.java b/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/TextFileCertificateLoginModule.java
index 478bbf7..ca103cd 100644
--- a/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/TextFileCertificateLoginModule.java
+++ b/artemis-server/src/main/java/org/apache/activemq/artemis/spi/core/security/jaas/TextFileCertificateLoginModule.java
@@ -27,8 +27,8 @@ import java.util.Set;
 /**
  * A LoginModule allowing for SSL certificate based authentication based on
  * Distinguished Names (DN) stored in text files. The DNs are parsed using a
- * Properties class where each line is <user_name>=<user_DN>. This class also
- * uses a group definition file where each line is <role_name>=<user_name_1>,<user_name_2>,etc.
+ * Properties class where each line is &lt;user_name&gt;=&lt;user_DN&gt;. This class also
+ * uses a group definition file where each line is &lt;role_name&gt;=&lt;user_name_1&gt;,&lt;user_name_2&gt;,etc.
  * The user and role files' locations must be specified in the
  * org.apache.activemq.jaas.textfiledn.user and
  * org.apache.activemq.jaas.textfiledn.role properties respectively. NOTE: This