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
|
||||
@RequestMapping("/orders")
|
||||
public class RestOrderController {
|
||||
public class OrderController {
|
||||
|
||||
private final OrderService orderService;
|
||||
|
||||
@Autowired
|
||||
public RestOrderController(OrderService orderService) {
|
||||
public OrderController(OrderService orderService) {
|
||||
this.orderService = orderService;
|
||||
}
|
||||
|
Loading…
Reference in New Issue