<?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.xsd">

    <bean id="getApplicationRolesAPIController" class="com.armedia.acm.services.functionalaccess.web.api.GetApplicationRolesAPIController">
        <property name="functionalAccessService" ref="functionalAccessService"/>
    </bean>

    <bean id="getApplicationRolesToGroupsAPIController"
        class="com.armedia.acm.services.functionalaccess.web.api.GetApplicationRolesToGroupsAPIController">
        <property name="functionalAccessService" ref="functionalAccessService"/>
    </bean>

    <bean id="saveApplicationRolesToGroupsAPIController"
        class="com.armedia.acm.services.functionalaccess.web.api.SaveApplicationRolesToGroupsAPIController">
        <property name="functionalAccessService" ref="functionalAccessService"/>
    </bean>

    <bean id="getGroupsByPrivilegeAPIController"
        class="com.armedia.acm.services.functionalaccess.web.api.GetGroupsByPrivilegeAPIController">
        <property name="userDao" ref="userJpaDao"/>
        <property name="functionalAccessService" ref="functionalAccessService"/>
    </bean>

    <bean id="getUsersByPrivilegeAndGroupAPIController"
        class="com.armedia.acm.services.functionalaccess.web.api.GetUsersByPrivilegeAndGroupAPIController">
        <property name="functionalAccessService" ref="functionalAccessService"/>
    </bean>

    <bean id="getGroupFilteredAPIController" class="com.armedia.acm.services.functionalaccess.web.api.GetGroupFilteredAPIController">
        <property name="executeSolrQuery" ref="executeSolrQuery"/>
        <property name="functionalAccessService" ref="functionalAccessService"/>
    </bean>

</beans>