@RestController public class UpdateGreetingResource extends Object
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity |
updateGreeting(UUID id,
GreetingEntity model) |
@RequestMapping(path="/greetings/{id}",
method=PUT,
consumes={"application/json","application/x-www-form-urlencoded"})
@ResponseStatus(value=ACCEPTED)
public org.springframework.http.ResponseEntity updateGreeting(@NotNull @PathVariable(value="id")
UUID id,
@RequestBody
GreetingEntity model)
Copyright © 2016–2018 Sharmarke Aden. All rights reserved.