Examples of ProgressData


Examples of org.springframework.nanotrader.service.domain.ProgressData

   * Get the number of users created at the time of request
   * @return ProgressData
   */
  @RequestMapping(value = "/admin/userdata", method = RequestMethod.GET)
  public ResponseEntity<ProgressData> getProgress() {
    ProgressData progress = new ProgressData();
    progress.setUsercount(this.getAdminServiceFacade().getProgressCount());
    return new ResponseEntity<ProgressData>(progress, getNoCacheHeaders(),
        HttpStatus.OK);

  }
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.