Package net.sf.pmr.core.service

Examples of net.sf.pmr.core.service.SecurityService


    LoginForm loginForm = (LoginForm) form;

    //TODO dans la page jsp remplacer le javascript pour le submit du form

    // Get the securityService
    SecurityService securityService = CoreObjectFactory.getSecurityService();
   
    // login
    User user = securityService.login(loginForm.getLogin(), loginForm.getPassword());
   

    // if user is null, access is denied

    if (user == null) {
View Full Code Here

TOP

Related Classes of net.sf.pmr.core.service.SecurityService

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.