File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
docs/modules/ROOT/pages/servlet Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ static RoleHierarchy roleHierarchy() {
239239
240240Kotlin::
241241+
242- [source,java ,role="secondary"]
242+ [source,kotlin ,role="secondary"]
243243----
244244companion object {
245245 @Bean
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ RelyingPartyRegistration relyingPartyRegistration = RelyingPartyRegistration.wit
8787
8888Kotlin::
8989+
90- [source,java ,role="secondary"]
90+ [source,kotlin ,role="secondary"]
9191----
9292var relyingPartyRegistration: RelyingPartyRegistration =
9393 RelyingPartyRegistration.withRegistrationId("okta")
@@ -96,7 +96,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
9696 // ...
9797 .wantAuthnRequestsSigned(false)
9898 }
99- .build();
99+ .build()
100100----
101101======
102102
@@ -141,7 +141,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
141141 )
142142 }
143143 }
144- .build();
144+ .build()
145145----
146146======
147147
Original file line number Diff line number Diff line change @@ -949,12 +949,12 @@ Collection<RelyingPartyRegistration> registrations = RelyingPartyRegistrations
949949 .entityId("https://example.org/saml2/sp")
950950 .build()
951951 )
952- .collect(Collectors.toList())) ;
952+ .collect(Collectors.toList());
953953----
954954
955955Kotlin::
956956+
957- [source,java ,role="secondary"]
957+ [source,kotlin ,role="secondary"]
958958----
959959var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrations
960960 .collectionFromMetadataLocation("https://example.org/saml2/idp/metadata.xml")
@@ -964,7 +964,7 @@ var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrati
964964 .assertionConsumerServiceLocation("{baseUrl}/login/saml2/sso")
965965 .build()
966966 }
967- .collect(Collectors.toList()));
967+ .collect(Collectors.toList())
968968----
969969======
970970
You can’t perform that action at this time.
0 commit comments