]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.ui.admin/META-INF/spring/commands.xml
Add object class to new users.
[lgpl/argeo-commons.git] / org.argeo.security.ui.admin / META-INF / spring / commands.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans
5 http://www.springframework.org/schema/beans/spring-beans.xsd">
6
7 <!-- USERS -->
8 <bean id="newUser" class="org.argeo.security.ui.admin.commands.NewUser"
9 scope="prototype">
10 <property name="userAdmin" ref="userAdmin" />
11 <property name="userTransaction" ref="userTransaction" />
12 </bean>
13
14 <bean id="newGroup" class="org.argeo.security.ui.admin.commands.NewGroup"
15 scope="prototype">
16 <property name="userAdmin" ref="userAdmin" />
17 <property name="userTransaction" ref="userTransaction" />
18 </bean>
19
20 <!-- <bean id="userBatchUpdate" class="org.argeo.security.ui.admin.commands.UserBatchUpdate"
21 scope="prototype"> <property name="repository" ref="nodeRepository" /> <property
22 name="userAdminService" ref="userAdminService" /> </bean> -->
23 <!-- ROLES -->
24 <!-- <bean id="refreshRoles" class="org.argeo.security.ui.admin.commands.RefreshRoles"
25 scope="prototype"> </bean> <bean id="addRole" class="org.argeo.security.ui.admin.commands.AddRole"
26 scope="prototype"> <property name="userAdminService" ref="userAdminService"
27 /> </bean> <bean id="deleteRole" class="org.argeo.security.ui.admin.commands.DeleteRole"
28 scope="prototype"> <property name="userAdminService" ref="userAdminService"
29 /> </bean> -->
30
31 <!-- TRANSACTIONS -->
32 <bean id="userTransactionHandler"
33 class="org.argeo.security.ui.admin.commands.UserTransactionHandler"
34 scope="prototype">
35 <property name="userTransaction" ref="userTransaction" />
36 </bean>
37 </beans>