Package Bean

Source Code of Bean.DocumentService

package Bean;

import javax.faces.bean.ApplicationScoped;
import javax.faces.bean.ManagedBean;
import org.primefaces.model.DefaultTreeNode;
import org.primefaces.model.TreeNode;
@ManagedBean(name = "documentService")
@ApplicationScoped
public class DocumentService {
    
    public TreeNode createDocuments() {
        TreeNode root = new DefaultTreeNode(new Document("-", "Files", "-", "Folder", "-", "-", "-"), null);
        
        TreeNode nivel1 = new DefaultTreeNode(new Document("Financeira", "-", "-", "-", "-", "-", "-"), root);
        TreeNode nivel2 = new DefaultTreeNode(new Document("Clientes/Cooperados", "-", "-", "-", "-", "-", "-"), root);
        TreeNode nivel3 = new DefaultTreeNode(new Document("Processos", "-", "-", "-", "-", "-", "-"), root);
        TreeNode nivel4 = new DefaultTreeNode(new Document("Pessoas/conhecimento", "-", "-", "-", "-", "-", "-"), root);
        
        TreeNode sub1_1 = new DefaultTreeNode(new Document("-", "Redução de custos operacionais", "Indice  de custos e despesas por boletim", "5%", "0", "Finanças", "Reduzir os custos  dos boletins."), nivel1);
        TreeNode sub1_2 = new DefaultTreeNode(new Document("-", "Redução da inadimplencia", "Percentual  de inadimplência dos convênios", "5%", "0", "Finanças", "Plano de recupeção de credito"), nivel1);
        TreeNode sub1_3 = new DefaultTreeNode(new Document("-", "Aumento do faturamento", "Reajuste percentual de contratos por convênio", "70%", "0", "Convênio", "Renovar contratos com valores da CBHPM 2012"), nivel1);
       
       
        TreeNode sub2_1 = new DefaultTreeNode(new Document("-", "Promover o uso do Anestesix", "Índice de boletins digitados online", "70%", "25%", "TI", "-"), nivel2);
        TreeNode sub2_2 = new DefaultTreeNode(new Document("-", "Sistema de protocolo", "Número de protocolo de manifestações dos cooperados", "100%", "0%", "Cooperado", "Renovar contratos com valores da CBHPM 2012"), nivel2);
      
        TreeNode sub2_1_1 = new DefaultTreeNode(new Document("-", "-", "-", "-", "-", "-", "Criar vídeo tutorial explanando as opções do sistema e como utilizá-lo"), sub2_1);
        TreeNode sub2_1_2 = new DefaultTreeNode(new Document("-", "-", "-", "-", "-", "-", "Visitar grandes serviços para expor pessoalmente os benefícios da digitação online"), sub2_1);
        TreeNode sub2_1_3 = new DefaultTreeNode(new Document("-", "-", "-", "-", "-", "-", "Criar central de atendimento a dúvidas e sugestões"), sub2_1);
        TreeNode sub2_1_4 = new DefaultTreeNode(new Document("-", "-", "-", "-", "-", "-", "Padronizar processo de geração de login e senha para o Anestesix"), sub2_1);
        TreeNode sub2_1_5 = new DefaultTreeNode(new Document("-", "-", "-", "-", "-", "-", "Criar local para informar das atualizações no sistema e das novas funcionalidades"), sub2_1);
      
        TreeNode subb = new DefaultTreeNode(new Document("teste"), sub2_1);
                
        return root;
    }
}
TOP

Related Classes of Bean.DocumentService

TOP
Copyright © 2018 www.massapi.com. 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.