[java-idp-oidc] branch main updated: JOIDC-107 - IDTokenLifetime property misspelled in metadata wiring
Scott Cantor
cantor.2 at osu.edu
Fri May 20 13:21:50 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor 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=2fdc0a9400bd9ef2e3935371456ed9468a901583
The following commit(s) were added to refs/heads/main by this push:
new 2fdc0a94 JOIDC-107 - IDTokenLifetime property misspelled in metadata wiring
2fdc0a94 is described below
commit 2fdc0a9400bd9ef2e3935371456ed9468a901583
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri May 20 09:21:47 2022 -0400
JOIDC-107 - IDTokenLifetime property misspelled in metadata wiring
https://shibboleth.atlassian.net/browse/JOIDC-107
Also wired up 2 additional properties added recently.
---
.../shibboleth/idp/service/relying-party/postconfig.xml | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
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 455e4139..f84d4742 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
@@ -213,7 +213,7 @@
</bean>
</property>
<property name="iDTokenLifetimeLookupStrategy">
- <bean parent="shibboleth.MDDrivenDurationProperty" p:propertyName="iDTokenLifetime"
+ <bean parent="shibboleth.MDDrivenDurationProperty" p:propertyName="IDTokenLifetime"
p:defaultValue="%{idp.oidc.idToken.defaultLifetime:PT1H}" />
</property>
<property name="accessTokenTypeLookupStrategy">
@@ -236,6 +236,10 @@
</property>
</bean>
</property>
+ <property name="iDTokenManipulationStrategyLookupStrategy">
+ <bean parent="shibboleth.MDDrivenBeanProperty" p:propertyName="IDTokenManipulationStrategy"
+ p:propertyType="#{T(java.util.function.Function)}" />
+ </property>
</bean>
<bean id="OIDC.SSO.MDDriven" parent="AbstractMDDrivenOIDCSSOProfile" lazy-init="true"
@@ -283,6 +287,14 @@
<bean parent="shibboleth.MDDrivenDurationProperty" p:propertyName="refreshTokenLifetime"
p:defaultValue="%{idp.oidc.refreshToken.defaultLifetime:PT2H}" />
</property>
+ <property name="includeIssuerInResponsePredicate">
+ <bean class="net.shibboleth.utilities.java.support.logic.PredicateSupport" factory-method="fromFunction">
+ <constructor-arg>
+ <bean parent="shibboleth.MDDrivenBoolProperty" p:propertyName="includeIssuerInResponse" />
+ </constructor-arg>
+ <constructor-arg value="false" />
+ </bean>
+ </property>
</bean>
<bean id="OIDC.UserInfo.MDDriven" parent="AbstractMDDrivenOIDCProfile" lazy-init="true"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list