[java-idp-oidc] branch main updated: Fixed propertyType for the manipulation strategies.
Henri Mikkonen
henri.mikkonen at iki.fi
Thu Jun 30 08:27:35 UTC 2022
This is an automated email from the git hooks/post-receive script.
hjmikkon pushed a commit to branch main
in repository java-idp-oidc.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=708000b63776cd89513d84a54076e5a62a89839d
The following commit(s) were added to refs/heads/main by this push:
new 708000b6 Fixed propertyType for the manipulation strategies.
708000b6 is described below
commit 708000b63776cd89513d84a54076e5a62a89839d
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Thu Jun 30 11:26:50 2022 +0300
Fixed propertyType for the manipulation strategies.
It's supposed to be BiFunction, not Function.
---
.../net/shibboleth/idp/service/relying-party/postconfig.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/idp-oidc-extension-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml b/idp-oidc-extension-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
index 33144287..97c14bec 100644
--- a/idp-oidc-extension-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
+++ b/idp-oidc-extension-impl/src/main/resources/META-INF/net/shibboleth/idp/service/relying-party/postconfig.xml
@@ -241,11 +241,11 @@
</property>
<property name="iDTokenManipulationStrategyLookupStrategy">
<bean parent="shibboleth.MDDrivenBeanProperty" p:propertyName="IDTokenManipulationStrategy"
- p:propertyType="#{T(java.util.function.Function)}" />
+ p:propertyType="#{T(java.util.function.BiFunction)}" />
</property>
<property name="accessTokenClaimsSetManipulationStrategyLookupStrategy">
<bean parent="shibboleth.MDDrivenBeanProperty" p:propertyName="accessTokenClaimsSetManipulationStrategy"
- p:propertyType="#{T(java.util.function.Function)}" />
+ p:propertyType="#{T(java.util.function.BiFunction)}" />
</property>
</bean>
@@ -304,7 +304,7 @@
</property>
<property name="authorizationCodeClaimsSetManipulationStrategyLookupStrategy">
<bean parent="shibboleth.MDDrivenBeanProperty" p:propertyName="authorizationCodeClaimsSetManipulationStrategy"
- p:propertyType="#{T(java.util.function.Function)}" />
+ p:propertyType="#{T(java.util.function.BiFunction)}" />
</property>
</bean>
@@ -409,7 +409,7 @@
</property>
<property name="refreshTokenClaimsSetManipulationStrategyLookupStrategy">
<bean parent="shibboleth.MDDrivenBeanProperty" p:propertyName="refreshTokenClaimsSetManipulationStrategy"
- p:propertyType="#{T(java.util.function.Function)}" />
+ p:propertyType="#{T(java.util.function.BiFunction)}" />
</property>
<property name="enforceRefreshTokenRotationPredicate">
<bean class="net.shibboleth.utilities.java.support.logic.PredicateSupport" factory-method="fromFunction">
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list