0
The view is like this:
<p:media cache="false" value="#{documents.readPDF()}" width="640px" height="480px" player="pdf" />
No bean is like this:
public StreamedContent readPDF() {
        FileModel pdfModel = getDocumentPDF();
        InputStream stream = new ByteArrayInputStream(pdfModel.getBytes());
        return new DefaultStreamedContent(stream, "application/pdf", pdfModel.getFileName());
    }