public void rowEnable() { if (objSelTramite.isTramite_asignacion() == false) { RequestContext.getCurrentInstance().execute("{PF('diaAsignacionTramite').show()}"); } else { RequestContext.getCurrentInstance().execute("{PF('wgSeguimiento').show()}"); } }
/** @return the strFile */ public StreamedContent getStrFile() { try { ArchivoEntidad objArchivo = ArchivoModelo.obtenerArchivoBlob(objSelTramite.getTramite_id()); strFile = new DefaultStreamedContent( objArchivo.getArchivo_blob().getBinaryStream(), objArchivo.getArchivo_tipo(), objArchivo.getArchivo_nombre()); return strFile; } catch (Exception ex) { Logger.getLogger(TramiteAsignacionControlador.class.getName()).log(Level.SEVERE, null, ex); return null; } }