Files
alfresco-community-repo/config/alfresco/model/systemModel.xml
Derek Hulley 02dc9ced9b Patch checkpoint.
Service descriptor changes including introduction of schema number.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2161 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-01-20 14:45:16 +00:00

119 lines
2.9 KiB
XML

<model name="sys:systemmodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<description>Alfresco Repository System Definitions</description>
<author>Alfresco</author>
<published>2005-09-29</published>
<version>1.0</version>
<imports>
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d" />
</imports>
<namespaces>
<namespace uri="http://www.alfresco.org/model/system/1.0" prefix="sys" />
</namespaces>
<types>
<type name="sys:base">
<title>Base</title>
<mandatory-aspects>
<aspect>sys:referenceable</aspect>
</mandatory-aspects>
</type>
<type name="sys:descriptor">
<title>Descriptor</title>
<parent>sys:base</parent>
<properties>
<property name="sys:versionMajor">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="sys:versionMinor">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="sys:versionRevision">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="sys:versionLabel">
<type>d:text</type>
</property>
<property name="sys:versionSchema">
<type>d:int</type>
<mandatory>true</mandatory>
<default>0</default>
</property>
</properties>
</type>
<type name="sys:container">
<title>Container</title>
<parent>sys:base</parent>
<associations>
<child-association name="sys:children">
<source>
<mandatory>false</mandatory>
<many>true</many>
</source>
<target>
<class>sys:base</class>
<mandatory>false</mandatory>
<many>true</many>
</target>
</child-association>
</associations>
</type>
<type name="sys:store_root">
<title>Store Root</title>
<parent>sys:container</parent>
<mandatory-aspects>
<aspect>sys:aspect_root</aspect>
</mandatory-aspects>
</type>
<type name="sys:reference">
<title>Reference</title>
<parent>sys:base</parent>
<properties>
<property name="sys:reference">
<type>d:noderef</type>
<mandatory>true</mandatory>
</property>
</properties>
</type>
</types>
<aspects>
<aspect name="sys:aspect_root">
<title>Root</title>
</aspect>
<!-- aspect to store the fundamental node identifiers -->
<aspect name="sys:referenceable">
<title>Referenceable</title>
<properties>
<property name="sys:store-protocol">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="sys:store-identifier">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
<property name="sys:node-uuid">
<type>d:text</type>
<mandatory>true</mandatory>
</property>
</properties>
</aspect>
</aspects>
</model>