- a1bc22a FELIX-2752 Nulled m_registration after unregistering a service. by Marcel Offermans · 14 years ago
- e7baff5 Synchronized access to m_sr. by Marcel Offermans · 14 years ago
- eead138 FELIX-2677 applied the patch, removed the maven-plugin-api dependency. by Marcel Offermans · 14 years ago
- 95045a6 Formatting only. by Marcel Offermans · 14 years ago
- 4eeda7f Created a new test to validate the behavior of callbacks that are redirected to a specific instance. by Marcel Offermans · 14 years ago
- 5bc048c Fixes and enhancements to these tests. by Marcel Offermans · 14 years ago
- 09e14aa Bugfixes for several issues with required service dependencies with callbacks in scenarios where multiple dependencies are available. by Marcel Offermans · 14 years ago
- 706fb27 Work in progress, internal refactorings and bugfixes. by Marcel Offermans · 14 years ago
- 4a27ad2 FELIX-2696 Now properly flushes the internal cache that keeps track of which component instances already had their updated() method invoked. by Marcel Offermans · 14 years ago
- b0c0b9a FELIX-2696 Created a test case for this issue. by Marcel Offermans · 14 years ago
- 936d26c fixed memory leak in remove(Dependency) method by Pierre De Rop · 14 years ago
- 48c86af fixed wrong method names by Pierre De Rop · 14 years ago
- 7a0a589 Added a new test case, which verifies that declaring extra dependencies from an init method, by Pierre De Rop · 14 years ago
- 761a449 Fetch again the current state in the add(List) method, just before invoking calculateStateChanges method. by Pierre De Rop · 14 years ago
- 5c27eb9 Test to ensure the service changed bugfix will not regress. by Marcel Offermans · 14 years ago
- ff4758f Incorrectly dealt with service changed events. by Marcel Offermans · 14 years ago
- 842becf Another new test case for resource adapters. by Marcel Offermans · 14 years ago
- 839640c Tests the extensions that have been made to the standard ServiceTracker (mostly related to dealing with aspects). by Marcel Offermans · 14 years ago
- ddf6e67 Updated the test to use a new feature of the Ensure helper class that allows you to test multiple invocations of the same method by specifying a list of sequence numbers that must match with the invocations. by Marcel Offermans · 14 years ago
- 555104f Extended the test case. by Marcel Offermans · 14 years ago
- ee059df Extended the test case. by Marcel Offermans · 14 years ago
- 0eb3892 Some code reformatting. by Marcel Offermans · 14 years ago
- cba34e9 Fixed this test. by Marcel Offermans · 14 years ago
- b7b6cd4 Added an extra method to the interface. by Marcel Offermans · 14 years ago
- fea1484 More fixes for instance bound callbacks. by Marcel Offermans · 14 years ago
- 0acdb1b Various fixes for problems with when to invoke instance bound dependency callbacks. by Marcel Offermans · 14 years ago
- fcbc623 Fixed a concurrent modification exception caused by improper and missing synchronization. by Marcel Offermans · 14 years ago
- 4370c1b Add extra dependencies in one shot, using the Service.add(List) signature, in order to calculate state changes atomically by Pierre De Rop · 14 years ago
- efd51f3 Since this tests defines two extra dependencies from an init method, then we have to use service.add(List) signature ... by Pierre De Rop · 14 years ago
- 1c944ec Bugfixes related to aspects and general life cycle issues. Committed so others can test against this version. by Marcel Offermans · 14 years ago
- 48af5cd Forgot to remove a print statement. by Marcel Offermans · 14 years ago
- bf35ee1 Added and clarified several tests. by Marcel Offermans · 14 years ago
- f9a7e34 Fixed two issues: by Marcel Offermans · 14 years ago
- 9e50ef3 Now shows a direct dependency on a service reference in a more readable way: prints the service.id now. by Marcel Offermans · 14 years ago
- a0ee636 Code cleanup, added a more descriptive toString implementation. by Marcel Offermans · 14 years ago
- db641a2 Added missing documentation. by Marcel Offermans · 14 years ago
- 4f50b0f Improved printing of arrays in property values when converting a ServiceReference to a String. by Marcel Offermans · 14 years ago
- 221ca72 Fixed a race condition in the actual test, causing it to fail occasionally. Also added more documentation to the test, so it's easier to read and understand what's going on. by Marcel Offermans · 14 years ago
- 30e0a73 New test cases for adapters. by Marcel Offermans · 14 years ago
- 7e25c2c Renamed test class. by Marcel Offermans · 14 years ago
- dde86c3 Code reformatting in preparation for some test refactorings. by Marcel Offermans · 14 years ago
- 950dde9 Use latest configadmin 1.2.8, which fixes a bug, where some CM update events may be lost, and removed by Pierre De Rop · 14 years ago
- b14972d use the latest configadmin 1.2.8, which fixes an issue with respect to private properties whose name start with a dot by Pierre De Rop · 14 years ago
- ee1c807 Renamed @Service annotation into @Component annotation. by Pierre De Rop · 14 years ago
- c741cf2 use createComponent() method instead of createService() by Pierre De Rop · 14 years ago
- fd94a83 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
- f81221a 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
- 83a9ae4 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
- 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
- 34ab294 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
- bd15a44 Fixed a NPE in getName(). by Marcel Offermans · 14 years ago
- 3a219e6 added propagate attribute in ServiceDependency annotation. Also added corresponding testcase. by Pierre De Rop · 14 years ago
- 23514f5 added missing setPropagate methods in ServiceDependency interface (and also added the corresponding ServiceDependencyPropagateTest testcase) by Pierre De Rop · 14 years ago
- 1825200 Once a component is started, make sure that all named dependencies are not in "instance bound" mode anymore, because we would like the component to be destroyed if a named dependency is not available anymore by Pierre De Rop · 14 years ago
- 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
- ee3de5c fixed thread safety issue by Pierre De Rop · 14 years ago
- e4a15d9 re-fixed comments ... by Pierre De Rop · 14 years ago
- 704806f fixed javadoc by Pierre De Rop · 14 years ago
- def36a4 fixed command line used to build DM by Pierre De Rop · 14 years ago
- 748c62b forgot to add this file in the previous commit by Pierre De Rop · 14 years ago
- 7cb41fa Replaced the publisher/unpublisher Service attributes by a new LifecycelControler annotation, which can apply to any kind of Services by Pierre De Rop · 14 years ago
- 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
- a60f9fb Extended the test suite for aspects, added a resource adapter test. by Marcel Offermans · 14 years ago
- 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
- 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
- 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
- 48a5aee minor fix by Pierre De Rop · 14 years ago
- 18e6d3f Forgot to include the <parent> section. by Marcel Offermans · 14 years ago
- 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
- e8985a2 fixed a potential race condition in the Service annotation, where a publisher may be invoked before the component is actually started by Pierre De Rop · 14 years ago
- 8cfbbb8 fixed inconsistency in the api, where Services were not using the same 'provides' attribute when specifying the provided service interfaces by Pierre De Rop · 14 years ago
- 1912804 updated TODO list by Pierre De Rop · 14 years ago
- 465a8f1 replaced misspelled provide attribute by provides attribute by Pierre De Rop · 14 years ago
- d498713 replaced misspelled provide attribute by provides attribute by Pierre De Rop · 14 years ago
- f9f2101 improved javadoc by Pierre De Rop · 14 years ago
- fd66947 Bug fix: when a Service uses a publisher attribute in order to take control of when the service is registeted into the OSGi registry, by Pierre De Rop · 14 years ago
- 92ca37e Added two new publisher/unpublisher attributes in the Service annotation in order to allow a Service to take control over service exposition. Allow Start annotation to return an optional Map of properties which can be appended into the provided service properties by Pierre De Rop · 14 years ago
- 7964c02 Accidentally committed a version of the pom that includes the sources in the bundle. by Marcel Offermans · 14 years ago
- 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
- 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
- 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
- d4ac53c minor comment fix by Pierre De Rop · 14 years ago
- 9eca99b fixed dictionary aspect, which is now using the "(lang=en)" filter by Pierre De Rop · 14 years ago
- 5d4ee2b renamed ServiceFactory.java class into FactorySet.java by Pierre De Rop · 14 years ago
- 455b977 fixed misspelling by Pierre De Rop · 14 years ago
- 047d5ec fixed readme by Pierre De Rop · 14 years ago
- 2b71cb1 indicates that trunk version of the http.jetty bundle has to be installed. Also fixed some mispelling in the README \! by Pierre De Rop · 14 years ago
- 09b799f added a "changed" attribute in the ResourceAdapterService annotation. Fixed some javadocs by Pierre De Rop · 14 years ago
- c91ef0b don't import org.apache.felix.dm.management package anymore since the API is now in the same toplevel package by Pierre De Rop · 14 years ago
- f0fc438 don't import org.apache.felix.dm.dependencies package anymore since the API is now in the same toplevel package by Pierre De Rop · 14 years ago
- 8b93efa Refactored all exported packages into one, to simplify usage. by Marcel Offermans · 14 years ago
- 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
- 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
- 4646269 Forgot to remove a print statement, left over from debugging. by Marcel Offermans · 14 years ago
- 98dbc79 Added an extra test to ensure the bug I just fixed does not show up in the future anymore. by Marcel Offermans · 14 years ago
- 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
- 9b090e7 javadoc/cleanup by Pierre De Rop · 14 years ago
- a7b47f0 Use a constant for the "dm.runtime\.log" system property by Pierre De Rop · 14 years ago
- 32b7931 Changed "dm.log" property into "dm.runtime.log" property by Pierre De Rop · 14 years ago
- 6d1cc9d Added test for validating composition lifecycle callbaks, using annotation by Pierre De Rop · 14 years ago