Package ecar.dao

Examples of ecar.dao.LocalGrupoDao.buscar()


   * @throws ECARException
   */
  public Set<String> getHierarquiaInferior(int codLgp) throws ECARException{
   
    LocalGrupoDao dao =  new LocalGrupoDao(null);
    LocalGrupoLgp grupo = (LocalGrupoLgp) dao.buscar(LocalGrupoLgp.class, (long)codLgp);

    Set<String> buffer = new HashSet<String>();
    buffer.add(grupo.getIdentificacaoLgp());
    getInferior(grupo, buffer);
    return buffer;
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.