make fields that are parameters of the module and annotate them with the @Parameter value
needs to create getters and setters to handle module execution from JAVA
It would be nice to have the getter and setter inferred from @Parameter directly.
Open questions:
if implemented by Lombook, not sure that we want this dependency (or we already have this dependency there?)
there will be situations when we want to avoid generating getters and setters or generate specific getters/setters. Will it be implemented like @Parameter(no-getter=true, no-setter=true)? We need to find those cases first and discuss.
Currently, to create a module, one needs to:
@Parameter
valueIt would be nice to have the getter and setter inferred from
@Parameter
directly.Open questions:
@Parameter(no-getter=true, no-setter=true)
? We need to find those cases first and discuss.