BAEL-3777: Revert naming for REST OrderController
This commit is contained in:
parent
c0415f7639
commit
f5f29086ba
|
@ -12,12 +12,12 @@ import java.util.UUID;
|
||||||
|
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/orders")
|
@RequestMapping("/orders")
|
||||||
public class RestOrderController {
|
public class OrderController {
|
||||||
|
|
||||||
private final OrderService orderService;
|
private final OrderService orderService;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
public RestOrderController(OrderService orderService) {
|
public OrderController(OrderService orderService) {
|
||||||
this.orderService = orderService;
|
this.orderService = orderService;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue