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

package org.hso.ecommerce.controller.intern.suppliers;
import javax.servlet.http.HttpSession;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/intern/")
public class SupplierOfferController {
@GetMapping("suppliersOffers")
public String internListedArticles(Model model, HttpSession session) {
System.out.println("\nhier\n");
return "intern/offeredArticles/index";
}
}