diff options
author | Christian Wagner <c.wagner@datentechnik-innovation.com> | 2015-01-30 14:24:45 +0100 |
---|---|---|
committer | Christian Wagner <c.wagner@datentechnik-innovation.com> | 2015-01-30 14:24:45 +0100 |
commit | 23fc42a3c273ceb05938c741508537bfaedab00a (patch) | |
tree | 5008284e593e87999a68de6800a6f3508b291371 /id/server/auth | |
parent | 78a3caea21bdd5475007b958d59b23b1d3deccfb (diff) | |
download | moa-id-spss-23fc42a3c273ceb05938c741508537bfaedab00a.tar.gz moa-id-spss-23fc42a3c273ceb05938c741508537bfaedab00a.tar.bz2 moa-id-spss-23fc42a3c273ceb05938c741508537bfaedab00a.zip |
add persistence to process-engine
additionally remove unnecessary method in the DAO
Diffstat (limited to 'id/server/auth')
-rw-r--r-- | id/server/auth/src/main/webapp/WEB-INF/applicationContext.xml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/id/server/auth/src/main/webapp/WEB-INF/applicationContext.xml b/id/server/auth/src/main/webapp/WEB-INF/applicationContext.xml index a251064f6..c7b4e6419 100644 --- a/id/server/auth/src/main/webapp/WEB-INF/applicationContext.xml +++ b/id/server/auth/src/main/webapp/WEB-INF/applicationContext.xml @@ -13,21 +13,8 @@ <property name="transitionConditionExpressionEvaluator">
<bean class="at.gv.egovernment.moa.id.process.spring.SpringExpressionEvaluator" />
</property>
- <property name="processInstanceMaxIdleTimeSeconds" value="600" />
- <!--
- <property name="processDefinitions">
- <bean class="com.datentechnik.process_engine.spring.ProcessDefinitionsFactoryBean">
- <property name="resources" value="classpath:resources/processes/*.process.xml" />
- </bean>
- </property>
- -->
</bean>
- <task:scheduler id="taskScheduler" pool-size="1" />
- <task:scheduled-tasks scheduler="taskScheduler">
- <task:scheduled ref="processEngine" method="cleanup" fixed-delay="60000" />
- </task:scheduled-tasks>
-
<bean id="authenticationManager" class="at.gv.egovernment.moa.id.moduls.AuthenticationManager" factory-method="getInstance" />
<bean id="moduleRegistration" class="at.gv.egovernment.moa.id.moduls.moduleregistration.ModuleRegistration" factory-method="getInstance" />
</beans>
|