Skip to content

Commit

Permalink
Align asserting party property with Spring Boot
Browse files Browse the repository at this point in the history
Closes gh-74
  • Loading branch information
eleftherias authored and marcusdacoregio committed Feb 23, 2023
1 parent 37d6123 commit b9f8285
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -68,7 +68,7 @@ public void refreshMetadata() {

private void fetchMetadata(String registrationId, Saml2RelyingPartyProperties.Registration registration) {
RelyingPartyRegistration relyingPartyRegistration = RelyingPartyRegistrations
.fromMetadataLocation(registration.getAssertingParty().getMetadataUri())
.fromMetadataLocation(registration.getAssertingparty().getMetadataUri())
.signingX509Credentials((credentials) -> registration.getSigning().getCredentials().stream()
.map(this::asSigningCredential).forEach(credentials::add))
.registrationId(registrationId).build();
Expand Down
Expand Up @@ -7,7 +7,7 @@ spring:
signing.credentials:
- private-key-location: classpath:credentials/rp-private.key
certificate-location: classpath:credentials/rp-certificate.crt
asserting-party:
assertingparty:
metadata-uri: https://dev-05937739.okta.com/app/exk46xofd8NZvFCpS5d7/sso/saml/metadata

logging.level:
Expand Down

0 comments on commit b9f8285

Please sign in to comment.