Package br.com.rodrigo.kuntzer.ee6demo.entity

Examples of br.com.rodrigo.kuntzer.ee6demo.entity.Usuario


    Session session = (Session) entityManager.getDelegate();
    org.hibernate.Query consulta =  session.createQuery("select u from Usuario u where u.username =:param1")
        .setParameter("param1", username)
        .setCacheable(true).setCacheRegion("regiao1")
        .setCacheMode(CacheMode.NORMAL);
    Usuario usuario = (Usuario) consulta.uniqueResult()
    if(usuario != null){
      return usuario.getEmpresas();
    }
    return new ArrayList<Empresa>();
  }
View Full Code Here

TOP

Related Classes of br.com.rodrigo.kuntzer.ee6demo.entity.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.