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:46 UTC

[sling-org-apache-sling-mom] 02/06: SLING-5645 Removed my signature from all source code

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 8a49221f405fb1a380ef2e3b3a3906fecd0d054e
Author: Ian Boston <ie...@apache.org>
AuthorDate: Mon Oct 3 15:51:56 2016 +0000

    SLING-5645 Removed my signature from all source code
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/commons/mom/api@1763175 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/mom/MessageFilter.java           | 1 -
 src/main/java/org/apache/sling/mom/QueueManager.java            | 1 -
 src/main/java/org/apache/sling/mom/QueueReader.java             | 1 -
 src/main/java/org/apache/sling/mom/RequeueMessageException.java | 1 -
 src/main/java/org/apache/sling/mom/Subscriber.java              | 1 -
 src/main/java/org/apache/sling/mom/TopicManager.java            | 1 -
 src/main/java/org/apache/sling/mom/Types.java                   | 1 -
 src/main/java/org/apache/sling/mom/package-info.java            | 1 -
 8 files changed, 8 deletions(-)

diff --git a/src/main/java/org/apache/sling/mom/MessageFilter.java b/src/main/java/org/apache/sling/mom/MessageFilter.java
index da52294..bce593e 100644
--- a/src/main/java/org/apache/sling/mom/MessageFilter.java
+++ b/src/main/java/org/apache/sling/mom/MessageFilter.java
@@ -22,7 +22,6 @@ package org.apache.sling.mom;
 import java.util.Map;
 
 /**
- * Created by ieb on 30/03/2016.
  * Filter inbound messages, optionally implemented by QueueReaders.
  */
 public interface MessageFilter {
diff --git a/src/main/java/org/apache/sling/mom/QueueManager.java b/src/main/java/org/apache/sling/mom/QueueManager.java
index 2db6ded..c3a0260 100644
--- a/src/main/java/org/apache/sling/mom/QueueManager.java
+++ b/src/main/java/org/apache/sling/mom/QueueManager.java
@@ -22,7 +22,6 @@ package org.apache.sling.mom;
 import java.util.Map;
 
 /**
- * Created by ieb on 31/03/2016.
  * Manages named queues allowing messages to be added to the queue and a queue reader to be opened to read messages from a queue.
  */
 public interface QueueManager {
diff --git a/src/main/java/org/apache/sling/mom/QueueReader.java b/src/main/java/org/apache/sling/mom/QueueReader.java
index d8db29c..e1f414f 100644
--- a/src/main/java/org/apache/sling/mom/QueueReader.java
+++ b/src/main/java/org/apache/sling/mom/QueueReader.java
@@ -22,7 +22,6 @@ package org.apache.sling.mom;
 import java.util.Map;
 
 /**
- * Created by ieb on 30/03/2016.
  * A queue reader receives messages from the queue in the onMessage method. It should avoid performing processing in
  * the onMessage method aiming to return as fast as possible.
  *
diff --git a/src/main/java/org/apache/sling/mom/RequeueMessageException.java b/src/main/java/org/apache/sling/mom/RequeueMessageException.java
index 978b6b1..be1d0b2 100644
--- a/src/main/java/org/apache/sling/mom/RequeueMessageException.java
+++ b/src/main/java/org/apache/sling/mom/RequeueMessageException.java
@@ -19,7 +19,6 @@
 package org.apache.sling.mom;
 
 /**
- * Created by ieb on 02/04/2016.
  * Thown when a queue reader cant process a message and needs to indicate that the message sould be re-queued and retried some time later.
  */
 public class RequeueMessageException extends Exception {
diff --git a/src/main/java/org/apache/sling/mom/Subscriber.java b/src/main/java/org/apache/sling/mom/Subscriber.java
index abb906e..38106eb 100644
--- a/src/main/java/org/apache/sling/mom/Subscriber.java
+++ b/src/main/java/org/apache/sling/mom/Subscriber.java
@@ -21,7 +21,6 @@ package org.apache.sling.mom;
 import java.util.Map;
 
 /**
- * Created by ieb on 30/03/2016.
  *
  * To implement a topic subscriber implement this interface, register it as an OSGi service and the TopicManager
  * which will implement a OSGi Whiteboard pattern will register it based on the values in the OSGi property "topics".
diff --git a/src/main/java/org/apache/sling/mom/TopicManager.java b/src/main/java/org/apache/sling/mom/TopicManager.java
index 357d865..dcc5490 100644
--- a/src/main/java/org/apache/sling/mom/TopicManager.java
+++ b/src/main/java/org/apache/sling/mom/TopicManager.java
@@ -27,7 +27,6 @@ import java.util.Map;
 import java.util.Set;
 
 /**
- * Created by ieb on 30/03/2016.
  * Manages Topics allowing callers to publish messages onto a Topic and Subscribe to a topic.
  *
  * To create a subscriber implement the Subscriber interface and the implementation of TopicManager should
diff --git a/src/main/java/org/apache/sling/mom/Types.java b/src/main/java/org/apache/sling/mom/Types.java
index 3d7358d..a390a80 100644
--- a/src/main/java/org/apache/sling/mom/Types.java
+++ b/src/main/java/org/apache/sling/mom/Types.java
@@ -19,7 +19,6 @@
 package org.apache.sling.mom;
 
 /**
- * Created by ieb on 13/04/2016.
  */
 public final class Types {
     private Types() {
diff --git a/src/main/java/org/apache/sling/mom/package-info.java b/src/main/java/org/apache/sling/mom/package-info.java
index d4d7a37..60006a6 100644
--- a/src/main/java/org/apache/sling/mom/package-info.java
+++ b/src/main/java/org/apache/sling/mom/package-info.java
@@ -18,7 +18,6 @@
  */
 
 /**
- * Created by ieb on 30/03/2016.
  */
 
 @Version("1.0.0")

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