private void redirecionar() {

    try {

      TSFacesUtil.getResponse()
          .sendRedirect(
              "detalhamento.xhtml?promocaoId="
                  + this.promocaoModel.getId()
                  + "&categoriaId="
                  + this.categoriaId
                  + "&filtro="
                  + this.filtro);

    } catch (Exception ex) {

      TSFacesUtil.getRequest().setAttribute("msg", "Ocorreu um erro no redirecionamento");

      ex.printStackTrace();
    }
  }