Class ControllerTwoImpl
- java.lang.Object
-
- org.bremersee.web.reactive.function.client.proxy.app.ControllerTwoImpl
-
- All Implemented Interfaces:
ControllerTwo
@RestController public class ControllerTwoImpl extends Object implements ControllerTwo
Test controller two implementation.- Author:
- Christian Bremer
-
-
Constructor Summary
Constructors Constructor Description ControllerTwoImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description reactor.core.publisher.Mono<String>sayHello(String name)Say hello mono.reactor.core.publisher.Mono<String>sayHelloTo(String name)Say hello to mono.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.bremersee.web.reactive.function.client.proxy.app.ControllerTwo
setName
-
-
-
-
Method Detail
-
sayHello
public reactor.core.publisher.Mono<String> sayHello(String name)
Description copied from interface:ControllerTwoSay hello mono.- Specified by:
sayHelloin interfaceControllerTwo- Parameters:
name- the name- Returns:
- the mono
-
sayHelloTo
public reactor.core.publisher.Mono<String> sayHelloTo(String name)
Description copied from interface:ControllerTwoSay hello to mono.- Specified by:
sayHelloToin interfaceControllerTwo- Parameters:
name- the name- Returns:
- the mono
-
-