Skip to content
Snippets Groups Projects
Commit e87835b4 authored by srosse's avatar srosse
Browse files

OO-1000: fix mapping for the buddy list

parent 7478ee3e
No related branches found
No related tags found
No related merge requests found
...@@ -52,9 +52,9 @@ public class ContactViewExtended implements BusinessGroupMemberView, IdentityNam ...@@ -52,9 +52,9 @@ public class ContactViewExtended implements BusinessGroupMemberView, IdentityNam
private Long identityKey; private Long identityKey;
@Column(name="member_name", nullable=false, insertable=false, updatable=false) @Column(name="member_name", nullable=false, insertable=false, updatable=false)
private String username; private String username;
@Column(name="member_name", nullable=false, insertable=false, updatable=false) @Column(name="member_firstname", nullable=false, insertable=false, updatable=false)
private String firstName; private String firstName;
@Column(name="member_name", nullable=false, insertable=false, updatable=false) @Column(name="member_lastname", nullable=false, insertable=false, updatable=false)
private String lastName; private String lastName;
@Column(name="membership_role", nullable=false, insertable=false, updatable=false) @Column(name="membership_role", nullable=false, insertable=false, updatable=false)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment