@AdminController @ResponseBody public class ApplicationsController extends Object
| Constructor and Description |
|---|
ApplicationsController(ApplicationRegistry registry) |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Application>> |
application(String name) |
reactor.core.publisher.Flux<Application> |
applications() |
reactor.core.publisher.Flux<org.springframework.http.codec.ServerSentEvent<Application>> |
applicationsStream() |
reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> |
unregister(String name) |
public ApplicationsController(ApplicationRegistry registry)
@GetMapping(path="/applications",
produces="application/json")
public reactor.core.publisher.Flux<Application> applications()
@GetMapping(path="/applications/{name}",
produces="application/json")
public reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Application>> application(@PathVariable(value="name")
String name)
@GetMapping(path="/applications",
produces="text/event-stream")
public reactor.core.publisher.Flux<org.springframework.http.codec.ServerSentEvent<Application>> applicationsStream()
Copyright © 2022 codecentric AG. All rights reserved.