commit | f49d7e544260e704198611382fa592e60686412d | [log] [tgz] |
---|---|---|
author | Pierre De Rop <pderop@apache.org> | Wed Jun 23 22:10:28 2010 +0000 |
committer | Pierre De Rop <pderop@apache.org> | Wed Jun 23 22:10:28 2010 +0000 |
tree | 78018b3c8320d83115b9cc83cd0665f4397d6aa1 | |
parent | 9c63da40eccb7ed7b4408acda9a85f6680536c34 [diff] |
added a factoryMethod attribute in order to allow the creation of the service implementation from a static method git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@957371 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/AspectService.java b/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/AspectService.java index 41107a9..7ebfde5 100644 --- a/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/AspectService.java +++ b/dependencymanager/annotation/src/main/java/org/apache/felix/dm/annotation/api/AspectService.java
@@ -68,4 +68,9 @@ * in any attributes in the aspect implementation that are of the same type as the aspect interface. */ String field() default ""; + + /** + * Sets the static method used to create the AspectService implementation instance. + */ + String factoryMethod() default ""; }