- 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:
Roy Wetherall
2006-01-27 17:03:57 +00:00
parent c131dd7dec
commit 8df7c1db7e
2 changed files with 40 additions and 1 deletions

View File

@@ -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 -->