Skip to content

Commit

Permalink
Merge pull request #3140 from zlamalp/sponsored
Browse files Browse the repository at this point in the history
CORE: Added toString() to SponsoredUserData
  • Loading branch information
zlamalp authored Mar 30, 2021
2 parents 2a6953e + dc24279 commit 20722e1
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,20 @@ public String getGuestName() {
public void setGuestName(String guestName) {
this.guestName = guestName;
}

@Override
public String toString() {
return "SponsoredUserData{" +
"guestName='" + guestName + '\'' +
", firstName='" + firstName + '\'' +
", lastName='" + lastName + '\'' +
", titleBefore='" + titleBefore + '\'' +
", titleAfter='" + titleAfter + '\'' +
", namespace='" + namespace + '\'' +
", email='" + email + '\'' +
", password='realPasswordIsNotLogged'" +
", login='" + login + '\'' +
'}';
}

}

0 comments on commit 20722e1

Please sign in to comment.