MangerController initial check-in

pull/59/head
Michael Jett 2012-02-20 16:16:19 -05:00
parent f7c0af3697
commit c0c21fc31f
1 changed files with 17 additions and 0 deletions

View File

@ -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";
}
}