mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Merged enterprise features
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2746 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -7,12 +7,12 @@
|
||||
|
||||
<!-- -->
|
||||
<!-- This implementation supports the identification of users as admin users. -->
|
||||
<!-- It does NOT support any other groupings of users. -->
|
||||
<!-- It also supports groups and allows groups and users to be arranged into -->
|
||||
<!-- hierarchies. -->
|
||||
<!-- -->
|
||||
|
||||
<beans>
|
||||
<bean id="authorityService" class="org.alfresco.repo.security.authority.SimpleAuthorityServiceImpl">
|
||||
<!-- Wiring up of services on which this service depends -->
|
||||
|
||||
<bean id="authorityService" class="org.alfresco.repo.security.authority.AuthorityServiceImpl">
|
||||
<property name="authenticationComponent">
|
||||
<ref bean="authenticationComponent" />
|
||||
</property>
|
||||
@@ -22,6 +22,12 @@
|
||||
<property name="nodeService">
|
||||
<ref bean="nodeService" />
|
||||
</property>
|
||||
<property name="authorityDAO">
|
||||
<ref bean="authorityDAO" />
|
||||
</property>
|
||||
<property name="permissionServiceSPI">
|
||||
<ref bean="permissionServiceImpl" />
|
||||
</property>
|
||||
<!-- -->
|
||||
<!-- A list of users with admin rights. -->
|
||||
<!-- -->
|
||||
@@ -42,4 +48,28 @@
|
||||
</set>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- Authority DAO that stores group information along with user information, -->
|
||||
<!-- in the repository. -->
|
||||
<!-- -->
|
||||
<!-- This bean uses the userToAuthorityCache configured in cache-context.xml -->
|
||||
<!-- -->
|
||||
<bean id="authorityDAO" class="org.alfresco.repo.security.authority.AuthorityDAOImpl">
|
||||
<property name="nodeService">
|
||||
<ref bean="nodeService" />
|
||||
</property>
|
||||
<property name="namespacePrefixResolver">
|
||||
<ref bean="namespaceService" />
|
||||
</property>
|
||||
<property name="searchService">
|
||||
<ref bean="searchService" />
|
||||
</property>
|
||||
<property name="dictionaryService">
|
||||
<ref bean="dictionaryService" />
|
||||
</property>
|
||||
<property name="userToAuthorityCache">
|
||||
<ref bean="userToAuthorityCache" />
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</beans>
|
Reference in New Issue
Block a user