1. 014cca6 FELIX-4884 : listConfigurations should return null if no configuration is found by Carsten Ziegeler · 9 years ago
  2. 45ab8ed FELIX-4851 Deliver Configuration Events listeners in STARTED state also. by A. J. David Bosschaert · 9 years ago
  3. f4fbe41 [FELIX-4851] ConfigAdmin only forwards ConfigurationEvents to ConfigurationListeners which are provided by bundles that are in state ACTIVE by Guillaume Nodet · 9 years ago
  4. 39f688d [FELIX-4811] Optimize ConfigurationManager#listConfigurations by Guillaume Nodet · 9 years ago
  5. 10c313c FELIX-4385: Applied the patch fixing the NPE when configuration is deleted at the same time by Pierre De Rop · 10 years ago
  6. f748bfb FELIX-4238 The pmtCount field must keep the tracking count not the number of tracked services. Otherwise the list of services is updated on each access to configuration. by Felix Meschberger · 11 years ago
  7. 274aa24 FELIX-3820 Guard access to the ConfigurationManager field in the ConfigurationAdminImpl class (slightly modified patch by Guillaume Nodet, thanks). Also added some more guards in the context of permission checks and added integration tests. by Felix Meschberger · 12 years ago
  8. 9963073 FELIX-3823 Make sure the default FilePersistenceManager is properly unregistered by the bundle itself by Felix Meschberger · 12 years ago
  9. fffde29 FELIX-3762 Get the BaseTracker instance on demand while executing the task instead of at construction time. This ensures the tracker exists. by Felix Meschberger · 12 years ago
  10. 3cbf465 FELIX-3721 Make sure ManagedService[Factory] services are always called back on initial service registration by Felix Meschberger · 12 years ago
  11. a8922bd FELIX-3622 Use the local variable pid to log the service PID of the configuration added instead of accessing the raw dictionary which has the property removed after calling the ConfigurationImpl constructor. by Felix Meschberger · 12 years ago
  12. e94b157 FELIX-3596 ConfigurationEvents should only be synchronously delivered to listeners registered as SynchronousConfigurationEventListener (this is a service interface not a marker interface). Adapted test cases to verify async delivery to SynchronousConfigurationEventListener implementations registered as ConfigurationEventListener services. by Felix Meschberger · 12 years ago
  13. 1ff5c53 FELIX-3481 - Fix targeted PID case where the service PID contains a pipe (|) symbol and add a testcase for the fix by Felix Meschberger · 12 years ago
  14. cd5195f FELIX-3481 - Targeted PID support: by Felix Meschberger · 12 years ago
  15. 273985f FELIX-3481 - Implement targeted PID support for MSF by Felix Meschberger · 12 years ago
  16. c0894f3 FELIX-3481 Start using targeted PIDs: by Felix Meschberger · 12 years ago
  17. 382a19b FELIX-3577 Canalize all ManagedService[Factory] updates through the BaseTracker.*Configuration methods by Felix Meschberger · 12 years ago
  18. accd901 FELIX-3577 Fix a conversion glitch (calling service reference removal instead of configuration removal). Also renamed the provide and remove methods to provideConfiguration and removeConfiguration to make the distinction of removal clear. by Felix Meschberger · 12 years ago
  19. 63e7ab1 FELIX-3577 Adapt to new helper classes and add dependency to OSGi Core 5.0 (to by Felix Meschberger · 12 years ago
  20. 0770cad Reintegrate R5 sanbox branch: by Felix Meschberger · 12 years ago
  21. b3bae58 FELIX-2888 Return newly created factory configurations from getConfiguration even though such configuration is not persisted yet. by Felix Meschberger · 12 years ago
  22. 93edd66 Improve loggin of configuration update failure and include pid of the configuration whose updated failed. by Felix Meschberger · 12 years ago
  23. 623f714 FELIX-3327 Throw IllegalStateException on setBundleLocation, getBundleLocation, update, and delete if the Configuration Admin Service has been stopped. by Felix Meschberger · 12 years ago
  24. f768ef9 Add some more logging by Felix Meschberger · 12 years ago
  25. 2444da6 FELIX-3233 Ensure canReceive is called with non-null Bundle argument and log if ServiceReference.getBundle() becomes null before handling the update (this can happen in race-condition situations where the service is unregistered before the update is [asynchronously] processed). by Felix Meschberger · 13 years ago
  26. 6120723 FELIX-3231 Remove update counter and rename lastModificationTime to revision to better reflect the intent of the field. by Felix Meschberger · 13 years ago
  27. 1ee888d Fix log message: UpdateTask can be for ManagedSevice and ManagedServiceFactory by Felix Meschberger · 13 years ago
  28. 0135b32 Improve logging (indicate updated service in UpdateTask and add bundle location to reference output) by Felix Meschberger · 13 years ago
  29. ad94987 FELIX-3229 Fix permission checks (and clean code up a bit) for getConfiguration(String, String) and createFactoryConfiguration(String, String) by Felix Meschberger · 13 years ago
  30. 137ee72 Log a DEBUG message in the update task if there are no MS[F] to update by Felix Meschberger · 13 years ago
  31. 27689c1 FELIX-3227 Comply with Config Admin 1.4 to call ManagedService.update with null if configuration is not visible by Felix Meschberger · 13 years ago
  32. 05d89e1 FELIX-3200 Track ManagedService[Factory] PID changes by Felix Meschberger · 13 years ago
  33. fb833e7 FELIX-3176 Implement Config Admin 1.4 Changes by Felix Meschberger · 13 years ago
  34. 4f26929 FELIX-3180 Provide MessageFormat based logging method by Felix Meschberger · 13 years ago
  35. 35658d5 FELIX-3176 Implement Configuration Admin 4.1 changes: by Felix Meschberger · 13 years ago
  36. 007c50e FELIX-3176 Implement Configuration Admin 4.1 changes: by Felix Meschberger · 13 years ago
  37. dc8a553 FELIX-2847 Prevent NPE if service already unregistered by Felix Meschberger · 13 years ago
  38. 049cc07 FELIX-2766 Don't throw FileNotFoundException when calling by Felix Meschberger · 13 years ago
  39. 417f66c FELIX-2771 Fix Foundation and Mika platform issues: by Felix Meschberger · 13 years ago
  40. 4b26df9 FELIX-2813 Make the service registration field volatile and ensure the asynchronous threads are started only after registering the service and stopped before unregistering the service. by Felix Meschberger · 13 years ago
  41. b68d1cf FELIX-2557 Further work on event dispatching: ConfigurationManager now uses two separate threads to dispatch configuration events and configuration updates. Both threads are configured to be members of their own thread group, which is a daemon group to be destroyed once both dispatcher threads terminate. by Felix Meschberger · 14 years ago
  42. 9967fbb FELIX-2557 Refactor ConfigurationEvent dispatching: by Felix Meschberger · 14 years ago
  43. 8d9851a FELIX-1545 Adding Pierre de Rop's stress test (thanks alot for providing) to the integration test suite and changed the way the last update field is set: It is now set to the value of the last modification time field at the time the properties were retrieved from the configuration for the asynchronous update call. by Felix Meschberger · 14 years ago
  44. a86cdfc FELIX-2552 Add chaching layer for the PersistenceManager services and remove unused PeristenceManagerProxy class by Felix Meschberger · 14 years ago
  45. cb46b9e FELIX-1545 Added guards to ManagedService[Factory]Update to prevent multiple by Felix Meschberger · 15 years ago
  46. fd52e31 FELIX-1542 add lastModificationTime and lastUpdateTime fields to track by Felix Meschberger · 15 years ago
  47. 78ea08e FELIX-1488 Disable configuration reassignment due to changing the static by Felix Meschberger · 15 years ago
  48. ce67d73 FELIX-1507 Add unified error handling for update and delete call back methods by Felix Meschberger · 15 years ago
  49. cefe5eb FELIX-1488 support for another use case: by Felix Meschberger · 15 years ago
  50. 6f5b69e FELIX-1488 configuration replacement if static bundle binding is by Felix Meschberger · 15 years ago
  51. c12db8c FELIX-1488 dynamic binding must not be removed before initiating the by Felix Meschberger · 15 years ago
  52. 41cce52 FELIX-1146 refactor update tasks to immediately gather configurations by Felix Meschberger · 15 years ago
  53. 15e1c6f Ensure update/delete is sent regardless of whether the configuration by Felix Meschberger · 15 years ago
  54. 3f9e4da FELIX-1488 Dynamic configuration bindings have to also be by Felix Meschberger · 15 years ago
  55. 56e2b7e FELIX-1489 submit created configurations without properties to by Felix Meschberger · 15 years ago
  56. 851c641 FELIX-1486 Support multi-value PIDs by Felix Meschberger · 15 years ago
  57. 6a698df FELIX-1488 Only persist static configuration bindings and keep dynamic by Felix Meschberger · 15 years ago
  58. 5d3e7ac FELIX-1165 Ensure setting the service reference field for a ManagedService by Felix Meschberger · 15 years ago
  59. df26ae8 FELIX-1477 Apply slightly modified (formatting) patch by Andy Wilkinson by Felix Meschberger · 15 years ago
  60. 5dfaa96 FELIX-1234 Use factory PID for configuration plugin selection if the by Felix Meschberger · 15 years ago
  61. 2c2a5be FELIX-979 Prevent bundle event handling after the bundle activator's stop method has terminated by Felix Meschberger · 15 years ago
  62. 08282c3 FELIX-903 add felix.cm.loglevel property to limit the log output by Felix Meschberger · 15 years ago
  63. 93c409a Remove those @author and @version tags by Felix Meschberger · 16 years ago
  64. a0903df FELIX-890 Configuration.getProperties() must return a full copy of the by Felix Meschberger · 16 years ago
  65. 1056835 FELIX-881 Also clear the configurationAdminRegistration field before by Felix Meschberger · 16 years ago
  66. b4f83e4 FELIX-881 provide getter for the service reference preventing by Felix Meschberger · 16 years ago
  67. 13bcc7e FELIX-880 get the ServiceReference from the ServiceRegistration to by Felix Meschberger · 16 years ago
  68. 4124319 FELIX-740 Check ServiceReference's Bundle before using it, since the by Felix Meschberger · 16 years ago
  69. fbc7dc1 FELIX-612 Don't persist newly created factory configuration objects and also by Felix Meschberger · 16 years ago
  70. 0c4e704 FELIX-611 Do not return new configurations from the ConfigurationAdmin.listConfiguration by Felix Meschberger · 16 years ago
  71. f463132 FELIX-516 Record whether a configuration change (update, delete) has been delivered by Felix Meschberger · 16 years ago
  72. 432e387 Add more logging by Felix Meschberger · 16 years ago
  73. 7853b9a Correct javadocs and clean up code a little bit. by Carsten Ziegeler · 17 years ago
  74. 4168398 Fix for FELIX-443: Make classes static and pass ConfigurationManager. by Carsten Ziegeler · 17 years ago
  75. 2fd5b58 Some type safety in ManagedService[Factory] service configuration by Felix Meschberger · 17 years ago
  76. db90b1b FELIX-355 ConfigurationAdmin service is unregistered after it has been cleaned up by Felix Meschberger · 17 years ago
  77. e1b00ed Remove irritating test code by Felix Meschberger · 17 years ago
  78. 85b355d Dynamically import LogService and user LogService class name (and not class) to name by Felix Meschberger · 17 years ago
  79. 5f7ac16 FELIX-348 Configuration Admin should not send a CM_UPDATED event after first registration of a ManagedService by Felix Meschberger · 17 years ago
  80. 6642333 FELIX-342 NullPointerException after updating a ManagedService when no Configuration exists by Felix Meschberger · 17 years ago
  81. 2941ef9 FELIX-335 Configuration Admin updates with empty properties and throws NullPointerExceptions due to race condition by Felix Meschberger · 17 years ago
  82. bb04898 FELIX-334 Missing callbacks for Configuration plugins by Felix Meschberger · 17 years ago
  83. d71f410 FELIX-322 Registering a PersistenceManager service causes a ClassCastException by Felix Meschberger · 17 years ago
  84. 8faceff Remove superfluouse explicit package naming by Felix Meschberger · 17 years ago
  85. 86a0d17 FELIX-317 Modifying a Configuration retrieved from listConfigurations is not reflected in the ConfigAdmin by Felix Meschberger · 17 years ago
  86. 6b086e7 FELIX-316 Configuration Admin should use the bundle data storage area by default. by Felix Meschberger · 17 years ago
  87. e2ca833 FELIX-301 Factory Configurations not unbound on bundle uninstall by Felix Meschberger · 17 years ago
  88. add2b4a FELIX-11 Implement Configuration Admin (Initial Checkin) by Felix Meschberger · 17 years ago