Class TigerConfigurationController
- java.lang.Object
-
- de.gematik.test.tiger.proxy.controller.TigerConfigurationController
-
@Validated @RestController public class TigerConfigurationController extends Object
-
-
Constructor Summary
Constructors Constructor Description TigerConfigurationController(TigerProxy tigerProxy)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TigerRouteDtoaddRoute(TigerRouteDto addRouteDto)protected booleancanEqual(Object other)voiddeleteRoute(@NotBlank String id)booleanequals(Object o)List<TigerRouteDto>getRoutes()TigerProxygetTigerProxy()inthashCode()StringtoString()
-
-
-
Constructor Detail
-
TigerConfigurationController
@ConstructorProperties("tigerProxy") public TigerConfigurationController(TigerProxy tigerProxy)
-
-
Method Detail
-
addRoute
@PutMapping(value="/route", consumes="application/json") public TigerRouteDto addRoute(@RequestBody TigerRouteDto addRouteDto)
-
getRoutes
@GetMapping(value="/route", produces="application/json") public List<TigerRouteDto> getRoutes()
-
deleteRoute
@DeleteMapping("/route/{id}") public void deleteRoute(@PathVariable @NotBlank @NotBlank String id)
-
getTigerProxy
public TigerProxy getTigerProxy()
-
canEqual
protected boolean canEqual(Object other)
-
-