Skip to content

Commit

Permalink
Merge pull request #28 from reportportal/EPMRPP-87663
Browse files Browse the repository at this point in the history
EPMRPP-87663 || Add new fields to ldap model
  • Loading branch information
pbortnik authored Aug 5, 2024
2 parents 24ea814 + 50a1192 commit a83e66f
Showing 1 changed file with 29 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ public class SynchronizationAttributesResource implements Serializable {
@JsonProperty(value = "fullName")
private String fullName;

@JsonProperty(value = "firstName")
private String firstName;

@JsonProperty(value = "lastName")
private String lastName;

@JsonProperty(value = "photo")
private String photo;

Expand Down Expand Up @@ -61,9 +67,30 @@ public void setPhoto(String photo) {
this.photo = photo;
}

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;
}

@Override
public String toString() {
return "SynchronizationAttributesResource{" + "email='" + email + '\'' + ", fullName='"
+ fullName + '\'' + ", photo='" + photo + '\'' + '}';
return "SynchronizationAttributesResource{" +
"email='" + email + '\'' +
", fullName='" + fullName + '\'' +
", firstName='" + firstName + '\'' +
", lastName='" + lastName + '\'' +
", photo='" + photo + '\'' +
'}';
}
}

0 comments on commit a83e66f

Please sign in to comment.