Fixed toString

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/data-miner-manager-cl@167584 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2018-05-18 09:49:25 +00:00
parent 29157b4fc6
commit 1c89571edf
1 changed files with 5 additions and 5 deletions

View File

@ -131,11 +131,11 @@ public class ServiceCredentials implements Serializable {
@Override
public String toString() {
return "ServiceCredentials [userName=" + userName + ", fullName="
+ fullName + ", name=" + name + ", lastName=" + lastName
+ ", email=" + email + ", scope=" + scope + ", groupId="
+ groupId + ", groupName=" + groupName + ", userAvatarURL="
+ userAvatarURL + ", token=" + token + "]";
return "ServiceCredentials [userName=" + userName + ", fullName=" + fullName + ", name=" + name + ", lastName="
+ lastName + ", email=" + email + ", scope=" + scope + ", groupId=" + groupId + ", groupName="
+ groupName + ", userAvatarURL=" + userAvatarURL + "]";
}
}