-
Notifications
You must be signed in to change notification settings - Fork 619
Closed
Labels
in: coreIssues in core supportIssues in core supportin: ogmObject Graph Mapping (Legacy)Object Graph Mapping (Legacy)type: enhancementA general enhancementA general enhancement
Milestone
Description
Michael Simons opened DATAGRAPH-1201 and commented
See attached reproducer.
@NodeEntity
public class Blub {
@Id
@GeneratedValue
private Long id;
private final String name;
public Blub(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
fails to be save correctly, name
is always null.
If you remove the final
, than everything is ok.
Affects: 5.1.5 (Lovelace SR5)
Attachments:
- demo.zip (86.22 kB)
Metadata
Metadata
Assignees
Labels
in: coreIssues in core supportIssues in core supportin: ogmObject Graph Mapping (Legacy)Object Graph Mapping (Legacy)type: enhancementA general enhancementA general enhancement