Package br.com.colegio.vo

Examples of br.com.colegio.vo.Usuario


      Collection<Object> r = UsuarioDAO.list();

      if (r != null)
        for (Object o : r)
        {
          Usuario u = (Usuario)o;
          data.put(u.getLogin(), u);
        }
    }

    return data.get(login);
  }
View Full Code Here


public class LoginController
{
  public static Usuario login(String usr, String pwd)
  {
    Usuario u = UsuarioData.getInstance().getUsuarioByLogin(usr);

    if (u != null && u.getSenha().equals(HashMD5.gerarHash(pwd, "SHA-256")))
      return u;

    return null;
  }
View Full Code Here

TOP

Related Classes of br.com.colegio.vo.Usuario

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.