Package org.springframework.nanotrader.service.domain

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

Related Classes of org.springframework.nanotrader.service.domain.ProgressData

Copyright © 2018 www.massapicom. 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.