Interface FormDataController
-
public interface FormDataController
The form data controller.- Author:
- Christian Bremer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description reactor.core.publisher.Mono<Map<String,Object>>
postFormData(String headerValue, String lastValue, org.springframework.util.MultiValueMap<String,String> data)
Post form data mono.
-
-
-
Method Detail
-
postFormData
@RequestMapping(path="/upload", method=POST, consumes="application/x-www-form-urlencoded", produces="application/json") reactor.core.publisher.Mono<Map<String,Object>> postFormData(@RequestHeader(name="x-ok-flag") String headerValue, @CookieValue(name="last") String lastValue, @RequestBody org.springframework.util.MultiValueMap<String,String> data)
Post form data mono.- Parameters:
headerValue
- the header valuelastValue
- the last valuedata
- the data- Returns:
- the mono
-
-