- 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

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