[java-idp-plugin-totp] branch main updated: Add default flow descriptor.
Scott Cantor
cantor.2 at osu.edu
Tue Aug 18 16:23:45 UTC 2020
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-plugin-totp.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-totp.git;a=commit;h=c0c7381eafd110b176b24fe98cef4b7a309454b8
The following commit(s) were added to refs/heads/main by this push:
new c0c7381 Add default flow descriptor.
c0c7381 is described below
commit c0c7381eafd110b176b24fe98cef4b7a309454b8
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Aug 18 12:23:38 2020 -0400
Add default flow descriptor.
---
.../META-INF/net.shibboleth.idp/postconfig.xml | 27 ++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/totp-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml b/totp-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml
new file mode 100644
index 0000000..afb27df
--- /dev/null
+++ b/totp-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:context="http://www.springframework.org/schema/context"
+ xmlns:util="http://www.springframework.org/schema/util" xmlns:p="http://www.springframework.org/schema/p"
+ xmlns:c="http://www.springframework.org/schema/c" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
+ http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
+ http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"
+
+ default-init-method="initialize" default-destroy-method="destroy">
+
+ <!-- System beans needed for extension to function, loaded after global.xml -->
+
+ <bean p:id="authn/TOTP" parent="shibboleth.AuthenticationFlow"
+ p:passiveAuthenticationSupported="true"
+ p:forcedAuthenticationSupported="true">
+ <property name="supportedPrincipals">
+ <list>
+ <bean parent="shibboleth.SAML2AuthnContextClassRef"
+ c:classRef="urn:oasis:names:tc:SAML:2.0:ac:classes:TimeSyncToken" />
+ <bean parent="shibboleth.SAML1AuthenticationMethod"
+ c:method="urn:oasis:names:tc:SAML:1.0:am:HardwareToken" />
+ </list>
+ </property>
+ </bean>
+
+</beans>
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list