You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 09:55:48 UTC

[sling-org-apache-sling-mom] 04/06: SLING-5645 - more javsoc fixes.

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

rombert pushed a commit to annotated tag org.apache.sling.mom-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-mom.git

commit 7f95bacbd1d93ae589d16fd4c6519f11e4373e0d
Author: Ian Boston <ie...@apache.org>
AuthorDate: Wed Oct 5 09:45:08 2016 +0000

    SLING-5645 - more javsoc fixes.
    
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/commons/mom/api@1763376 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/mom/RequeueMessageException.java | 6 +++---
 src/main/java/org/apache/sling/mom/Subscriber.java              | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/sling/mom/RequeueMessageException.java b/src/main/java/org/apache/sling/mom/RequeueMessageException.java
index be1d0b2..2e84577 100644
--- a/src/main/java/org/apache/sling/mom/RequeueMessageException.java
+++ b/src/main/java/org/apache/sling/mom/RequeueMessageException.java
@@ -25,7 +25,7 @@ public class RequeueMessageException extends Exception {
 
     /**
      *
-     * @param message
+     * @param message the message
      */
     public RequeueMessageException(String message) {
         super(message);
@@ -33,8 +33,8 @@ public class RequeueMessageException extends Exception {
 
     /**
      *
-     * @param message
-     * @param cause
+     * @param message the message
+     * @param cause the cause
      */
     public RequeueMessageException(String message, Throwable cause) {
         super(message, cause);
diff --git a/src/main/java/org/apache/sling/mom/Subscriber.java b/src/main/java/org/apache/sling/mom/Subscriber.java
index ed5ce19..9c9fd25 100644
--- a/src/main/java/org/apache/sling/mom/Subscriber.java
+++ b/src/main/java/org/apache/sling/mom/Subscriber.java
@@ -39,8 +39,8 @@ public interface Subscriber {
     /**
      * Will be called with each message matching the filters the TopicListener is registered with.
      *
-     * @param topic
-     * @param message
+     * @param topic message topic.
+     * @param message message as a map of maps.
      */
     void onMessage(Types.TopicName topic, Map<String, Object> message);
 

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.