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

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

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