Remo
Remo
JpaResourceInformationBuilder is the thing taking care of parsing all the annotations. So more support in this area has to be implemented there. For know you can just use @JpaResource and...
So far changing the name has not really be attempted so I would consider it not being supported. But that can be changed (altough personally I prefer sticking to the...
yes, plural is nicer. JSON API says: ``` Note: This spec is agnostic about inflection rules, so the value of type can be either plural or singular. However, the same...
Dault Page Limit is available on the queryspecdeserializer. Max Limit is a good idea. Maybe both could be set with the existing properties mechanisms. I think it is a more...
why that? there is a clear contract by the json api specification that manifests in that interface. Authentication should not go directly into the method call, but rather should handled...
katharsis-brave makes use of that as well.
but as @chb0github suggests maybe a slightly lower level interface to make calls could also be worthwhile in some occasions.
virtually all use cases I have come across so far have been related to monitoring, security tokens, corrs handling and things like that, all of which are best taken care...
add guess HttpAdapter.setRequestHeader would be nice. currently is is more like: ``` HttpClientAdapter okHttpAdapter = (HttpClientAdapter) adapter; okHttpAdapter.addListener(....); ``` with a ``` @Override public void onBuild(OkHttpClient.Builder builder) { ``` method....
basically all the systems I have seen put security information into some kind of request/thread-local to make it accessible anywhere without having to pass it trough with every method call....