List codNiveis = this.getNivelIettWebService(codItem);
Iterator itCodNiveis = codNiveis.iterator();
while(itCodNiveis.hasNext()){
Object[] o = (Object[]) itCodNiveis.next();
IndicativoItemWebServiceBean indicativoBean = new IndicativoItemWebServiceBean();
indicativoBean.setCodIndicativo((o[0] != null) ? Long.valueOf(o[0].toString()) : null);
indicativoBean.setDescricaoIndicativo((o[1] != null) ? o[1].toString() : null);
indicativos.add(indicativoBean);
}
iwsBean.setIndicativoItem(indicativos);
retorno.add(iwsBean);