mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- Added batchable user queries to admin web service API
- Added big P person service - web service clinet jar is now build by build process - Added distribute-web-service-client target which will create web service lcient distribution zip file containing jar and dependant resources - Added web service client property file so destination repository can be easily specified git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2233 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -746,6 +746,44 @@
|
||||
</bean>
|
||||
|
||||
|
||||
<!-- Person Service -->
|
||||
|
||||
<bean id="PersonService" class="org.springframework.aop.framework.ProxyFactoryBean">
|
||||
<property name="proxyInterfaces">
|
||||
<value>org.alfresco.service.cmr.security.PersonService</value>
|
||||
</property>
|
||||
<property name="target"><ref bean="personService"/></property>
|
||||
<property name="interceptorNames">
|
||||
<list>
|
||||
<idref local="PersonService_transaction" />
|
||||
<idref local="exceptionTranslator" />
|
||||
<idref bean="PersonService_security" />
|
||||
<idref local="PersonService_descriptor" />
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="PersonService_transaction" class="org.springframework.transaction.interceptor.TransactionInterceptor">
|
||||
<property name="transactionManager">
|
||||
<ref bean="transactionManager"/>
|
||||
</property>
|
||||
<property name="transactionAttributes">
|
||||
<props>
|
||||
<prop key="*">${server.transaction.mode.default}</prop>
|
||||
</props>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="PersonService_descriptor" parent="AlfrescoServiceDescriptor">
|
||||
<property name="interface">
|
||||
<value>org.alfresco.service.cmr.security.PersonService</value>
|
||||
</property>
|
||||
<property name="description">
|
||||
<value>PersonService Service</value>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
|
||||
|
||||
<!-- Authentication Service -->
|
||||
|
||||
|
@@ -20,6 +20,7 @@ import java.io.Serializable;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
@@ -299,7 +300,7 @@ public class PersonServiceImpl implements PersonService
|
||||
sp.addStore(storeRef);
|
||||
sp.excludeDataInTheCurrentTransaction(false);
|
||||
|
||||
HashSet<NodeRef> nodes = new HashSet<NodeRef>();
|
||||
LinkedHashSet<NodeRef> nodes = new LinkedHashSet<NodeRef>();
|
||||
ResultSet rs = null;
|
||||
|
||||
try
|
||||
|
Reference in New Issue
Block a user