T278 updated javadoc
This commit is contained in:
@@ -27,13 +27,19 @@ public class EventController {
|
|||||||
* The list of objects is received via {@link EventRequestDto}, which contains time brackets,
|
* The list of objects is received via {@link EventRequestDto}, which contains time brackets,
|
||||||
* as well as the key - uuid.
|
* as well as the key - uuid.
|
||||||
* @param event EventRequestDto object that contains data needed to query the database
|
* @param event EventRequestDto object that contains data needed to query the database
|
||||||
* @return list of Event's
|
* @return list of {@link com.release11.klaus.model.Event}
|
||||||
*/
|
*/
|
||||||
@PostMapping
|
@PostMapping
|
||||||
public ResponseEntity filterHistory(@RequestBody EventRequestDto event){
|
public ResponseEntity filterHistory(@RequestBody EventRequestDto event){
|
||||||
return new ResponseEntity(service.getEventsByDateTimeAndBusinessKeys(event), HttpStatus.OK);
|
return new ResponseEntity(service.getEventsByDateTimeAndBusinessKeys(event), HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the list of Events of last 24h from given date.
|
||||||
|
* @param uuid unique id of message list
|
||||||
|
* @param messageId unique id of message in message list
|
||||||
|
* @return list of {@link com.release11.klaus.model.Event}
|
||||||
|
*/
|
||||||
@GetMapping(path = "/{uuid}/{messageId}")
|
@GetMapping(path = "/{uuid}/{messageId}")
|
||||||
public ResponseEntity getLastDay(@PathVariable UUID uuid,
|
public ResponseEntity getLastDay(@PathVariable UUID uuid,
|
||||||
@PathVariable Integer messageId){
|
@PathVariable Integer messageId){
|
||||||
|
|||||||
Reference in New Issue
Block a user