Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the correct way to read an inputStream into a node property in JCR 2?

In JCR 1 you could do:

final InputStream in = zip.getInputStream(zip.getEntry(zipEntryName));
node.setProperty(JcrConstants.JCR_CONTENT, in);

But that's deprecated in JCR 2 as detailed at http://www.day.com/maven/jsr170/javadocs/jcr-2.0/javax/jcr/Node.html#setProperty%28java.lang.String,%20java.io.InputStream%29

That says I should be using node.setProperty(String, Binary) but I don't see any way to turn my inputStream into a Binary. Can anyone point me to docs or example code for this?

like image 860
Stuart Avatar asked Jan 23 '23 08:01

Stuart


1 Answers

ValueFactory.createBinary(InputStream stream)

You get the ValueFactory through the Session returned by Repository.login()

like image 120
Rob Heiser Avatar answered Jan 24 '23 20:01

Rob Heiser