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 @@ -240,7 +240,7 @@ static RoleHierarchy roleHierarchy() {
240
240
241
241
Kotlin::
242
242
+
243
- [source,java ,role="secondary"]
243
+ [source,kotlin ,role="secondary"]
244
244
----
245
245
companion object {
246
246
@Bean
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ RelyingPartyRegistration relyingPartyRegistration = RelyingPartyRegistration.wit
87
87
88
88
Kotlin::
89
89
+
90
- [source,java ,role="secondary"]
90
+ [source,kotlin ,role="secondary"]
91
91
----
92
92
var relyingPartyRegistration: RelyingPartyRegistration =
93
93
RelyingPartyRegistration.withRegistrationId("okta")
@@ -96,7 +96,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
96
96
// ...
97
97
.wantAuthnRequestsSigned(false)
98
98
}
99
- .build();
99
+ .build()
100
100
----
101
101
======
102
102
@@ -141,7 +141,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
141
141
)
142
142
}
143
143
}
144
- .build();
144
+ .build()
145
145
----
146
146
======
147
147
Original file line number Diff line number Diff line change @@ -949,12 +949,12 @@ Collection<RelyingPartyRegistration> registrations = RelyingPartyRegistrations
949
949
.entityId("https://example.org/saml2/sp")
950
950
.build()
951
951
)
952
- .collect(Collectors.toList())) ;
952
+ .collect(Collectors.toList());
953
953
----
954
954
955
955
Kotlin::
956
956
+
957
- [source,java ,role="secondary"]
957
+ [source,kotlin ,role="secondary"]
958
958
----
959
959
var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrations
960
960
.collectionFromMetadataLocation("https://example.org/saml2/idp/metadata.xml")
@@ -964,7 +964,7 @@ var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrati
964
964
.assertionConsumerServiceLocation("{baseUrl}/login/saml2/sso")
965
965
.build()
966
966
}
967
- .collect(Collectors.toList()));
967
+ .collect(Collectors.toList())
968
968
----
969
969
======
970
970
You can’t perform that action at this time.
0 commit comments