1. faaed47 Big refactoring, renamed "Service" to "Component" whenever it was referring to the thing that has dependencies and registers itself as a service. by Marcel Offermans · 14 years ago
  2. bd15a44 Fixed a NPE in getName(). by Marcel Offermans · 14 years ago
  3. 23514f5 added missing setPropagate methods in ServiceDependency interface (and also added the corresponding ServiceDependencyPropagateTest testcase) by Pierre De Rop · 14 years ago
  4. 5dd2211 Filter out certain properties when propagating them (adapters on aspects went wrong as the aspect properties were copied). by Marcel Offermans · 14 years ago
  5. 4491970 fixed initialization of the ResourceDependency with respect to propagate parameters. This fix is validated by the ResourceAdapterServiceTestWithPublisher testcase by Pierre De Rop · 14 years ago
  6. 63d9aee Made the toString(ServiceReference) more robust with respect to dealing with references that belong to services that are no longer registered. by Marcel Offermans · 14 years ago
  7. 129a7a5 Several fixes for bugs that caused aspects to be chained in the wrong way if you had aspects on multiple services. by Marcel Offermans · 14 years ago
  8. e5187f6 Fixed a scenario where aspects that were part of the initial set of tracked services were not correctly identified as such, causing them to show up (instead of being properly hidden). by Marcel Offermans · 14 years ago
  9. e7951e3 Cleaned up the pom.xml files, centralizing dependencies and versions and making it easier to just checkout this project and build it. Also made sure that the appropriate parts of the dependency manager are now compiled against the standard OSGi execution environment instead of Java 5 (annotation related bundles and tests are excluded). by Marcel Offermans · 14 years ago
  10. 7964c02 Accidentally committed a version of the pom that includes the sources in the bundle. by Marcel Offermans · 14 years ago
  11. 3d92121 Several smaller bugfixes and performance updates for resources. Added a test that demonstrates how to create a custom dependency (and did some refactorings to make that easier). by Marcel Offermans · 14 years ago
  12. f83871d Added a couple of getters so subclasses of this base can still access the internally stored bundle context, dependency manager and logger. This way they don't have to hold on to it themselves. by Marcel Offermans · 14 years ago
  13. 26081d3 Added a feature to use an external instance/method to provide properties to propagate. Implemented it for all dependencies plus the resource adapter. Other adapters still under consideration. by Marcel Offermans · 14 years ago
  14. 8b93efa Refactored all exported packages into one, to simplify usage. by Marcel Offermans · 14 years ago
  15. a8c213f Refactored resource dependencies to use URLs instead of the Resource interface we used previously. Adapted all tests to reflect that. by Marcel Offermans · 14 years ago
  16. e9c13d9 Used a Java 5 style for() loop by accident. Extended the signature for creating resource adapters so you can also specify a callback instance and name for the changed method. by Marcel Offermans · 14 years ago
  17. 4646269 Forgot to remove a print statement, left over from debugging. by Marcel Offermans · 14 years ago
  18. b1959f4 Fixed an issue with adapters and extra dependencies that had callbacks. Callbacks were not always invoked correctly for each new adapter instance. This has now been fixed and while at it, I also improved the shell output of several types of dependencies. by Marcel Offermans · 14 years ago
  19. ea89b86 Relatively large refactoring of callback methods, cleaned up some code and made them more consistent. by Marcel Offermans · 14 years ago
  20. 77bcf44 Bugfix, the adaptee filter condition was not applied. by Marcel Offermans · 14 years ago
  21. 157e711 Refactored to use InvocationUtil which is dynamic proxy aware. by Marcel Offermans · 14 years ago
  22. 019b30d Made the logging of invocation target exceptions more explicit. by Marcel Offermans · 14 years ago
  23. 1391d68 Method to access compositions of instances was not "proxy aware" because it did not yet use our InvocationUtil method. Now it does, and is. by Marcel Offermans · 14 years ago
  24. 1fbc41e Fixed an issue with invoking methods on instances that have been implemented using a dynamic proxy. We already handled injection properly, but now callbacks work fine too. by Marcel Offermans · 14 years ago
  25. 1785c33 Added comments. In addedService: invoke added callback if the dependency is made available and if the dependency is not required by Pierre De Rop · 14 years ago
  26. 79ac971 Accumulate all extra dependencies defined from init() method, before calculating state changes. by Pierre De Rop · 14 years ago
  27. bedf369 FELIX-2344 FELIX-2369 bindService is now invoked with the new state on every relevant state change (instead of the old state which was wrong) and as part of the bindService implementation, the service is configured again (because the init() method might have added new dependencies) by Marcel Offermans · 14 years ago
  28. c17a448 FELIX-2344 After feedback from Pierre, added yet another test scenario and fixed it by reversing the order in which callbacks were invoked and the service was started to ensure callbacks of required dependencies will be invoked before the service is started. by Marcel Offermans · 14 years ago
  29. 08459ba FELIX-2344 Extended the test case and fixed the bug. by Marcel Offermans · 14 years ago
  30. 1f06478 Don't throw a ConfigurationException when the updated callback method does not exist. by Pierre De Rop · 14 years ago
  31. c3dfbb7 fixed javadoc by Pierre De Rop · 14 years ago
  32. df66070 don't provide MetaTypeProvide along with a ManagedServiceFactory service by Pierre De Rop · 14 years ago
  33. 3e10037 reworked FactoryConfigurationAdapter API by Pierre De Rop · 14 years ago
  34. 3f06f7c removed wrong import by Pierre De Rop · 14 years ago
  35. 13dd63d reworked BundleAdapter API in order to allow to provide adapter parameters by reusing the Service interface methods (setInterface, setImplementation, etc ...) by Pierre De Rop · 14 years ago
  36. c128b17 register state listeners in Adapter/ResourceAdapter service by Pierre De Rop · 14 years ago
  37. 445ddec reworked ResourceAdapter API in order to allow to provide adapter parameters by reusing the Service interface methods (setInterface, setImplementation, etc ...) by Pierre De Rop · 14 years ago
  38. 3423158 reworked the Adapter API in order to allow to provide adapter parameters by reusing the Service methods (setInterface, setImplementation, etc ...) by Pierre De Rop · 14 years ago
  39. 19476fe - Reworked the aspect API in order to allow to provide aspect parameters by by Pierre De Rop · 14 years ago
  40. a6ffb99 Completed support for using dynamic proxies as generic aspects. Added a test to validate this behaviour. by Marcel Offermans · 14 years ago
  41. af8fb27 FELIX-2348 Not all resources have a filter, so the code and the test now handle that case correctly. by Marcel Offermans · 14 years ago
  42. 9afe2f5 Slightly relaxed the rules for member injection when using a named field. In that case it is now enough to have a field that is of an assignable type, instead of requiring an exact type. by Marcel Offermans · 14 years ago
  43. 7f68748 Improved support for aspects and tracking them using whiteboard style listeners. Extended our internal ServiceTracker to make it aware of aspects. by Marcel Offermans · 14 years ago
  44. 9fedbfb Changed the pom back so it does not include sources by default (commented out that line). by Marcel Offermans · 14 years ago
  45. c4ee116 Added some parameter checks. by Marcel Offermans · 14 years ago
  46. bde9a43 FELIX-2078 Fixes to resolve this bug. by Marcel Offermans · 14 years ago
  47. d258767 Removed useless imports by Pierre De Rop · 14 years ago
  48. 9a8ebfd added MetaType support for factory configuration adapter by Pierre De Rop · 14 years ago
  49. 51b3337 decoupled the MetaTypeProviderImpl class from ConfigurationDependencyImpl class by Pierre De Rop · 14 years ago
  50. 87877a5 decoupled the MetaTypeProviderImpl class from ConfigurationDependencyImpl class by Pierre De Rop · 14 years ago
  51. 21f95dd added missing synchronize in ManagedServiceFactory's updated method (fix in progress) by Pierre De Rop · 14 years ago
  52. ba5a3ff fixed wrong javadoc by Pierre De Rop · 14 years ago
  53. ef94c88 ConfigAdmin factory configuration adapter support by Pierre De Rop · 14 years ago
  54. 5eb38b8 Added an extra parameter to resource adapters to specify a handler to invoke life cycle callbacks on. Experimental bit of API for now. by Marcel Offermans · 14 years ago
  55. 46e26fb Fixed an issue with not all callbacks being invoked on service compositions, introduced as part of the refactoring of Friday. by Marcel Offermans · 14 years ago
  56. ac583ba Removed unexpected return in invokeCallbackMethod(Object[] instances, String methodName, Class[][] signatures, Object[][] parameters) method by Pierre De Rop · 14 years ago
  57. e43114b Changed the exception handling after Friday's refactoring. No such method exceptions should be ignored here. by Marcel Offermans · 14 years ago
  58. 8055261 Added a missing method in the interface. by Marcel Offermans · 14 years ago
  59. 61a8114 Added support for invoking life cycle callbacks on something else than the service instance. Refactored some of the callback invocation code so all of them now use the same implementation. Implemented some still missing things. by Marcel Offermans · 14 years ago
  60. a564b3a Prefixed some methods in interfaces with 'public', implemented instance bound feature in resource dependencies. by Marcel Offermans · 14 years ago
  61. d3c2aab fixed potential NullPointerException, when getting list of available Locales by Pierre De Rop · 14 years ago
  62. 379ba3e fixed javadoc by Pierre De Rop · 14 years ago
  63. a0204f5 added MetaType support in DependencyManager API by Pierre De Rop · 14 years ago
  64. ad76067 Added the notion of ranking to aspects so they can dynamically be chained. Fixed a bug in bundle dependencies. by Marcel Offermans · 14 years ago
  65. cc8adbb only log an error if there is no implementation set AND creating an instance using a factory did not work by Marcel Offermans · 14 years ago
  66. 9ace4f4 Tested filter for null before using it. by Marcel Offermans · 14 years ago
  67. d665eaf Fixes for bundle adapters. Added missing methods to DAB. by Marcel Offermans · 14 years ago
  68. 7acf3fe fixed javadoc by Pierre De Rop · 15 years ago
  69. 7d04903 fixed javadoc by Pierre De Rop · 15 years ago
  70. 2e46b6f added support for "changed" callbacks in resources by Marcel Offermans · 15 years ago
  71. 6592ef3 added a commented line to include source code in the bundle in a way that Eclipse understands by Marcel Offermans · 15 years ago
  72. 6358e05 fixed a shutdown issue where sometimes services were unregistered twice by Marcel Offermans · 15 years ago
  73. 6cb7ac2 bugfix for instance bound service dependencies by Marcel Offermans · 15 years ago
  74. 84a43ad experimental bugfix, needs more testing by Marcel Offermans · 15 years ago
  75. 4fd903f added documentation, bugfixed a scenario where multiple instance bound dependencies did not work correctly by Marcel Offermans · 15 years ago
  76. e49478f some textual changes to comments by Marcel Offermans · 15 years ago
  77. cac806f small bugfixes by Marcel Offermans · 15 years ago
  78. b8405a5 somehow a single import statement got lost :) by Marcel Offermans · 15 years ago
  79. 626260c exposed setting of properties for a resource adapter by Marcel Offermans · 15 years ago
  80. a83c25a added a method to specify a service dependency that is based only on a filter condition by Marcel Offermans · 15 years ago
  81. a66b9bf fixed an issue with the EntryResource in BundleResourceRepository, path + name calculation where wrong by Marcel Offermans · 15 years ago
  82. 54f86e0 refactored resources to include a unique identifier by Marcel Offermans · 15 years ago
  83. 0624d63 added the same optimization I added to resource adapters to the aspect and adapter by Marcel Offermans · 15 years ago
  84. b5f780e removed a duplicate dependency for resource adapters, where only the most strict one now remains by Marcel Offermans · 15 years ago
  85. 306c252 fixed a startup ordering issue, added a test to make sure it stays fixed by Marcel Offermans · 15 years ago
  86. 3e1998c refactored some common features into an abstract superclass for all decorator patterns by Marcel Offermans · 15 years ago
  87. 78e5dfc fixed a bug with instance bound dependencies, updated the test to ensure this keeps working from now on by Marcel Offermans · 15 years ago
  88. 937ab4f simplified updating of instances and propagation of properties by Marcel Offermans · 15 years ago
  89. 0f6605e corrected the previous patch by Marcel Offermans · 15 years ago
  90. 44a93bf bugfix, is registered should mean that the service is bound, not only that all required dependencies are available by Marcel Offermans · 15 years ago
  91. d403a1d made sure that resource adapters can let their adapters use propagation of properties, if they want to by Marcel Offermans · 15 years ago
  92. 117aa2f added generic support for propagation of a dependency's properties to a service, implemented for configuration and resource dependencies by Marcel Offermans · 15 years ago
  93. b99e7e4 implemented resource tracking, also when tracking a specific resource by Marcel Offermans · 15 years ago
  94. 46345fa removed print statement by Marcel Offermans · 15 years ago
  95. 266eee5 bugfix, only add property if the value is not null by Marcel Offermans · 15 years ago
  96. 5c270dd added versioning to the exports by Marcel Offermans · 15 years ago
  97. f9a6e4c added missing interface method by Marcel Offermans · 15 years ago
  98. 404cd54 added some new adapters and a few fixes, work in progress, more changes by Marcel Offermans · 15 years ago
  99. 001db05 added some new adapters and a few fixes, work in progress by Marcel Offermans · 15 years ago
  100. 00970dc moved start/stop methods from Dependency.java into this new interface; in order to avoid exposing implementation methods in the API by Pierre De Rop · 15 years ago