Files

File: src/main/java/com/paymentlink/controller/web/OrderController.java

1 package com.paymentlink.controller.web;
2
3 import org.springframework.stereotype.Controller;
4 import org.springframework.web.bind.annotation.GetMapping;
5 import org.springframework.web.bind.annotation.PathVariable;
6
7 @Controller
8 public class OrderController {
9
10 @GetMapping("/order/{orderId}")
11 public String order(@PathVariable String orderId) {
12 return "order-confirmation";
13 }
14 }
15
16