From: Richard Millet Date: Thu, 9 Apr 2009 02:37:59 +0000 (+0000) Subject: Adding this interface for common/global values and settings to all CollectionSpace... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=99d86c5ebc3d26422680f399db15529cea19f8ac;p=tmp%2Fjakarta-migration.git Adding this interface for common/global values and settings to all CollectionSpace service resources. Currently contains the hardcoded Nuxeo workspace UUID. --- diff --git a/HelloWorld/HelloWorldNuxeoService/src/main/java/org/collectionspace/hello/services/CollectionSpaceResource.java b/HelloWorld/HelloWorldNuxeoService/src/main/java/org/collectionspace/hello/services/CollectionSpaceResource.java new file mode 100644 index 000000000..abf31281c --- /dev/null +++ b/HelloWorld/HelloWorldNuxeoService/src/main/java/org/collectionspace/hello/services/CollectionSpaceResource.java @@ -0,0 +1,6 @@ +package org.collectionspace.hello.services; + +public interface CollectionSpaceResource { + static String CS_NUXEO_WORKSPACE_UID = "322e1045-8e6f-4984-b42a-f18fb817d091"; + static String CS_NUXEO_DEFAULT_REPOS = "default"; +}