Package ecar.pojo

Examples of ecar.pojo.PaginaAreaSitePa


//      menu.add(menuTopoBean);
 
      String contexto = this.getRequest().getContextPath() + "/";
      Iterator it = listMenu.iterator();
      while(it.hasNext()) {
        PaginaAreaSitePa p = (PaginaAreaSitePa)it.next();
       
        if(linksFuncoesUsuarioSentinela.contains(p.getUrlPas())){
         
          menuTopoBean = new MenuTopoBean();
         
          menuTopoBean.setTitulo(p.getNomePas());
          menuTopoBean.setDescricao(p.getTextoPas());
          menuTopoBean.setLink(contexto + p.getUrlPas());
          menuTopoBean.setTituloPagina(p.getTituloPas());
         
          menu.add(menuTopoBean);
        }
      }
     
View Full Code Here


     * @throws ECARException
     */
    public List getPaginaAreaSitePa(String indCapa) throws ECARException {
        List retorno = new ArrayList();

        PaginaAreaSitePa pagina = new PaginaAreaSitePa();

        pagina.setIndCapaPas(indCapa);

        retorno = this.pesquisar(pagina, new String[]{"seqApresentacaoPas","asc"});

        return retorno;

View Full Code Here

TOP

Related Classes of ecar.pojo.PaginaAreaSitePa

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.