client, jsp -> html , test flow

pull/4/head
shengzhaoli.shengz 2023-10-16 20:29:28 +08:00
parent 0ea8e76328
commit 0927c23df4
1 changed files with 4 additions and 0 deletions

View File

@ -206,6 +206,10 @@ public class OauthClientDetailsDto implements Serializable {
return this.authorizationGrantTypes.contains("authorization_code");
}
/**
* OAuth2.1
* @deprecated from OAuth2.1
*/
public boolean isContainsPassword() {
return this.authorizationGrantTypes.contains("password");
}