I am writing an OData Producer in Java using odata4j. The Producer provides feeds of data from a legacy database.
I'm trying to find out how I implement paging and caching in my OData Producer.
I see lots of examples using .NET where you can set the SetEntitySetPageSize and use CachePolicy on the URLs including the Query filters, but can't see any equivalents in the Java world.
So how do I implement this in Java? Or do I have to provide the full data feed all the time?
Thanks.
Sarah