Skip to content

Commit

Permalink
Revert making ScimUSer getters public
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianhoelzl-sap committed Apr 15, 2024
1 parent 985acb9 commit 5d13692
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -474,15 +474,15 @@ public void setDisplayName(String displayName) {
this.displayName = displayName;
}

public String getNickName() {
String getNickName() {
return nickName;
}

public void setNickName(String nickName) {
this.nickName = nickName;
}

public String getProfileUrl() {
String getProfileUrl() {
return profileUrl;
}

Expand All @@ -506,7 +506,7 @@ public void setUserType(String userType) {
this.userType = userType;
}

public String getPreferredLanguage() {
String getPreferredLanguage() {
return preferredLanguage;
}

Expand All @@ -522,7 +522,7 @@ public void setLocale(String locale) {
this.locale = locale;
}

public String getTimezone() {
String getTimezone() {
return timezone;
}

Expand Down

0 comments on commit 5d13692

Please sign in to comment.