UUID field not populated when saving a new node
-----------------------------------------------
Key: JCR-1385
URL: https://issues.apache.org/jira/browse/JCR-1385
Project: Jackrabbit
Issue Type: Bug
Components: jackrabbit-ocm
Affects Versions: 1.4
Reporter: Xavier Coulon
In the following 'Article' class, there is are fields set to true for 'path'
and 'uuid' jcr properties.
The mixins for referencing (hence, support for UUID) are declared at the @Node
level of the class.
After saving the node with the ObjectContentManager, the uuid field is not
populated as it could be expected
@Node(jcrMixinTypes="mix:referenceable,mix:lockable,mix:versionable")
public class Article {
@Field(uuid=true)
private String id = null;
@Field(path=true)
private String path = null;
@Field
private String content = null;
... constructor, getters and setters
}
The full discussion is here :
http://www.nabble.com/OCM-issues-with-path-and-id-fields-%28annotations%29-tt15460625.html#a15460625
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.