File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/registration Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 44
44
* String registrationId = "simplesamlphp";
45
45
*
46
46
* String relyingPartyEntityId = "{baseUrl}/saml2/service-provider-metadata/{registrationId}";
47
- * String assertionConsumerServiceLocation = "{baseUrl}/login/saml2/sso/{registrationId}";
47
+ * String assertingConsumerServiceLocation = "{baseUrl}/login/saml2/sso/{registrationId}";
48
48
* Saml2X509Credential relyingPartySigningCredential = ...;
49
49
*
50
50
* String assertingPartyEntityId = "https://simplesaml-for-spring-saml.apps.pcfone.io/saml2/idp/metadata.php";
56
56
* .entityId(relyingPartyEntityId)
57
57
* .assertionConsumerServiceLocation(assertingConsumerServiceLocation)
58
58
* .signingX509Credentials((c) -> c.add(relyingPartySigningCredential))
59
- * .assertingPartyDetails ((details) -> details
60
- * .entityId(assertingPartyEntityId));
61
- * .singleSignOnServiceLocation(singleSignOnServiceLocation))
62
- * .verifyingX509Credentials ((c) -> c.add(assertingPartyVerificationCredential))
59
+ * .assertingPartyMetadata ((details) -> details
60
+ * .entityId(assertingPartyEntityId)
61
+ * .singleSignOnServiceLocation(singleSignOnServiceLocation)
62
+ * .verificationX509Credentials ((c) -> c.add(assertingPartyVerificationCredential) ))
63
63
* .build();
64
64
* </pre>
65
65
*
@@ -995,7 +995,7 @@ public Builder singleLogoutServiceResponseLocation(String singleLogoutServiceRes
995
995
996
996
/**
997
997
* Set the NameID format
998
- * @param nameIdFormat
998
+ * @param nameIdFormat the given NameID format
999
999
* @return the {@link Builder} for further configuration
1000
1000
* @since 5.7
1001
1001
*/
You can’t perform that action at this time.
0 commit comments