-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Blocker
-
Resolution: Done
-
Affects Version/s: 3.0.0.Final
-
Fix Version/s: 3.1.1.Final, 3.2.0.Final
-
Component/s: JCR
-
Labels:None
-
Forum Reference:
-
Workaround:Workaround Exists
-
Workaround Description:
-
Git Pull Request:
Normally, this code should always work:
Node node = ...
|
session.getNodeByIdentifier(node.getIdentifier());
|
if ( node.isNodeType("mix:referenceable") { |
session.getNodeByIdentifier(node.getProperty("jcr:uuid").getString()); |
}
|
However, the second call to "getNodeByIdentifier()" with the "jcr:uuid" property value does not work if "node" happens to be under "/jcr:system".