-
Notifications
You must be signed in to change notification settings - Fork 827
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor ScimUserProvisioning Dependency Injection #3026
Refactor ScimUserProvisioning Dependency Injection #3026
Conversation
e72d23d
to
9a9a5b1
Compare
@@ -131,8 +130,6 @@ public Logger getLogger() { | |||
|
|||
private static final RowMapper<ScimUser> mapper = new ScimUserRowMapper(); | |||
|
|||
private Pattern usernamePattern = Pattern.compile("[\\p{L}+0-9+\\-_.@'!]+"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you provide some context on how this is now an obsolete property. Is this property obsolete globally in UAA, or just obsolete in JdbcScimUserProvisioning
?
If the former (globally), this property still exist in these places and need to be cleaned up:
username_pattern: '[a-z0-9+\-_.@]+' uaa/server/src/main/java/org/cloudfoundry/identity/uaa/impl/config/UaaConfiguration.java
Line 233 in 4fba1e4
public String username_pattern;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the hint, I removed the variable in commit c7c8bdc.
No description provided.