You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by tm...@apache.org on 2020/01/30 10:47:29 UTC

[sling-org-apache-sling-distribution-api] branch master updated: SLING-9016 Distribution Event should be generated when the package is dropped

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

tmaret pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-distribution-api.git


The following commit(s) were added to refs/heads/master by this push:
     new 2314460  SLING-9016 Distribution Event should be generated when the package is dropped
     new 00ac6c0  Merge pull request #1 from actinium15/issue/SLING-9016
2314460 is described below

commit 231446049543ab699f02f46cb69b4384b01679f1
Author: Ashish Chopra <as...@adobe.com>
AuthorDate: Thu Jan 30 16:13:10 2020 +0530

    SLING-9016 Distribution Event should be generated when the package is dropped
---
 .../org/apache/sling/distribution/event/DistributionEventTopics.java  | 4 ++++
 src/main/java/org/apache/sling/distribution/event/package-info.java   | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/distribution/event/DistributionEventTopics.java b/src/main/java/org/apache/sling/distribution/event/DistributionEventTopics.java
index 8a75dda..572e25c 100644
--- a/src/main/java/org/apache/sling/distribution/event/DistributionEventTopics.java
+++ b/src/main/java/org/apache/sling/distribution/event/DistributionEventTopics.java
@@ -43,6 +43,10 @@ public interface DistributionEventTopics {
      */
     String AGENT_PACKAGE_DISTRIBUTED = EVENT_BASE + "/agent/package/distributed";
 
+    /**
+     * event for package dropped
+     */
+    String AGENT_PACKAGE_DROPPED = EVENT_BASE + "/agent/package/dropped";
 
     /**
      * event for package imported
diff --git a/src/main/java/org/apache/sling/distribution/event/package-info.java b/src/main/java/org/apache/sling/distribution/event/package-info.java
index 10640fd..41d9d59 100644
--- a/src/main/java/org/apache/sling/distribution/event/package-info.java
+++ b/src/main/java/org/apache/sling/distribution/event/package-info.java
@@ -17,7 +17,7 @@
  * under the License.
  */
 
-@Version("0.1.1")
+@Version("0.2.0")
 package org.apache.sling.distribution.event;
 
 import aQute.bnd.annotation.Version;