Package gov.nasa.pds.registry.model
Class PagedResponse<T>
- java.lang.Object
- 
- gov.nasa.pds.registry.model.PagedResponse<T>
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class PagedResponse<T> extends Object implements Serializable A class to wrap list responses from the registry with.- Author:
- pramirez
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description PagedResponse()PagedResponse(Integer start, Long numFound)PagedResponse(Integer start, Long numFound, List<T> results)PagedResponse(List<T> results)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetNumFound()List<T>getResults()IntegergetStart()voidsetNumFound(Long numFound)voidsetResults(List<T> results)voidsetStart(Integer start)
 
-