Skip to content

Commit

Permalink
Merge branch '6.2.x' into 6.3.x
Browse files Browse the repository at this point in the history
Closes gh-15380
  • Loading branch information
jzheaux committed Jul 9, 2024
2 parents fc6acab + f4cbaaa commit 290cee2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ static RoleHierarchy roleHierarchy() {
Kotlin::
+
[source,java,role="secondary"]
[source,kotlin,role="secondary"]
----
companion object {
@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ RelyingPartyRegistration relyingPartyRegistration = RelyingPartyRegistration.wit
Kotlin::
+
[source,java,role="secondary"]
[source,kotlin,role="secondary"]
----
var relyingPartyRegistration: RelyingPartyRegistration =
RelyingPartyRegistration.withRegistrationId("okta")
Expand All @@ -96,7 +96,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
// ...
.wantAuthnRequestsSigned(false)
}
.build();
.build()
----
======

Expand Down Expand Up @@ -141,7 +141,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
)
}
}
.build();
.build()
----
======

Expand Down
6 changes: 3 additions & 3 deletions docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -949,12 +949,12 @@ Collection<RelyingPartyRegistration> registrations = RelyingPartyRegistrations
.entityId("https://example.org/saml2/sp")
.build()
)
.collect(Collectors.toList()));
.collect(Collectors.toList());
----
Kotlin::
+
[source,java,role="secondary"]
[source,kotlin,role="secondary"]
----
var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrations
.collectionFromMetadataLocation("https://example.org/saml2/idp/metadata.xml")
Expand All @@ -964,7 +964,7 @@ var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrati
.assertionConsumerServiceLocation("{baseUrl}/login/saml2/sso")
.build()
}
.collect(Collectors.toList()));
.collect(Collectors.toList())
----
======

Expand Down

0 comments on commit 290cee2

Please sign in to comment.