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

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

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