Package ecar.bean

Examples of ecar.bean.IndicativoItemWebServiceBean


          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);
View Full Code Here

TOP

Related Classes of ecar.bean.IndicativoItemWebServiceBean

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.