Blame SOURCES/0003-Add-CM_LOCATION_CHANGED-property-to-ConfigurationEve.patch

13bc3b
From ec6885545fb6889ed9a5522647b9780a53c6fd93 Mon Sep 17 00:00:00 2001
13bc3b
From: Marek Goldmann <goldmann@fedoraproject.org>
13bc3b
Date: Fri, 15 Jun 2012 11:25:12 +0200
13bc3b
Subject: [PATCH 3/3] Add CM_LOCATION_CHANGED property to ConfigurationEvent.
13bc3b
13bc3b
---
13bc3b
 .../java/org/osgi/service/cm/ConfigurationEvent.java     |   14 ++++++++++++++
13bc3b
 1 file changed, 14 insertions(+)
13bc3b
13bc3b
diff --git a/src/main/java/org/osgi/service/cm/ConfigurationEvent.java b/src/main/java/org/osgi/service/cm/ConfigurationEvent.java
13bc3b
index f17007f..e98f3ac 100644
13bc3b
--- a/src/main/java/org/osgi/service/cm/ConfigurationEvent.java
13bc3b
+++ b/src/main/java/org/osgi/service/cm/ConfigurationEvent.java
13bc3b
@@ -79,6 +79,20 @@ public class ConfigurationEvent {
13bc3b
 	 */
13bc3b
 	public static final int			CM_DELETED	= 2;
13bc3b
 	/**
13bc3b
+	 * The location of a {@code Configuration} has been changed.
13bc3b
+	 * 
13bc3b
+	 * 

13bc3b
+	 * This {@code ConfigurationEvent} type that indicates that the location of
13bc3b
+	 * a {@code Configuration} object has been changed.
13bc3b
+	 * 
13bc3b
+	 * An event is fired when a call to
13bc3b
+	 * {@link Configuration#setBundleLocation(String)} successfully changes the
13bc3b
+	 * location.
13bc3b
+	 * 
13bc3b
+	 * @since 1.4
13bc3b
+	 */
13bc3b
+	public static final int			CM_LOCATION_CHANGED	= 3;
13bc3b
+	/**
13bc3b
 	 * Type of this event.
13bc3b
 	 * 
13bc3b
 	 * @see #getType
13bc3b
-- 
13bc3b
1.7.10.2
13bc3b