Feature description
We should add a new annotation for parameters.
This should be transformed into a Store annotation (like our other annotations)
Should we only support a single argument being annotated?
What about:
void doSomething(
@StoreParam(name = "customers") List<Customer> customers,
@StoreParam(name = "people") Person person
) {
... modify the customers and the person ...
}
Os this something we want to support @sdelamo ?
Feature description
We should add a new annotation for parameters.
This should be transformed into a Store annotation (like our other annotations)
Should we only support a single argument being annotated?
What about:
Os this something we want to support @sdelamo ?