Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ public class IdentityObject implements Serializable {

private Long id;
@IdentityProperty(PropertyType.NAME) private String name;
@IdentityProperty(attributeName = FIRST_NAME, value = PropertyType.ATTRIBUTE)
@IdentityProperty(attributeName = LAST_NAME, value = PropertyType.ATTRIBUTE)
private IdentityObjectType type;

@Id
Expand Down Expand Up @@ -56,5 +58,21 @@ public IdentityObjectType getType() {
public void setType(IdentityObjectType type) {
this.type = type;
}

public String getFirstName() {
return firstName;
}

public void setFirstName(String firstName) {
this.firstName = firstName;
}

public String getLastName() {
return lastName;
}

public void setLastName(String lastName) {
this.lastName = lastName;
}

}