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 @@ -1000,12 +1000,12 @@ Collection<RelyingPartyRegistration> registrations = RelyingPartyRegistrations
1000
1000
.entityId("https://example.org/saml2/sp")
1001
1001
.build()
1002
1002
)
1003
- .collect(Collectors.toList())) ;
1003
+ .collect(Collectors.toList());
1004
1004
----
1005
1005
1006
1006
Kotlin::
1007
1007
+
1008
- [source,java ,role="secondary"]
1008
+ [source,kotlin ,role="secondary"]
1009
1009
----
1010
1010
var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrations
1011
1011
.collectionFromMetadataLocation("https://example.org/saml2/idp/metadata.xml")
@@ -1015,7 +1015,7 @@ var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrati
1015
1015
.assertionConsumerServiceLocation("{baseUrl}/login/saml2/sso")
1016
1016
.build()
1017
1017
}
1018
- .collect(Collectors.toList()));
1018
+ .collect(Collectors.toList())
1019
1019
----
1020
1020
======
1021
1021
You can’t perform that action at this time.
0 commit comments