-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Saml2LoginConfigurer relyingPartyRegistrationRepository method does not return correct type #10245
Labels
in: saml2
An issue in SAML2 modules
status: backported
An issue that has been backported to maintenance branches
type: bug
A general bug
Milestone
Comments
dvanbler
added
status: waiting-for-triage
An issue we've not yet triaged
type: bug
A general bug
labels
Sep 9, 2021
marcusdacoregio
added
in: saml2
An issue in SAML2 modules
and removed
status: waiting-for-triage
An issue we've not yet triaged
labels
Sep 13, 2021
Hi @dvanbler, thanks for bringing this to our attention. Exactly, this should be changed to Are you able to submit a PR that fixes it? |
Pull request for this issue: gh-10256 |
Fixed via 58d5088 |
marcusdacoregio
pushed a commit
that referenced
this issue
Sep 13, 2021
spring-projects-issues
added
status: backported
An issue that has been backported to maintenance branches
and removed
for: backport-to-5.5.x
labels
Sep 13, 2021
marcusdacoregio
pushed a commit
that referenced
this issue
Sep 13, 2021
marcusdacoregio
pushed a commit
that referenced
this issue
Sep 13, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
in: saml2
An issue in SAML2 modules
status: backported
An issue that has been backported to maintenance branches
type: bug
A general bug
Describe the bug
A call to saml2Login().relyingPartyRegistrationRepository(...).and() does not return a type that can be further configured with spring security.
To Reproduce
Note that relyingPartyRegistrationRepository appears to be the only saml configuration method that causes this problem.
I assume that this:
public Saml2LoginConfigurer relyingPartyRegistrationRepository(RelyingPartyRegistrationRepository repo) {
needs to be changed to this:
public Saml2LoginConfigurer<B> relyingPartyRegistrationRepository(RelyingPartyRegistrationRepository repo) {
Expected behavior
Ability to configure other non-saml http security properties after configuring saml2 relying party registry.
The text was updated successfully, but these errors were encountered: