diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-24 12:16:05 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-24 12:16:05 +0100 |
commit | d476d340b2fb6694eac18d94e6c0ddbaad5b7545 (patch) | |
tree | 316513b82bf4beb1580a72ef63d6e0566d058ae5 /id/server/idserverlib/src | |
parent | 0933effb8fbb28e330bbea7bcff859ee05e3af0c (diff) | |
download | moa-id-spss-d476d340b2fb6694eac18d94e6c0ddbaad5b7545.tar.gz moa-id-spss-d476d340b2fb6694eac18d94e6c0ddbaad5b7545.tar.bz2 moa-id-spss-d476d340b2fb6694eac18d94e6c0ddbaad5b7545.zip |
move bean definitions
Diffstat (limited to 'id/server/idserverlib/src')
-rw-r--r-- | id/server/idserverlib/src/main/resources/moaid.authentication.beans.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/id/server/idserverlib/src/main/resources/moaid.authentication.beans.xml b/id/server/idserverlib/src/main/resources/moaid.authentication.beans.xml index be4402a03..11d92cea3 100644 --- a/id/server/idserverlib/src/main/resources/moaid.authentication.beans.xml +++ b/id/server/idserverlib/src/main/resources/moaid.authentication.beans.xml @@ -9,6 +9,20 @@ http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> + <bean id="processEngine" class="at.gv.egovernment.moa.id.process.ProcessEngineImpl"> + <property name="transitionConditionExpressionEvaluator"> + <bean class="at.gv.egovernment.moa.id.process.springweb.SpringWebExpressionEvaluator" /> + </property> + </bean> + + <!-- import auth modules --> + <import resource="classpath*:**/*.authmodule.beans.xml" /> + + <bean id="moduleRegistration" class="at.gv.egovernment.moa.id.auth.modules.registration.ModuleRegistration" factory-method="getInstance" /> + + <context:component-scan base-package="at.gv.egovernment.moa.id.auth.servlet" /> + <context:component-scan base-package="at.gv.egovernment.moa.id.protocols" /> + <bean id="MOAID_AuthenticationManager" class="at.gv.egovernment.moa.id.moduls.AuthenticationManager"/> |