Class ControllerOneImpl
- java.lang.Object
-
- org.bremersee.web.reactive.function.client.proxy.app.ControllerOneImpl
-
- All Implemented Interfaces:
ControllerOne
@RestController public class ControllerOneImpl extends Object implements ControllerOne
Test controller one implementation.- Author:
- Christian Bremer
-
-
Field Summary
-
Fields inherited from interface org.bremersee.web.reactive.function.client.proxy.app.ControllerOne
OK_RESPONSE
-
-
Constructor Summary
Constructors Constructor Description ControllerOneImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<Boolean>deleteOk(String name)Delete ok mono.reactor.core.publisher.Flux<Map<String,Object>>getOks()Gets oks.reactor.core.publisher.Mono<Void>patchOk(String name, String suffix, String payload)Patch ok mono.reactor.core.publisher.Mono<String>simpleGet()Simple get mono.reactor.core.publisher.Mono<String>updateOk(String name, String payload)Update ok mono.
-
-
-
Method Detail
-
simpleGet
public reactor.core.publisher.Mono<String> simpleGet()
Description copied from interface:ControllerOneSimple get mono.- Specified by:
simpleGetin interfaceControllerOne- Returns:
- the mono
-
getOks
public reactor.core.publisher.Flux<Map<String,Object>> getOks()
Description copied from interface:ControllerOneGets oks.- Specified by:
getOksin interfaceControllerOne- Returns:
- the oks
-
updateOk
public reactor.core.publisher.Mono<String> updateOk(String name, String payload)
Description copied from interface:ControllerOneUpdate ok mono.- Specified by:
updateOkin interfaceControllerOne- Parameters:
name- the namepayload- the payload- Returns:
- the mono
-
patchOk
public reactor.core.publisher.Mono<Void> patchOk(String name, String suffix, String payload)
Description copied from interface:ControllerOnePatch ok mono.- Specified by:
patchOkin interfaceControllerOne- Parameters:
name- the namesuffix- the suffixpayload- the payload- Returns:
- the mono
-
deleteOk
public reactor.core.publisher.Mono<Boolean> deleteOk(String name)
Description copied from interface:ControllerOneDelete ok mono.- Specified by:
deleteOkin interfaceControllerOne- Parameters:
name- the name- Returns:
- the mono
-
-