Package labsis.usuario.dao

Examples of labsis.usuario.dao.DaoLogUsuario.retrieve()


  public List<LogUsuario> retrieveLogs(int pageNum) {
    DaoLogUsuario dl = null;
    List<LogUsuario> l = new ArrayList<LogUsuario>();
    try {
      dl = new DaoLogUsuario();
      List<Object> list = dl.retrieve(pageNum, 15);
      Integer totalPages = (Integer) list.remove(list.size() - 1);
      for (Object o : list) {
        LogUsuario lu = (LogUsuario) o;
        l.add(lu);
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.