All Downloads are FREE. Search and download functionalities are using the official Maven repository.

enserver.security-gae.29.source-code.gae-security-service.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
       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-3.1.xsd">


    <!--           Service             -->

    <import resource="classpath*:spring-security.xml" />

    <import resource="classpath*:spring-dao.xml" />

    <bean id="appService" class="com.wadpam.rnr.service.AppService">
        <property name="appDao" ref="dAppDao" />
        <property name="appAdminDao" ref="dAppAdminDao" />
        <property name="emailSender" ref="emailSender" />
    </bean>

    <bean id="emailSender" class="com.wadpam.rnr.service.EmailSender">
        <property name="fromEmailAddress" value="${email.from.address}" />
        <property name="fromEmailName" value="${email.from.name}" />
    </bean>

    <!--           Controllers             -->

    <bean id="appController" class="com.wadpam.rnr.web.AppController">
        <property name="appService" ref="appService" />
    </bean>

    <bean id="adminController" class="com.wadpam.rnr.web.AppAdminController">
        <property name="appService" ref="appService" />
    </bean>

</beans>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy