|
@@ -266,26 +266,25 @@ public class OauthClientDetails implements Serializable {
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- StringBuilder sb = new StringBuilder();
|
|
|
- sb.append(getClass().getSimpleName());
|
|
|
- sb.append(" [");
|
|
|
- sb.append("Hash = ").append(hashCode());
|
|
|
- sb.append(", clientId=").append(clientId);
|
|
|
- sb.append(", resourceIds=").append(resourceIds);
|
|
|
- sb.append(", clientSecret=").append(clientSecret);
|
|
|
- sb.append(", scope=").append(scope);
|
|
|
- sb.append(", authorizedGrantTypes=").append(authorizedGrantTypes);
|
|
|
- sb.append(", webServerRedirectUri=").append(webServerRedirectUri);
|
|
|
- sb.append(", authorities=").append(authorities);
|
|
|
- sb.append(", accessTokenValidity=").append(accessTokenValidity);
|
|
|
- sb.append(", refreshTokenValidity=").append(refreshTokenValidity);
|
|
|
- sb.append(", additionalInformation=").append(additionalInformation);
|
|
|
- sb.append(", autoapprove=").append(autoapprove);
|
|
|
- sb.append(", state=").append(state);
|
|
|
- sb.append(", tokenUrl=").append(tokenUrl);
|
|
|
- sb.append(", userInfoUrl=").append(userInfoUrl);
|
|
|
- sb.append(", serialVersionUID=").append(serialVersionUID);
|
|
|
- sb.append("]");
|
|
|
- return sb.toString();
|
|
|
+ String sb = getClass().getSimpleName() +
|
|
|
+ " [" +
|
|
|
+ "Hash = " + hashCode() +
|
|
|
+ ", clientId=" + clientId +
|
|
|
+ ", resourceIds=" + resourceIds +
|
|
|
+ ", clientSecret=" + clientSecret +
|
|
|
+ ", scope=" + scope +
|
|
|
+ ", authorizedGrantTypes=" + authorizedGrantTypes +
|
|
|
+ ", webServerRedirectUri=" + webServerRedirectUri +
|
|
|
+ ", authorities=" + authorities +
|
|
|
+ ", accessTokenValidity=" + accessTokenValidity +
|
|
|
+ ", refreshTokenValidity=" + refreshTokenValidity +
|
|
|
+ ", additionalInformation=" + additionalInformation +
|
|
|
+ ", autoapprove=" + autoapprove +
|
|
|
+ ", state=" + state +
|
|
|
+ ", tokenUrl=" + tokenUrl +
|
|
|
+ ", userInfoUrl=" + userInfoUrl +
|
|
|
+ ", serialVersionUID=" + serialVersionUID +
|
|
|
+ "]";
|
|
|
+ return sb;
|
|
|
}
|
|
|
}
|