-
Notifications
You must be signed in to change notification settings - Fork 314
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
feat: Initial support for custom REST authentication providers #3982
feat: Initial support for custom REST authentication providers #3982
Conversation
Signed-off-by: Nicola Timeus <[email protected]>
Signed-off-by: Nicola Timeus <[email protected]>
@ashmookler1 Can you please have a review? |
Signed-off-by: Nicola Timeus <[email protected]>
org.eclipse.kura.audit;version="1.0.0", | ||
org.eclipse.kura.crypto;version="1.3.0", |
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.
Range needed
|
||
final String passwordHash = (String) user.getCredentials().get(KURA_PASSWORD_CREDENTIAL); | ||
|
||
if (passwordHash == null) { |
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.
Objects.isNull?
Signed-off-by: Nicola Timeus <[email protected]>
Signed-off-by: Nicola Timeus <[email protected]>
@MMaiero This looks good to me from a high level overview. I think this provides what is needed. Thank you! |
Brief description of the PR. [e.g. Added
null
check onobject
to avoidNullPointerException
]