Skip to content
Snippets Groups Projects

Update pagination default to 1000 to support better pagination

Merged Martin Lowe requested to merge malowe/eclipsefdn-api-common:malowe/master/10 into master
7 files
+ 26
19
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -30,11 +30,16 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Helper class that transforms data into a response usable for the RESTeasy container. Uses Jackson serializer to
* format the data into a hashable string
* format the data into a hashable string.
*
* @deprecated as this isn't being applied globally or used almost anywhere, we need a better way to do this. An issue
* will be created to implement a response level filter to make this able to be applied globally as a configuration option,
* rather than a service that needs to be called.
*
* @author Martin Lowe
*
*/
@Deprecated(forRemoval = true, since = "1.6.5")
@ApplicationScoped
public class ResponseHelper {
private static final Logger LOGGER = LoggerFactory.getLogger(ResponseHelper.class);
Loading