Package ecar.pojo

Examples of ecar.pojo.SegmentoSgt


                        ) throws ECARException{
       
        try{
           
            if(!"".equals(Pagina.getParamStr(campos, "segmentoSgt"))){
                SegmentoSgt segmento = (SegmentoSgt) super.buscar(SegmentoSgt.class, Long.valueOf(Pagina.getParamStr(campos, "segmentoSgt")));
                segmentoCategoria.setSegmentoSgt(segmento);
            } else {
                segmentoCategoria.setSegmentoSgt(null);
            }
           
View Full Code Here


    public void setSegmentoCategoriaUpload(SegmentoCategoriaSgtc segmentoCategoria, List campos) throws ECARException{
       
        try{
           
            if(!"".equals(FileUpload.verificaValorCampo(campos, "segmentoSgt"))){
                SegmentoSgt segmento = (SegmentoSgt) super.buscar(SegmentoSgt.class, Long.valueOf(FileUpload.verificaValorCampo(campos, "segmentoSgt")));
                segmentoCategoria.setSegmentoSgt(segmento);
            }
           
            segmentoCategoria.setTituloSgtc(FileUpload.verificaValorCampo(campos, "tituloSgtc"));
            segmentoCategoria.setDescricaoSgtc(FileUpload.verificaValorCampo(campos, "descricaoSgtc"));
View Full Code Here

    public List pequisarEditoriasItensLivre(SisAtributoSatb atributo, ServletContext application) throws ECARException{
        List retorno = new ArrayList();
        List segmentosLivres = new SegmentoDao(request).getSegmentosLivres(application);
        Iterator it = segmentosLivres.iterator();
        while(it.hasNext()){
            SegmentoSgt segmento = (SegmentoSgt) it.next();
            retorno.add(this.pesquisarEditoriasBySegmento(atributo, segmento));
        }
        return retorno;
    }
View Full Code Here

           if (codSegmento.intValue() == (Long.valueOf (properties.getMensagem("admPortal.materias"))).intValue() ||
              codSegmento.intValue() == (Long.valueOf (properties.getMensagem("admPortal.taxacoes"))).intValue() ||
          codSegmento.intValue() == (Long.valueOf (properties.getMensagem("admPortal.pergFreq"))).intValue() ||
          codSegmento.intValue() == (Long.valueOf (properties.getMensagem("admPortal.glossario"))).intValue()){
            
             SegmentoSgt segmento = (SegmentoSgt) buscar(SegmentoSgt.class, codSegmento);          
            
             /* Fazemos um size na cole��o de atributos para que o objeto seja carregado com a cole��o
              * pois na pesquisa, se n�o encontrar resultado, o objeto � inclu�do na sess�o e sem
              * esse procedimento, ao carregar a lista, ele se perde*/
             if(segmento.getSisGrupoAtributoSga() != null)
               if(segmento.getSisGrupoAtributoSga().getSisAtributoSatbs() != null)
                 segmento.getSisGrupoAtributoSga().getSisAtributoSatbs().size();
            
           if(segmento.getSegmentoCategoriaSgtcs() != null)
                 segmento.getSegmentoCategoriaSgtcs().size();
            
            segItem.setSegmentoSgt(segmento);
           }else{
            /* combo de segmentos em itens livres */
                if (!"".equals(Pagina.getParamStr(campos, "segmentoSgt"))){
                  SegmentoSgt segmento = (SegmentoSgt) buscar(SegmentoSgt.class, Long.valueOf(Pagina.getParamStr(campos, "segmentoSgt")));          
                
                 /* Fazemos um size na cole��o de atributos para que o objeto seja carregado com a cole��o
                  * pois na pesquisa, se n�o encontrar resultado, o objeto � inclu�do na sess�o e sem
                  * esse procedimento, ao carregar a lista, ele se perde*/
                  if(segmento.getSisGrupoAtributoSga() != null)
                    if(segmento.getSisGrupoAtributoSga().getSisAtributoSatbs() != null)
                      segmento.getSisGrupoAtributoSga().getSisAtributoSatbs().size();
                 
                  if(segmento.getSegmentoCategoriaSgtcs() != null)
                       segmento.getSegmentoCategoriaSgtcs().size();
                
                    segItem.setSegmentoSgt(segmento);
                }
          }
           
View Full Code Here

 
    List retorno = new ArrayList();

    Iterator itS = segmentos.iterator();
    while(itS.hasNext()){
      SegmentoSgt segmento = (SegmentoSgt) itS.next();
      SegmentoAgendaBean segAgd = new SegmentoAgendaBean();
      segAgd.setAgenda(false);
      segAgd.setSegmento(true);
      segAgd.setDescricao(segmento.getTituloSgt());
      segAgd.setCodigo(segmento.getCodSgt());
      retorno.add(segAgd);
    }
    List agendas = new AgendaDao(request).getAtivos();
    Iterator itA = agendas.iterator();
    while(itA.hasNext()){
View Full Code Here

       }
            
       if(pesquisa.size() > 0){
           Iterator it = pesquisa.iterator();
           while(it.hasNext()){
                SegmentoSgt sgt = (SegmentoSgt) it.next();
                sgt.getSegmentoTpAcessoSgttas().size();
           }          
       }
       return pesquisa;
    }
View Full Code Here

         }
              
         if(pesquisa.size() > 0){
             Iterator it = pesquisa.iterator();
             while(it.hasNext()){
                  SegmentoSgt sgt = (SegmentoSgt) it.next();
                  sgt.getSegmentoTpAcessoSgttas().size();
             }          
         }
         return pesquisa;
      }
View Full Code Here

     *
     * @return List
     * @throws ECARException
     */
    public List getAtivos() throws ECARException{
      SegmentoSgt segmento = new SegmentoSgt();
      segmento.setIndAtivoSgt("S");
      return this.pesquisar(segmento);
    }
View Full Code Here

TOP

Related Classes of ecar.pojo.SegmentoSgt

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.