Open Kilda Java Documentation
TopologyController.java
Go to the documentation of this file.
1 package org.openkilda.controller;
2 
3 import org.springframework.stereotype.Controller;
4 import org.springframework.web.bind.annotation.RequestMapping;
5 import org.springframework.web.servlet.ModelAndView;
6 
7 import javax.servlet.http.HttpServletRequest;
8 
11 
17 @Controller
18 @RequestMapping(value = "/topology")
19 public class TopologyController extends BaseController {
20 
28  @RequestMapping
30  public ModelAndView topology(final HttpServletRequest request) {
31  return validateAndRedirect(request, IConstants.View.TOPOLOGY);
32  }
33 }
value
Definition: nodes.py:62
ModelAndView topology(final HttpServletRequest request)