Hi,
I have 2 issues with the RequestFactory 2.4.0:
- It doesn't seems to support array types as return types, "Request<FooProxy[]> getAllFoo()" doesn't work
- My Foo base type and thus my FooProxy types have getters without the 'get' prefix, it's "name()" instead of "getName()". This throws an error at compilation: "[ERROR] The method public abstract java.lang.String name() is neither a getter nor a setter"
Is is possible to make it work or should I convert all my arrays into lists and add the 'get' prefix on all my getters?
Thanks a lot,
Antoine.