JCR 2.0 でノードを更新しようとしています
InputStream content = node.getProperty("jcr:content").getProperty("jcr:data").getBinary().getStream();
//TODO same with stream
Binary value = ...;
Node contentNode = node.getProperty("jcr:content");
contentNode.setProperty("jcr:content", value);
そして、「javax.jcr.nodetype.ConstraintViolationException: Item is protected」という例外が発生します。どうしたの?