You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yep. There could be a static final "allowed kind" collection and then "if kind not in list then continue" which would get rid of the wide if in the loop. And then the allowed location of the annotation itself.
Any specific test one could use as basis for unit testing? And are there any basic docs on how to set up the development environment?
Copy from quarkusio/quarkus#42647 (comment)
Description
Currently it is not possible to have
private final DynamoDbTable fooTable;
FooDao(@NamedDynamoDbTable("Foo") fooTable) {
this.fooTable = fooTable
}
Because @NamedDynamoDbTable is not applicable to method parameters. Would this be feasible?
Implementation ideas
No response
The text was updated successfully, but these errors were encountered: