-
Notifications
You must be signed in to change notification settings - Fork 15
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
Schema class attributeRequiredMap.get(attrToSearchFor); returning null #65
Comments
Hi @zaidsir, |
The same works in 2.2.0 verions It handles NPE. Like making use of Optional.ofNullable.
versus new method in 2.3.0 causes issues i.e. NPE. |
Hello @galovics, a simple pull request created. Please review it |
Just for reference, the PR is here: #66 |
@zaidsir the other issue, with the complex dotted attribute name is fixed with this PR: #84 |
Hello, I have a case where
attributeRequiredMap.get(attrToSearchFor);
is returning null in the BooleanisRequired
like the following ImageI was wondering if the
isRequired
can be converted into a primitive boolean in order not to have NPE, the following is the content of the mapAlso current
attrToSearchFor
value isurn:scim:schemas:extension:workspace:1
the closest value in the map isurn:scim:schemas:extension:workspace:1.0
I suspect that is this something related to the construction ofattrToSearchFor
using the stringJoiner.Thank you
The text was updated successfully, but these errors were encountered: