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

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

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