File tree Expand file tree Collapse file tree 2 files changed +17
-15
lines changed
docs/modules/ROOT/pages/servlet/saml2/login Expand file tree Collapse file tree 2 files changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -103,10 +103,11 @@ spring:
103103 security:
104104 saml2:
105105 relyingparty:
106- okta:
107- identityprovider:
108- entity-id: ...
109- singlesignon.sign-request: false
106+ registration:
107+ okta:
108+ assertingparty:
109+ entity-id: ...
110+ singlesignon.sign-request: false
110111----
111112
112113Java::
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ spring:
125125 relyingparty:
126126 registration:
127127 adfs:
128- identityprovider :
128+ assertingparty :
129129 entity-id: https://idp.example.com/issuer
130130 verification.credentials:
131131 - certificate-location: "classpath:idp.crt"
@@ -886,16 +886,17 @@ spring:
886886 security:
887887 saml2:
888888 relyingparty:
889- okta:
890- signing.credentials: &relying-party-credentials
891- - private-key-location: classpath:rp.key
892- certificate-location: classpath:rp.crt
893- identityprovider:
894- entity-id: ...
895- azure:
896- signing.credentials: *relying-party-credentials
897- identityprovider:
898- entity-id: ...
889+ registration:
890+ okta:
891+ signing.credentials: &relying-party-credentials
892+ - private-key-location: classpath:rp.key
893+ certificate-location: classpath:rp.crt
894+ assertingparty:
895+ entity-id: ...
896+ azure:
897+ signing.credentials: *relying-party-credentials
898+ assertingparty:
899+ entity-id: ...
899900----
900901
901902Second, in a database, you need not replicate the model of `RelyingPartyRegistration`.
You can’t perform that action at this time.
0 commit comments