Advertisement
ssmusoke

Login Controller

Jan 19th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package org.openmrs.module.aijar.page.controller;
  2.  
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4.  
  5. /**
  6. * Created by ssmusoke on 19/01/2016.
  7. */
  8. public class AijarLoginController {
  9. @RequestMapping({"/login.htm"})
  10. public String overrideLoginpage() {
  11. return "forward:/aijar/login.page";
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement