public String incluirEntidade() {

    entidadeService.inserirEntidade(entidade);
    listaEntidades = entidadeService.getEntidades();
    addMessage("Entidade incluí­da com sucesso!");

    return "listaEntidades";
  }
  public String alterarEntidade() {

    entidadeService.alterarEntidade(entidade);
    listaEntidades = entidadeService.getEntidades();
    addMessage("Entidade alterada com sucesso!");

    return "listaEntidades";
  }
  public String excluirEntidade() {

    entidadeService.excluirEntidade(entidade);
    entidade = new Entidade();
    listaEntidades = entidadeService.getEntidades();
    addMessage("Entidade excluída com sucesso!");

    return "listaEntidades";
  }
 public Entidade getEntidadeById(Long id) {
   return entidadeService.getEntidadeById(id);
 }
  public String listarEntidades() {

    listaEntidades = entidadeService.getEntidades();

    return "listaEntidades";
  }