Examples of EntryGrid


Examples of com.apress.prospring3.springblog.web.form.EntryGrid

    logger.info("Retrieving audit records for Entry with id: {}", id);
   
    List<Entry> auditEntries = entryAuditService.findAuditById(id);
   
    // Construct the grid data that will return as JSON data
    EntryGrid entryGrid = new EntryGrid();
    entryGrid.setCurrentPage(1);
    entryGrid.setTotalPages(1);
    entryGrid.setTotalRecords(auditEntries.size());
    entryGrid.setEntryData(auditEntries);   
   
    return entryGrid;
  }
View Full Code Here

Examples of com.apress.prospring3.springblog.web.form.EntryGrid

       
    //Page<Entry> entryPage = entryService.findAllByPage(pageRequest);
    Page<Entry> entryPage = entryService.findEntryByCriteria(searchCriteria, pageRequest);
   
    // Construct the grid data that will return as JSON data
    EntryGrid entryGrid = new EntryGrid();
   
    entryGrid.setCurrentPage(entryPage.getNumber() + 1);
    entryGrid.setTotalPages(entryPage.getTotalPages());
    entryGrid.setTotalRecords(entryPage.getTotalElements());
    entryGrid.setEntryData(Lists.newArrayList(entryPage.iterator()));
   
    return entryGrid;
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.