@@ -133,7 +133,8 @@ public List<StrategyConfig> getAllStrategies(@Parameter(hidden = true) Principal
133
133
content = @ Content (schema = @ Schema (implementation = String .class )))
134
134
})
135
135
public ResponseEntity <StrategyConfig > getStrategy (
136
- @ Parameter (hidden = true ) Principal principal , @ PathVariable String strategyId ) {
136
+ @ Parameter (hidden = true ) Principal principal ,
137
+ @ PathVariable (name = "strategyId" ) String strategyId ) {
137
138
138
139
log .info (
139
140
"GET " + STRATEGIES_RESOURCE_PATH + "/{} - getStrategy() - caller: {}" ,
@@ -175,7 +176,7 @@ public ResponseEntity<StrategyConfig> getStrategy(
175
176
})
176
177
public ResponseEntity <StrategyConfig > updateStrategy (
177
178
@ Parameter (hidden = true ) Principal principal ,
178
- @ PathVariable String strategyId ,
179
+ @ PathVariable ( name = "strategyId" ) String strategyId ,
179
180
@ RequestBody StrategyConfig config ) {
180
181
181
182
log .info (
@@ -263,7 +264,8 @@ public ResponseEntity<StrategyConfig> createStrategy(
263
264
content = @ Content (schema = @ Schema (implementation = String .class )))
264
265
})
265
266
public ResponseEntity <StrategyConfig > deleteStrategy (
266
- @ Parameter (hidden = true ) Principal principal , @ PathVariable String strategyId ) {
267
+ @ Parameter (hidden = true ) Principal principal ,
268
+ @ PathVariable (name = "strategyId" ) String strategyId ) {
267
269
268
270
log .info (
269
271
"DELETE " + STRATEGIES_RESOURCE_PATH + "/{} - deleteStrategy() - caller: {}" ,
0 commit comments