Package org.jmanage.webui.forms

Examples of org.jmanage.webui.forms.LoginForm


                                 ActionMapping mapping,
                                 ActionForm actionForm,
                                 HttpServletRequest request,
                                 HttpServletResponse response)
            throws Exception {
        LoginForm loginForm = (LoginForm) actionForm;
        AuthService authService = ServiceFactory.getAuthService();
        authService.login(Utils.getServiceContext(context),
                loginForm.getUsername(),
                loginForm.getPassword());
        return mapping.findForward(Forwards.SUCCESS);
    }
View Full Code Here

TOP

Related Classes of org.jmanage.webui.forms.LoginForm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.