@Controller @RequestMapping(value="/stats") public class StatsController extends BaseController
localeResolver| Constructor and Description |
|---|
StatsController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<RestResponse> |
download(String idpEntityId,
org.joda.time.LocalDate startDate,
org.joda.time.LocalDate endDate,
javax.servlet.http.HttpServletResponse response) |
org.springframework.http.ResponseEntity<RestResponse> |
download(String idpEntityId,
org.joda.time.LocalDate startDate,
org.joda.time.LocalDate endDate,
long id,
javax.servlet.http.HttpServletResponse response) |
org.springframework.http.ResponseEntity<RestResponse> |
get(String idpEntityId,
org.joda.time.LocalDate startDate,
org.joda.time.LocalDate endDate) |
org.springframework.http.ResponseEntity<RestResponse> |
get(String idpEntityId,
org.joda.time.LocalDate startDate,
org.joda.time.LocalDate endDate,
long id) |
createRestResponse, getLocale, me@RequestMapping(value="",
produces="application/json")
public org.springframework.http.ResponseEntity<RestResponse> get(@RequestHeader(value="X-IDP-ENTITY-ID")
String idpEntityId,
@RequestParam(value="start")
org.joda.time.LocalDate startDate,
@RequestParam(value="end")
org.joda.time.LocalDate endDate)
@RequestMapping(value="/download",
produces="text/csv")
public org.springframework.http.ResponseEntity<RestResponse> download(@RequestParam(value="idpEntityId")
String idpEntityId,
@RequestParam(value="start")
org.joda.time.LocalDate startDate,
@RequestParam(value="end")
org.joda.time.LocalDate endDate,
javax.servlet.http.HttpServletResponse response)
@RequestMapping(value="/id/{id}",
produces="application/json")
public org.springframework.http.ResponseEntity<RestResponse> get(@RequestHeader(value="X-IDP-ENTITY-ID")
String idpEntityId,
@RequestParam(value="start")
org.joda.time.LocalDate startDate,
@RequestParam(value="end")
org.joda.time.LocalDate endDate,
@PathVariable
long id)
@RequestMapping(value="/id/{id}/download",
produces="text/csv")
public org.springframework.http.ResponseEntity<RestResponse> download(@RequestParam(value="idpEntityId")
String idpEntityId,
@RequestParam(value="start")
org.joda.time.LocalDate startDate,
@RequestParam(value="end")
org.joda.time.LocalDate endDate,
@PathVariable
long id,
javax.servlet.http.HttpServletResponse response)
Copyright © 2012–2015 SURFnet bv, The Netherlands. All rights reserved.