--- /dev/null
+/**\r
+ * \r
+ */\r
+package org.collectionspace.services;\r
+\r
+/**\r
+ * @author remillet\r
+ *\r
+ */\r
+public interface RelationJAXBSchema {\r
+ \r
+ // The Nuxeo root element name for the relation entity.\r
+ final static String REL_ROOT_ELEM_NAME = "relationtype";\r
+ // Need to fix conflict between the Nuxeo XSD and the JAX-B XSD for the "relation" entity\r
+ \r
+ final static String DOCUMENT_ID_1 = "documentId1";\r
+ final static String DOCUMENT_TYPE_1 = "documentType1";\r
+ final static String DOCUMENT_ID_2 = "documentId2";\r
+ final static String DOCUMENT_TYPE_2 = "documentType2";\r
+ final static String RELATIONSHIP_TYPE = "relationshipType";\r
+ \r
+ final static String ENUM_RELATIONSHIP_TYPE_ASSOC = "association";\r
+ final static String ENUM_RELATIONSHIP_TYPE_CONTAINS = "contains";\r
+}\r
+\r
+\r