You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/07/18 10:50:26 UTC

[sling-org-apache-sling-commons-messaging] 06/08: [checkstyle] (javadoc) MissingJavadocType

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

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-messaging.git

commit 826db274fae0f5b48ef4234b24f8d555bf5d6dd9
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Jul 18 12:48:51 2021 +0200

    [checkstyle] (javadoc) MissingJavadocType
---
 .../java/org/apache/sling/commons/messaging/MessageService.java     | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/main/java/org/apache/sling/commons/messaging/MessageService.java b/src/main/java/org/apache/sling/commons/messaging/MessageService.java
index c7d7646..03bb2f9 100644
--- a/src/main/java/org/apache/sling/commons/messaging/MessageService.java
+++ b/src/main/java/org/apache/sling/commons/messaging/MessageService.java
@@ -23,6 +23,12 @@ import java.util.concurrent.CompletableFuture;
 import org.jetbrains.annotations.NotNull;
 import org.osgi.annotation.versioning.ProviderType;
 
+/**
+ * Service for sending messages.
+ *
+ * @param <S> the type of result returned by send operation
+ * @param <T> the type of message to send
+ */
 @ProviderType
 public interface MessageService<T, S> {