MangerController initial check-in

pull/59/head
Michael Jett 13 years ago
parent f7c0af3697
commit c0c21fc31f

@ -0,0 +1,17 @@
package org.mitre.openid.connect.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @author Michael Jett <mjett@mitre.org>
*/
@Controller
public class MangerController {
@RequestMapping({"/", "/home", "/index"})
public String showHomePage() {
return "home";
}
}
Loading…
Cancel
Save