1. ab647de FELIX-2712 Add Gogo commands and ensure proper compilation by Felix Meschberger · 14 years ago
  2. d57bc90 FELIX-2526 change order of tests (the location binding test will succeed more often than the CT workaround test) by Felix Meschberger · 14 years ago
  3. 5cde524 FELIX-2526 Implement workaround for CT bugs and add framework property to enable the workarounds by Felix Meschberger · 14 years ago
  4. ebc3aa5 FELIX-2523 Fix test case for component reactivation after configuration deletion by Felix Meschberger · 14 years ago
  5. 8033196 Improve getAcceptedParameterTypes method along the lines of the respective improvement in the ActivateMethod class in Rev. 982605 by Felix Meschberger · 14 years ago
  6. b8646ff FELIX-2520 Use PackageAdmin service to try to resolve the interface class to find a matching method and fall back to Object class if interface class is not exported by any bundle. by Felix Meschberger · 14 years ago
  7. 5d33bfd FELIX-2523 Reactivate the component if configuration is deleted. The modified method must not be called in this case. by Felix Meschberger · 14 years ago
  8. be9a81c FELIX-2521 Support separation between "no method to be called" and "method execution failure" situations to handle according specification: by Felix Meschberger · 14 years ago
  9. adb3807 FELIX-2518 modified method does not require arguments by Felix Meschberger · 14 years ago
  10. 56da17d FELIX-2519 Specification of activate, deactivate, modified, and configuration-policy attributes is not allowed for DS 1.0 descriptors. by Felix Meschberger · 14 years ago
  11. 390a14e Add DEBUG message on starting the ComponentActorThread (for symmetry with the DEBUG message noting the imminent shutdown of the thread) by Felix Meschberger · 14 years ago
  12. 5b919be FEKLIX-2288 Fix handling of the component ID: The ID is now only generated and assigned to a component while the component is enabled. To still access components without an assigned ID, ScrService gets a new method getComponent(String name) to access components by their name. by Felix Meschberger · 14 years ago
  13. 78d0912 FELIX-2510 Ensure configuration is provided to components even if the Configuration Admin service is registered after Declarative Services has started. To this avail, a ServiceListener is registered, which handled the Configuration Admin service registration by calling the configurationEvent method for existing configurations. by Felix Meschberger · 14 years ago
  14. a701f2b Rename component holder registration and unregistration methods to reflect that they act on ComponentHolder instances and not Component instances by Felix Meschberger · 14 years ago
  15. 2a69a53 FELIX-2399 Be lenient to types of the ds.loglevel and ds.factory.enabled configuration properties. by Felix Meschberger · 14 years ago
  16. 66a8de4 FELIX-2372 Improve logging for IllegalStateException on service access by Felix Meschberger · 14 years ago
  17. 8c02dff FELIX-2370 For the delayed component manager replace set of using bundles by a simple counter and a simple lock; The set of bundles is not used and thus just overhead. For the service factory manager, synchronize access to the map. Additionally make two fields final in the AbstractComponentManager. by Felix Meschberger · 14 years ago
  18. 39a7ba2 FELIX-2368 make component enablement, activation, deactivation, and disablement synchronous instead of asynchronous by Felix Meschberger · 15 years ago
  19. b432c86 Cleanup imports by Felix Meschberger · 15 years ago
  20. 917a4dc FELIX-2325 Return the implementation class name from the getName method if the component name has not been explicitly set with the name attribute. by Felix Meschberger · 15 years ago
  21. 190a995 FELIX-2289 Synchronize all access to internal maps to prevent data structure corruption by Felix Meschberger · 15 years ago
  22. 303c8bf FELIX-2231 Prevent IllegalStateException and potential NullPointerException when handling a configuration event (the bundle owning the component may have been stopped concurrently) by Felix Meschberger · 15 years ago
  23. b698dc9 FELIX-2231 Prevent NullPointerException and uncaught IllegalStateException if bundle has been stopped while the component is being started by Felix Meschberger · 15 years ago
  24. c762b7f FELIX-2230 Prevent calling a method on a null component instance thus preventing NullPointerException by Felix Meschberger · 15 years ago
  25. ee82f26 FELIX-2231 Prevent NullPointerException if configuration is updated/deleted after the held components have already been disposed off by Felix Meschberger · 15 years ago
  26. f8d4eae FELIX-2231 Ensure components for cannot be loaded twice: Access to the map of loaded components per bundle was not synchronized. In addition, there was a relatively big window between the check whether a bundle's components have been loaded and the actual registration of the loaded components. This has now been closed using a flag set early and replaced with the actual loaded components. by Felix Meschberger · 15 years ago
  27. 65bd35d FELIX-2233 Ensure new component instances (created for factory configurations) are not enabled if the component has been disabled by ComponentContext.disableComponent(String) by Felix Meschberger · 15 years ago
  28. be9180f FELIX-2213 do not try to call any optional modify() method if the component has not yet been instantiated by Felix Meschberger · 15 years ago
  29. fc2721c FELIX-2091 Properly handle cases when the ComponentActivatorTask checks whether a component task should be executed but the component has already been disposed off. by Felix Meschberger · 15 years ago
  30. c06caf0 FELIX-2010 Missing descriptor for the test components ... by Felix Meschberger · 15 years ago
  31. 8397688 FELIX-2010 Testcases ensuring various visibility and argument options for the activate method are respected for DS 1.1 components. by Felix Meschberger · 15 years ago
  32. 1f98ada FELIX-2006 Catch Throwable instead of Exception to properly handle instantiation failure if loading the implementation class fails. by Felix Meschberger · 15 years ago
  33. a3159bf FELIX-1997 : Actual configuration might not be reflected in the web console by Carsten Ziegeler · 15 years ago
  34. 0c6b87b FELIX-1952 Ensure components created for factory configurations are not disposed when configuration is updated (or some binding changes). Also include a testcase validating this. by Felix Meschberger · 15 years ago
  35. 30254c0 Add @since tags for methods added in R 1.2 by Felix Meschberger · 15 years ago
  36. dc81627 FELIX-1893 Add @since tag to define in which API version the method has been added by Felix Meschberger · 15 years ago
  37. 4486f75 FELIX-1943 Ensure components which are not satisfied any longer if a service is unregistered are deactivated. Before this would only happen if the component had the service bound, which is not always the case (for example for ComponentFactory components). by Felix Meschberger · 15 years ago
  38. bc5d2d6 FELIX-1922 Always mimick existing configuration to component factory instances. In case of Configuration Admin service not providing configuration, an empty configuration is placed to simulate existence. Reason for this is that component factories do not obey configuration-policy=require for satisfaction setting. by Felix Meschberger · 15 years ago
  39. 1a7ac27 FELIX-1942 Add new state (FactoryInstance) which is like the Active state but disposes off the component on deactivation instead of just deactivating. by Felix Meschberger · 15 years ago
  40. 2e8a24d FELIX-1922 test ComponentFactory does not require configuration by Felix Meschberger · 15 years ago
  41. 72a6e21 Fix comment by Felix Meschberger · 15 years ago
  42. 4fb2860 FELIX-1893 Add note about null being returned for DS 1.0/1.1 descriptors by Felix Meschberger · 15 years ago
  43. 6686bed FELIX-1927 Apply patch by Lukas Kolisko (thanks) by Felix Meschberger · 15 years ago
  44. 90e38d2 FELIX-1926 ensure synchronized access to internal maps of the ComponentRegistry by Felix Meschberger · 15 years ago
  45. d7a6c72 FELIX-1893 Remove unused field by Felix Meschberger · 15 years ago
  46. 9dc5626 FELIX-1893 Provide configured updated method name through the administrative API. by Felix Meschberger · 15 years ago
  47. df90be9 FELIX-1893 Remove ds.rebind.enabled configuration (not needed anymore since we now have a descriptor provided optional updated method) by Felix Meschberger · 15 years ago
  48. 1e5840c FELIX-1893 Add support for a configurable "updated" method by Felix Meschberger · 15 years ago
  49. e2c8709 FELIX-1897 Add support for Configuration Admin configuration (in addition to the existing bundle context properties) by Felix Meschberger · 15 years ago
  50. 40c46c6 FELIX-1841 Improve service bind update by creating a special "update" method which directly calls the invokeBindMethod(ServiceReference) method instead of going through the regular bind() method, which may not call the correct bind method at all (or too many methods) by Felix Meschberger · 15 years ago
  51. 810ef0a FELIX-1841 Apply DependencyManager part of FELIX-1841.patch.2 supplied by Pierre de Rop (thanks) with the slight modification of guarding the rebind with a configuration setting. Also added integration tests validating this fix. by Felix Meschberger · 15 years ago
  52. 5810b52 FELIX-1841 Prevent updating the service registration if service properties did not change as of the configuration update (this may be the case if the configuration update only contains modified private properties not propagated to service registration properties) (Thanks Pierre de Rop for providing the patch) by Felix Meschberger · 15 years ago
  53. 0ea9bca FELIX-1846 Guard access to the existing target filter being null by Felix Meschberger · 15 years ago
  54. 8b4eb05 FELIX-1826 Fix integration test still using the component instance by Felix Meschberger · 15 years ago
  55. 33eef79 FELIX-1833 Make the ComponentActorThread a Runnable handled to a standard by Felix Meschberger · 15 years ago
  56. 283d2bb FELIX-1832 Instead of deactivating in case of instantiation failure just by Felix Meschberger · 15 years ago
  57. 87e1cd8 FELIX-1826 The m_componentInstances map contains entries where the key is by Felix Meschberger · 15 years ago
  58. 7de3e7d FELIX-1830 Support for modified property type name "Character" for by Felix Meschberger · 15 years ago
  59. 598ca8c FELIX-1827 Check permission to get and register services on behalf by Felix Meschberger · 15 years ago
  60. d723e88 FELIX-1826 Throw ComponentException if newInstance fails to create a by Felix Meschberger · 15 years ago
  61. 0cbebff FELIX-1825 Fix to naming conventions for private fields by Felix Meschberger · 15 years ago
  62. d961cbf FELIX-1825 Deactivate component instances of delayed components which by Felix Meschberger · 15 years ago
  63. 470ff26 FELIX-1823 Drop support for Framework API 1.3 (R4.0) and depend by Felix Meschberger · 15 years ago
  64. 9951ef4 FELIX-1186 Refactor log messages to use the new deferred log message by Felix Meschberger · 15 years ago
  65. ed930e4 FELIX-1658 Removing Enabled state (folded into Unsatisfied state) and by Felix Meschberger · 15 years ago
  66. 59d1397 FELIX-1686 Refactor BaseMethod.getMethod to not throw NoSuchMethodException by Felix Meschberger · 15 years ago
  67. e610c43 FELIX-1186 Provide functionality to defer constructing messages until by Felix Meschberger · 15 years ago
  68. 5bef4a8 FELIX-1666 JavaDoc for the helper method and accept STARTING bundles by Felix Meschberger · 15 years ago
  69. ab6bf50 FELIX-1666 add helper method for deciding whether a bundle is considered by Felix Meschberger · 15 years ago
  70. c71d0e7 FELIX-1735 provide bundle jar file name to the integration tests with a by Felix Meschberger · 15 years ago
  71. 7ca18fe FELIX-1530 Extend the "scr info" command to print the configuration policy by Felix Meschberger · 15 years ago
  72. def40b7 FELIX-1733 Prevent recreation of dead components when the components by Felix Meschberger · 15 years ago
  73. 82cc0a5 FELIX-1666 have to explicitly box a long value by Felix Meschberger · 15 years ago
  74. ab4e951 FELIX-1666 add support for lazy bundle activation policy. by Felix Meschberger · 15 years ago
  75. b7bf9f8 FELIX-1530 add method to retrieve the configuration policy by Felix Meschberger · 15 years ago
  76. 21a301e FELIX-1711 use official OSGi libraries as dependencies, control by Felix Meschberger · 15 years ago
  77. 0aa956c FELIX-1714 Typo in output (Thanks Dims for reporting) by Felix Meschberger · 15 years ago
  78. 3e75173 FELIX-1530 Add methods to ask for the activate/deactivate method names and whether by Felix Meschberger · 15 years ago
  79. 89d6cc0 FELIX-1686 Record in the component metadata whether the activate/deactivate by Felix Meschberger · 15 years ago
  80. 64200ad FELIX-1674 fix typo (thanks Dims for reporting) by Felix Meschberger · 15 years ago
  81. 1eae9bd Fix License Header by Felix Meschberger · 15 years ago
  82. 3ef42ad Add integration tests for service binding mechanisms by Felix Meschberger · 15 years ago
  83. f4ae4e4 FELIX-1503 Add API to ComponentHolder to allow ImmediateComponentManager instances by Felix Meschberger · 15 years ago
  84. 680786b Better support for integration testing: by Felix Meschberger · 15 years ago
  85. b37b191 FELIX-1504 Move the "official" implementation of the ComponentInstance by Felix Meschberger · 15 years ago
  86. c6708c7 Use component.id instead of service.pid as the key in the INSTANCES map by Felix Meschberger · 15 years ago
  87. d2cb225 Split integration tests into separate classes for easier maintenance by Felix Meschberger · 15 years ago
  88. 72835d2 New test verifying that a single-component XML document without the by Felix Meschberger · 15 years ago
  89. 0bb0794 FELIX-1445 Check for UNSATISIFED state instead of ENABLED state in the by Felix Meschberger · 15 years ago
  90. 7e572cc FELIX-1447 Remove ComponentMetadata parameter from AbstractComponentManager.log by Felix Meschberger · 15 years ago
  91. 025c63c FELIX-1443 Unify method selection and invocation mechanisms on the by Felix Meschberger · 15 years ago
  92. babdea9 FELIX-1440 Add support for method lookup termination on suitable by Felix Meschberger · 15 years ago
  93. 009af02 FELIX-927 Complete bind/unbind method signature extension for by Felix Meschberger · 15 years ago
  94. ca0c270 FELIX-927 Add support to use a ServiceReference as the data by Felix Meschberger · 15 years ago
  95. 5fc75cd FELIX-1437 Include declaration namespace in the decision of which by Felix Meschberger · 15 years ago
  96. 0ebae47 Explicitaly address super class method by Felix Meschberger · 15 years ago
  97. df9c8bb FELIX-1436 Ensure duplicate implementation and/or service elements render by Felix Meschberger · 15 years ago
  98. 3e0a1b6 FELIX-928 For Java 1.3 compilation we need casts by Felix Meschberger · 15 years ago
  99. e7f0df8 FELIX-928 Apply patch by Alin Derhiciu (thanks) and factored the actual descriptor by Felix Meschberger · 15 years ago
  100. 61523ea FELIX-1413 Do not immediately bind to newly registered services for static by Felix Meschberger · 15 years ago