Richard Millet [Wed, 7 Oct 2009 21:25:28 +0000 (21:25 +0000)]
NOJIRA: Removing (apparently redundant or unnecessary) dependency to to dom4j artifact. This depency was causing problems with Eclipse compilation classpaths.
Aron Roberts [Wed, 7 Oct 2009 02:08:10 +0000 (02:08 +0000)]
CSPACE-429: Additional minor code clean-up in the ID Service in preparation for work on CSPACE-497, adding type awareness. Continued selectively replacing inappropriate Java Exceptions with CSpace-defined Exception types.
Aron Roberts [Wed, 7 Oct 2009 00:11:44 +0000 (00:11 +0000)]
CSPACE-503: Changes made to the ID Service in the short-lived Hello Venus branch are merged back to the main trunk. Includes changes made in four commits: r762, r763, r765 and r768,
Sanjay Dalal [Tue, 6 Oct 2009 22:14:58 +0000 (22:14 +0000)]
CSPACE-492 removed forced connection on the nuxeo client while obtaining every session. reuses client and reauthenticates on every use.
tests: mvn test passes at the top level, still to test on linux platform.
Patrick Schmitz [Tue, 6 Oct 2009 21:18:06 +0000 (21:18 +0000)]
NOJIRA Changed the package of the test files to match their folder (put them in a test subpackage). Fixed scope of constant declaration in UUIDGeneratorPart to be public.
These changes should not affect functionality, but they correct build problems in eclipse (that maven ignores).
Sanjay Dalal [Fri, 2 Oct 2009 17:42:12 +0000 (17:42 +0000)]
CSPACE-60 introduced DocumentHandlerFactory interface that is implemented by all services
tests: mvn test passes at trunk/services level
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectHandlerFactory.java
M services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/nuxeo/AcquisitionHandlerFactory.java
A services/common/src/main/java/org/collectionspace/services/common/repository/DocumentHandlerFactory.java
D services/common/src/main/java/org/collectionspace/services/common/CollectionSpaceHandlerFactory.java
M services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeHandlerFactory.java
M services/relation/service/src/main/java/org/collectionspace/services/relation/nuxeo/RelationHandlerFactory.java
CSPACE-418 relation entity schema is flatten
CSPACE-81,394 schema extension supported between consumer and service using multipart messaging, between service and repository using nuxeo repository. relationship service is refactored to use repository client and document handler. tenant binding updated for the relationship service. service context and document handler are further refactored to accommodate the use case of "local" service-service interaction and "remote" interaction. All remotely accessible services now use RemoteServiceContext and RemoteDocumentHandler. Removed unused RepresentationHandlers from all the services where applicable.
TEST: services/trunk mvn test passes
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/CollectionObjectResource.java
D services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectRepresenationHandler.java
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectDocumentModelHandler.java
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectHandlerFactory.java
M services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java
M services/JaxRsServiceProvider/pom.xml
M services/common/src/main/java/org/collectionspace/services/common/repository/RepositoryClientFactory.java
M services/common/src/main/java/org/collectionspace/services/common/repository/DocumentHandler.java
M services/common/src/main/java/org/collectionspace/services/common/CollectionSpaceResource.java
M services/common/src/main/java/org/collectionspace/services/common/AbstractCollectionSpaceResource.java
A services/common/src/main/java/org/collectionspace/services/common/context/RemoteServiceContext.java
A + services/common/src/main/java/org/collectionspace/services/common/context/RemoteServiceContextImpl.java
M services/common/src/main/java/org/collectionspace/services/common/context/ServiceContext.java
D services/common/src/main/java/org/collectionspace/services/common/context/ServiceContextImpl.java
A services/common/src/main/java/org/collectionspace/services/common/context/AbstractServiceContext.java
R services/common/src/main/java/org/collectionspace/services/common/relation/RelationJAXBSchema.java
R services/common/src/main/java/org/collectionspace/services/common/relation/IRelationsManager.java
D services/common/src/main/java/org/collectionspace/services/common/relation/RelationsManager.java
A services/common/src/main/java/org/collectionspace/services/common/relation/nuxeo/RelationsUtils.java
A services/common/src/main/java/org/collectionspace/services/common/relation/nuxeo/RelationConstants.java
D services/common/src/main/java/org/collectionspace/services/common/relation/nuxeo/RelationsManagerNuxeoImpl.java
D services/common/src/main/java/org/collectionspace/services/nuxeo/CollectionSpaceServiceNuxeoImpl.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/util/NuxeoUtils.java
A services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/RemoteDocumentModelHandler.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/DocumentModelHandler.java
M services/common/src/main/config/tenant-bindings.xml
A + services/common/src/main/resources/relations-common.xsd
D services/common/src/main/resources/relation.xsd
M services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/AcquisitionResource.java
M services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/nuxeo/AcquisitionDocumentModelHandler.java
M services/pom.xml
M services/intake/service/src/main/java/org/collectionspace/services/intake/IntakeResource.java
M services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeHandlerFactory.java
D services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeRepresenationHandler.java
M services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeDocumentModelHandler.java
M services/relation/service/src/main/java/org/collectionspace/services/relation/NewRelationResource.java
D services/relation/service/src/main/java/org/collectionspace/services/relation/RelationResource.java
D services/relation/service/src/main/java/org/collectionspace/services/relation/nuxeo/RelationServiceNuxeoImpl.java
M services/relation/service/src/main/java/org/collectionspace/services/relation/nuxeo/RelationHandlerFactory.java
D services/relation/service/src/main/java/org/collectionspace/services/relation/nuxeo/RelationNuxeoConstants.java
M services/relation/service/src/main/java/org/collectionspace/services/relation/nuxeo/RelationDocumentModelHandler.java
D services/relation/service/src/main/java/org/collectionspace/services/relation/RelationService.java
A + services/relation/3rdparty/nuxeo-platform-cs-relation/src/main/resources/schemas/relations-common.xsd
D services/relation/3rdparty/nuxeo-platform-cs-relation/src/main/resources/schemas/relation.xsd
M services/relation/3rdparty/nuxeo-platform-cs-relation/src/main/resources/OSGI-INF/core-types-contrib.xml
M services/relation/client/src/test/java/org/collectionspace/services/client/test/RelationServiceTest.java
A services/relation/client/src/test/resources/log4j.properties
D services/relation/client/src/test/resources/log4j.xml
M services/relation/client/src/main/java/org/collectionspace/services/client/RelationProxy.java
M services/relation/client/src/main/java/org/collectionspace/services/client/RelationClient.java
M services/relation/client/pom.xml
CSPACE-81,43,371,394,395
CSPACE-81,394 schema extension supported between consumer and service using multipart messaging, between service and repository using nuxeo repository. metadata-driven using service binding. collectionobject schema extended for testing for natural history domain
CSPACE-43 use of JAXB is minimized to consumer side and restricted to just common part on the service side
CSPACE-371 nuxeo binding is externalized into tenant binding.
CSPACE-395 multi tenancy first cut. example binding for movingimages.us.
M services/authentication/client/src/test/java/org/collectionspace/services/authentication/client/AuthenticationServiceTest.java
M services/sdk/sample/src/main/java/org/collectionspace/services/sdk/sample/Sample.java
D services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/CollectionObjectService.java
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/CollectionObjectResource.java
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectRepresenationHandler.java
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectDocumentModelHandler.java
D services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectServiceNuxeoImpl.java
M services/collectionobject/service/src/main/java/org/collectionspace/services/collectionobject/nuxeo/CollectionObjectHandlerFactory.java
M services/collectionobject/service/pom.xml
D services/collectionobject/jaxb/src/main/resources/collectionobject.xsd
A + services/collectionobject/jaxb/src/main/resources/collectionobjects-common.xsd
A services/collectionobject/jaxb/src/main/resources/collectionobjects-naturalhistory.xsd
M services/collectionobject/jaxb/pom.xml
D services/collectionobject/3rdparty/nuxeo-platform-cs-collectionobject/src/main/resources/schemas/collectionobject.xsd
A + services/collectionobject/3rdparty/nuxeo-platform-cs-collectionobject/src/main/resources/schemas/collectionobjects-common.xsd
A services/collectionobject/3rdparty/nuxeo-platform-cs-collectionobject/src/main/resources/schemas/collectionobjects-naturalhistory.xsd
M services/collectionobject/3rdparty/nuxeo-platform-cs-collectionobject/src/main/resources/OSGI-INF/core-types-contrib.xml
A services/collectionobject/3rdparty/pom.xml~
A services/collectionobject/client/received.xml~
A services/collectionobject/client/received.xml
A services/collectionobject/client/sent.xml~
M services/collectionobject/client/src/test/java/org/collectionspace/services/client/test/CollectionObjectServiceTest.java
M services/collectionobject/client/src/main/java/org/collectionspace/services/client/CollectionObjectClient.java
M services/collectionobject/client/src/main/java/org/collectionspace/services/client/CollectionObjectProxy.java
A services/collectionobject/client/sent.xml
M services/collectionobject/client/pom.xml
A services/collectionobject/client/test.xml
M services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java
M services/JaxRsServiceProvider/src/main/webapp/WEB-INF/web.xml
M services/JaxRsServiceProvider/pom.xml
A services/common/profiles.xml
A services/common/src/main/java/org/collectionspace/services/common/repository/DocumentUtils.java
A services/common/src/main/java/org/collectionspace/services/common/repository/AbstractDocumentHandler.java
M services/common/src/main/java/org/collectionspace/services/common/repository/RepositoryClientFactory.java
M services/common/src/main/java/org/collectionspace/services/common/repository/DocumentHandler.java
M services/common/src/main/java/org/collectionspace/services/common/repository/DocumentException.java
M services/common/src/main/java/org/collectionspace/services/common/repository/RepositoryClient.java
M services/common/src/main/java/org/collectionspace/services/common/CollectionSpaceResource.java
A + services/common/src/main/java/org/collectionspace/services/common/CollectionSpaceServiceContextListener.java
A + services/common/src/main/java/org/collectionspace/services/common/AbstractCollectionSpaceResource.java
A services/common/src/main/java/org/collectionspace/services/common/context
A services/common/src/main/java/org/collectionspace/services/common/context/ServiceContext.java
A services/common/src/main/java/org/collectionspace/services/common/context/ServiceContextImpl.java
M services/common/src/main/java/org/collectionspace/services/common/ServiceMain.java
A services/common/src/main/java/org/collectionspace/services/common/config
A services/common/src/main/java/org/collectionspace/services/common/config/ConfigReader.java
A services/common/src/main/java/org/collectionspace/services/common/config/AbstractConfigReader.java
A services/common/src/main/java/org/collectionspace/services/common/config/ServicesConfigReader.java
A services/common/src/main/java/org/collectionspace/services/common/config/TenantBindingConfigReader.java
D services/common/src/main/java/org/collectionspace/services/common/ServiceContextListener.java
M services/common/src/main/java/org/collectionspace/services/common/CollectionSpaceHandlerFactory.java
A services/common/src/main/java/org/collectionspace/services/svn-commit.tmp~
M services/common/src/main/java/org/collectionspace/services/nuxeo/util/NuxeoUtils.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/RepositoryJavaClient.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/NuxeoConnector.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/DocumentModelHandler.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/rest/RepresentationHandler.java
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/rest/RepositoryRESTClient.java
M services/common/src/main/config/service-config.xml
A services/common/src/main/config/tenant-bindings.xml
A services/common/src/main/svn-commit.tmp~
M services/common/src/main/resources/service-config.xsd
A services/common/src/main/resources/types.xsd
A services/common/src/main/resources/tenant.xsd
A services/common/src/main/resources/service.xsd
M services/common/pom.xml
M services/common/build.xml
_M services/acquisition/service
M services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/AcquisitionResource.java
D services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/AcquisitionService.java
M services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/nuxeo/AcquisitionDocumentModelHandler.java
M services/acquisition/service/src/main/java/org/collectionspace/services/acquisition/nuxeo/AcquisitionHandlerFactory.java
_M services/acquisition/jaxb
D services/acquisition/jaxb/src/main/resources/acquisition.xsd
A + services/acquisition/jaxb/src/main/resources/acquisitions-common.xsd
_M services/acquisition/3rdparty/nuxeo-platform-cs-acquisition
D services/acquisition/3rdparty/nuxeo-platform-cs-acquisition/src/main/resources/schemas/acquisition.xsd
A + services/acquisition/3rdparty/nuxeo-platform-cs-acquisition/src/main/resources/schemas/acquisitions-common.xsd
M services/acquisition/3rdparty/nuxeo-platform-cs-acquisition/src/main/resources/OSGI-INF/core-types-contrib.xml
_M services/acquisition/client
M services/acquisition/client/src/test/java/org/collectionspace/services/client/test/AcquisitionServiceTest.java
M services/acquisition/client/src/main/java/org/collectionspace/services/client/AcquisitionClient.java
M services/acquisition/client/src/main/java/org/collectionspace/services/client/AcquisitionProxy.java
M services/pom.xml
M services/id/service/pom.xml
M services/id/jaxb/pom.xml
_M services/query/service
_M services/IntegrationTests
A services/intake/service/profiles.xml
M services/intake/service/src/main/java/org/collectionspace/services/intake/IntakeResource.java
D services/intake/service/src/main/java/org/collectionspace/services/intake/IntakeService.java
D services/intake/service/src/main/java/org/collectionspace/services/intake/IntakeServiceNuxeoImpl.java
M services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeHandlerFactory.java
M services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeRepresenationHandler.java
M services/intake/service/src/main/java/org/collectionspace/services/intake/nuxeo/IntakeDocumentModelHandler.java
A + services/intake/jaxb/src/main/resources/intakes-common.xsd
D services/intake/jaxb/src/main/resources/intake.xsd
M services/intake/jaxb/pom.xml
A + services/intake/3rdparty/nuxeo-platform-cs-intake/src/main/resources/schemas/intakes-common.xsd
D services/intake/3rdparty/nuxeo-platform-cs-intake/src/main/resources/schemas/intake.xsd
M services/intake/3rdparty/nuxeo-platform-cs-intake/src/main/resources/OSGI-INF/core-types-contrib.xml
M services/intake/client/src/test/java/org/collectionspace/services/client/test/IntakeServiceTest.java
M services/intake/client/src/main/java/org/collectionspace/services/client/IntakeClient.java
M services/intake/client/src/main/java/org/collectionspace/services/client/IntakeProxy.java
M services/relation/service/src/main/java/org/collectionspace/services/relation/NewRelationResource.java
M services/client/src/main/java/org/collectionspace/services/client/test/ServiceTest.java
M services/client/src/main/java/org/collectionspace/services/client/test/AbstractServiceTest.java
Richard Millet [Mon, 21 Sep 2009 16:02:30 +0000 (16:02 +0000)]
CSPACE-457: Adding <distributionManagement> element to our root POM to publish the artifacts to our project Maven repository at source.collectionspace.org
Aron Roberts [Thu, 17 Sep 2009 03:19:21 +0000 (03:19 +0000)]
CSPACE-448: ID Service returns 404, not 400, when an ID Generator is not found. Currently uses DocumentNotFoundException in common module; this may need to be re-thought.
Aron Roberts [Wed, 16 Sep 2009 22:58:36 +0000 (22:58 +0000)]
CSPACE-424: Added (currently commented-out) negative tests of create and update with empty payload to Acquisition service tests, removed obsolete createNull test.
Aron Roberts [Wed, 9 Sep 2009 23:58:04 +0000 (23:58 +0000)]
CSPACE-424,CSPACE-401: Added (currently commented-out) negative tests of create and update with empty payload to client test framework, three service tests.
Aron Roberts [Wed, 2 Sep 2009 21:49:43 +0000 (21:49 +0000)]
CSPACE-360,CSPACE-389,CSPACE-385: Revise Relation client tests to use the updated client test framework. Minor changes in related classes triggered by this work.
Aron Roberts [Tue, 1 Sep 2009 20:59:32 +0000 (20:59 +0000)]
CSPACE-360,CSPACE-385,CSPACE-387: Renamed methods in CollectionObject client classes for consistency with test classes, and statements affected by these changes in other modules.
Richard Millet [Fri, 28 Aug 2009 17:12:02 +0000 (17:12 +0000)]
CSPACE-398: I created an abstract base class for service resources. It helps consolidate setup and use of the client and the document handler. The resource class defined in "NewRelationResource.java" shows an example of how to use this base class.
Aron Roberts [Fri, 28 Aug 2009 02:48:59 +0000 (02:48 +0000)]
CSPACE-360,CSPACE-384: For client test framework: Restored two inadvertently deleted files. Moved all three files in framework to main tree in client module, from test tree, due to unresolved issues in sharing test code across modules.
Aron Roberts [Thu, 27 Aug 2009 19:49:30 +0000 (19:49 +0000)]
CSPACE-360,CSPACE-384: Introduced dependency on surefire plugin 2.4+ in client module to allow packaging of client test framework files into test-jar, even when tests are skipped. See http://bit.ly/IOnaZ
Aron Roberts [Thu, 27 Aug 2009 19:14:06 +0000 (19:14 +0000)]
CSPACE-360,CSPACE-384: POM file additions to generate a jar file containing client test framework files in the 'client' module, and then use (depend on) those files in 'collectionobject/client'.
Aron Roberts [Thu, 20 Aug 2009 03:34:23 +0000 (03:34 +0000)]
CSPACE-360,CSPACE-338: Added more negative tests, based on HttpClient, and begin looking into generalization for test classes. (May later migrate HttpClient-based tests to RESTeasy ClientResponse.)
Richard Millet [Tue, 18 Aug 2009 20:54:57 +0000 (20:54 +0000)]
CSPACE-343: Updated POM files to use new CSpace repository URLS that now uses a "cached" set of artifacts from Nuxeo.org's "public" and "public-snaphots" repositories. Our CSpace repo is now configured to *NOT* auto-update its cache. We can update it manually as needed.
Sanjay Dalal [Thu, 13 Aug 2009 18:35:20 +0000 (18:35 +0000)]
CSPACE-182 see CSPACE 328/329/330, relevant pom.xmls changed to depend on 5.2.1 and 1.5.1. doc-type pom.xmls still need version properties locally
CSPACE-328 built nuxeo using 5.2GA source updated wiki with notes see http://wiki.collectionspace.org/display/collectionspace/Build+Nuxeo+5.2
CSPACE-329 nuxeo domain uses 5.2GA, Mysql and JDK 1.6, see http://wiki.collectionspace.org/display/collectionspace/Configure+Nuxeo+domain
CSPACE-330 ran all services tests to verify build works. changed NuxeoConnector to use new properties for remote API fix from Nuxeo
CSPACE-303 ant deploy and dist now depend on package instead of install,
CSPACE-89 dist-jboss-domains (calls dist-jboss-nuxeo and dist-jboss-cspace) packages two working domains, dist packages just cspace binaries.
M 3rdparty/pom.xml
D 3rdparty/nuxeo/nuxeo-client/lib/nuxeo-core-query-1.5-SNAPSHOT.jar
A 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4/nuxeo-core-query-1.5-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4/nuxeo-core-api-1.5-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4/nuxeo-runtime-osgi-1.5-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4/nuxeo-runtime-1.5-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4/nuxeo-core-schema-1.5-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.M4/nuxeo-common-1.5-SNAPSHOT.jar
D 3rdparty/nuxeo/nuxeo-client/lib/nuxeo-core-api-1.5-SNAPSHOT.jar
D 3rdparty/nuxeo/nuxeo-client/lib/nuxeo-runtime-osgi-1.5-SNAPSHOT.jar
D 3rdparty/nuxeo/nuxeo-client/lib/nuxeo-runtime-1.5-SNAPSHOT.jar
A 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA/nuxeo-core-query-1.5.1-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA/nuxeo-core-api-1.5.1-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA/nuxeo-runtime-osgi-1.5.1-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA/nuxeo-runtime-1.5.1-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA/nuxeo-core-schema-1.5.1-SNAPSHOT.jar
AM 3rdparty/nuxeo/nuxeo-client/lib/5.2.GA/nuxeo-common-1.5.1-SNAPSHOT.jar
D 3rdparty/nuxeo/nuxeo-client/lib/nuxeo-core-schema-1.5-SNAPSHOT.jar
D 3rdparty/nuxeo/nuxeo-client/lib/nuxeo-common-1.5-SNAPSHOT.jar
M 3rdparty/nuxeo/pom.xml
M 3rdparty/nuxeo/build.xml
M 3rdparty/build.xml
_M services/authentication/service
M services/authentication/service/build.xml
_M services/authentication/client
M services/authentication/build.xml
M services/collectionobject/3rdparty/nuxeo-platform-cs-collectionobject/pom.xml
M services/collectionobject/3rdparty/nuxeo-platform-cs-collectionobject/build.xml
M services/collectionobject/3rdparty/build.xml
M services/collectionobject/pom.xml
M services/collectionobject/build.xml
M services/JaxRsServiceProvider/pom.xml
M services/JaxRsServiceProvider/build.xml
M services/common/src/main/java/org/collectionspace/services/nuxeo/client/java/NuxeoConnector.java
M services/common/pom.xml
M services/common/build.xml
M services/pom.xml
M services/id/pom.xml
M services/id/build.xml
M services/build.xml
M services/intake/3rdparty/nuxeo-platform-cs-intake/pom.xml
M services/intake/3rdparty/nuxeo-platform-cs-intake/build.xml
M services/intake/3rdparty/build.xml
M services/intake/pom.xml
M services/intake/build.xml
_M services/relation/service
M services/relation/3rdparty/build.xml
M services/relation/3rdparty/nuxeo-platform-cs-relation/pom.xml
M services/relation/3rdparty/nuxeo-platform-cs-relation/build.xml
M services/relation/pom.xml
M services/relation/build.xml
_M services/relation/client
M services/relation/client/pom.xml
M build.properties
M build.xml
M pom.xml
Sanjay Dalal [Thu, 13 Aug 2009 17:15:35 +0000 (17:15 +0000)]
NOJIRA checking in stuff before sandbox move
A sanjay/prototypes/restws/HelloWorldDocService/nbactions.xml
M sanjay/prototypes/restws/HelloWorldDocService/pom.all.xml
A sanjay/prototypes/restws/HelloWorldDocService/nb-configuration.xml
M sanjay/prototypes/restws/HelloWorldDocService/pom.xml
A sanjay/prototypes/restws/HelloWorldDocService/README.txt
M sanjay/prototypes/jaxrs-prototype/jaxrs-nuxeo-service/pom.xml
M sanjay/prototypes/jaxrs-prototype/jaxrs-nuxeo-javaapi-service/pom.xml
A sanjay/nuxeo
A sanjay/nuxeo/NuxeoApp.java
A sanjay/nuxeo/ConnectionListener.java
A sanjay/nuxeo/LoginHandler.java
A sanjay/nuxeo/DefaultLoginHandler.java
A sanjay/nuxeo/NuxeoClient.java
Sanjay Dalal [Thu, 13 Aug 2009 17:06:03 +0000 (17:06 +0000)]
NOJIRA fixed sql to fix the following error.
ERROR 1133 (42000): Can't find any matching row in the user table
+-------+------+-----------------------------------------------+
| Level | Code | Message |
+-------+------+-----------------------------------------------+
| Error | 1133 | Can't find any matching row in the user table |
+-------+------+-----------------------------------------------+
M src/main/resources/db/mysql/create_id_generators_table.sql
Aron Roberts [Wed, 12 Aug 2009 21:13:50 +0000 (21:13 +0000)]
CSPACE-330,CSPACE-327: Added 'updateIntake' test dependency to the 'deleteIntake' test, akin to corresponding change made for CollectionObject tests in r566.
Richard Millet [Wed, 12 Aug 2009 20:18:37 +0000 (20:18 +0000)]
CSPACE-330: Added 'updateCollectionObject' test dependency to the 'deleteCollectionObject' test. Delete test was running first which prevented update test from passing.
Aron Roberts [Wed, 12 Aug 2009 01:48:04 +0000 (01:48 +0000)]
CSPACE-336,CSPACE-321: Moved unit tests of the JDBC implementation of the ID service to TestNG from JUnit; additional minor changes to reflect switch to ID generators from ID patterns
Aron Roberts [Wed, 12 Aug 2009 01:33:34 +0000 (01:33 +0000)]
CSPACE-236: Changes to serializer test class to reflect ongoing transition from ID patterns to ID generators at top-level of ID Service. Bugfix to one variable in IDGeneratorSerializer.
Aron Roberts [Tue, 11 Aug 2009 20:02:50 +0000 (20:02 +0000)]
CSPACE-336,CSPACE-321: Updated JDBC implementation of ID Service and associated tests to partly reflect refactoring to use IDGenerators, rather than IDPatterns, as highest level objects in the service.