summaryrefslogtreecommitdiff
path: root/conf-from-container/conf/intercept/expiring-password-intercept-config.xml
diff options
context:
space:
mode:
authorMarkus Krogh <markus@nordu.net>2017-09-27 15:52:06 +0200
committerMarkus Krogh <markus@nordu.net>2017-09-27 15:52:06 +0200
commit221ce8d2e414c95d6277baf4d1e6ebc644ee0b7c (patch)
tree067e112b5bbbdcdcd6dcbd0f57d2ba6c791fa171 /conf-from-container/conf/intercept/expiring-password-intercept-config.xml
parent633ada5afb580dea9c755554c9a9a66b64434e4c (diff)
Remove conf-from-container, update git ignore
Diffstat (limited to 'conf-from-container/conf/intercept/expiring-password-intercept-config.xml')
-rw-r--r--conf-from-container/conf/intercept/expiring-password-intercept-config.xml37
1 files changed, 0 insertions, 37 deletions
diff --git a/conf-from-container/conf/intercept/expiring-password-intercept-config.xml b/conf-from-container/conf/intercept/expiring-password-intercept-config.xml
deleted file mode 100644
index 5447b16..0000000
--- a/conf-from-container/conf/intercept/expiring-password-intercept-config.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?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">
-
- <!--
- Condition to evaluate to determine if expiring password view should be displayed, false means to notify.
-
- The example uses a built-in class to evaluate an attribute containing a date/time of password expiration.
- The format pattern parses the value and the negative offset determines how soon to warn the user beforehand.
- -->
- <bean id="shibboleth.expiring-password.Condition" class="net.shibboleth.idp.profile.logic.DateAttributePredicate"
- c:attribute="passwordExpiration" p:resultIfMissing="true">
- <constructor-arg name="formatter">
- <bean class="org.joda.time.format.DateTimeFormat" factory-method="forPattern" c:_0="yyyyMMddHHmmss'T'" />
- </constructor-arg>
- <property name="systemTimeOffset">
- <bean class="org.joda.time.Duration" factory-method="standardDays" c:_0="-14" />
- </property>
- </bean>
-
- <!-- Name of cookie to track when user was last notified. -->
- <bean id="shibboleth.expiring-password.NotifyCookieName" class="java.lang.String" c:_0="shib_idp_exp_pwd" />
-
- <!-- Interval (milliseconds) between notifications, default is 8 hours. -->
- <bean id="shibboleth.expiring-password.NotifyInterval" class="java.lang.Long" c:_0="28800000" />
-
-</beans>