This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/java/org/hso/ecommerce/controller/intern/suppliers/SupplierOfferController.java

24 lines
574 B
Java
Raw Normal View History

2020-04-29 22:44:16 +02:00
package org.hso.ecommerce.controller.intern.suppliers;
2020-04-28 22:41:29 +02:00
2020-05-15 14:14:29 +02:00
import javax.servlet.http.HttpSession;
2020-04-28 22:41:29 +02:00
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
2020-04-28 22:41:29 +02:00
@Controller
2020-05-15 14:14:29 +02:00
@RequestMapping("/intern/")
2020-05-01 10:48:12 +02:00
public class SupplierOfferController {
2020-05-15 14:14:29 +02:00
@GetMapping("suppliersOffers")
public String internListedArticles(Model model, HttpSession session) {
System.out.println("\nhier\n");
return "intern/offeredArticles/index";
2020-05-15 14:14:29 +02:00
}
2020-05-15 14:14:29 +02:00
2020-04-28 22:41:29 +02:00
}