2 <component name="org.collectionspace.ecm.platform.default.LifeCycleManagerExtensions">
4 <extension target="org.nuxeo.ecm.core.lifecycle.LifeCycleService"
7 <type name="CollectionSpaceDocument">default</type>
11 <!-- The definition of the CollectionSpace default lifecycle name "cs_default" -->
12 <extension target="org.nuxeo.ecm.core.lifecycle.LifeCycleService"
14 <documentation>CollectionSpace core default life cycle definition.</documentation>
15 <lifecycle name="cs_default" defaultInitial="project">
17 <transition name="delete" destinationState="deleted">
18 <description>Move document to trash (temporary delete)</description>
20 <transition name="undelete" destinationState="project">
21 <description>Undelete the document.</description>
25 <state name="project" description="Default state" initial="true">
27 <transition>delete</transition>
30 <state name="deleted" description="Document is deleted">
32 <transition>undelete</transition>
39 <!-- The definition of the CollectionSpace locking lifecycle name "cs_locking" -->
40 <extension target="org.nuxeo.ecm.core.lifecycle.LifeCycleService"
42 <documentation>CollectionSpace "locking" life cycle definition.</documentation>
43 <lifecycle name="cs_locking" defaultInitial="project">
45 <transition name="lock" destinationState="locked">
46 <description>Lock document</description>
48 <transition name="delete" destinationState="deleted">
49 <description>Move document to trash (temporary delete)</description>
51 <transition name="undelete" destinationState="project">
52 <description>Undelete the document.</description>
56 <state name="project" description="Default state" initial="true">
58 <transition>delete</transition>
59 <transition>lock</transition>
62 <state name="locked" description="Locked state">
63 <!-- No transitions allowed from locked state. -->
65 <state name="deleted" description="Document is deleted">
67 <transition>undelete</transition>