Package br.gov.serpro.ouvidoria.controller

Examples of br.gov.serpro.ouvidoria.controller.FuncionalidadeCtrl


    if (!funcionario.getPerfil().equals(Perfil.ADMINISTRADOR)) {
      perfilList.remove(Perfil.ADMINISTRADOR);
    }

    /* Lista de Funcionalidades */
    FuncionalidadeCtrl funcionalideCtrl = new FuncionalidadeCtrl(
        getDaoFactory());
    Collection funcionalideList = new TreeSet(ordem);
    funcionalideList.addAll(funcionalideCtrl.list());

    /* Lista de Tipo de Assunto */
    TipoAssuntoCtrl tipoAssuntoCtrl = new TipoAssuntoCtrl(getDaoFactory());
    Collection tipoAssuntoList = new TreeSet(ordem);

View Full Code Here


      if (!gestor.getPerfil().equals(Perfil.ADMINISTRADOR)) {
        perfilList.remove(Perfil.ADMINISTRADOR);
      }

      /* Lista de Funcionalidades */
      FuncionalidadeCtrl funcionalideCtrl = new FuncionalidadeCtrl(
          getDaoFactory());
      Collection funcionalideList = new TreeSet(ordem);
      funcionalideList.addAll(funcionalideCtrl.list());

      /* Lista de Tipo de Assunto */
      TipoAssuntoCtrl tipoAssuntoCtrl = new TipoAssuntoCtrl(
          getDaoFactory());
      Collection tipoAssuntoList = new TreeSet(ordem);
View Full Code Here

        Ajuda ajuda = null;

        // Se há uma funcionalidade específica
        if ((funcionalidadeId != null)
                && (funcionalidadeId.trim().length() > 0)) {
            FuncionalidadeCtrl funcionalidadeCtrl = new FuncionalidadeCtrl(this
                    .getDaoFactory());
            Funcionalidade funcionalidade = funcionalidadeCtrl.get(new Long(
                    funcionalidadeId));

            if (funcionalidade != null) {
                AjudaCtrl ajudaCtrl = new AjudaCtrl(getDaoFactory());
                ajuda = ajudaCtrl.get(funcionalidade, funcionario);
View Full Code Here

TOP

Related Classes of br.gov.serpro.ouvidoria.controller.FuncionalidadeCtrl

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.