Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
ipojo-runtime-1.10.1
-
None
Description
@Property can be used to inject properties within constructor parameters. However, they currecntly require a name:
public FooImpl(@Property(name="message") String message)
{ ... }The name attribute should not be required. By relying on
For example,
public FooImpl(@Property String message) { ... }
would be equivalent to the previous snippet.