Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.platform.routing.dm.CoreExtensions

Requirements

Resolution Order

780
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<component name="org.nuxeo.ecm.platform.routing.dm.CoreExtensions"
  version="1.0">
  <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
  <require>org.nuxeo.ecm.plateform.task.type</require>
  <require>org.nuxeo.ecm.platform.routing.lifecycle.contrib</require>
  <require>org.nuxeo.ecm.platform.routing.CoreExtensions</require>

  <extension target="org.nuxeo.ecm.core.schema.TypeService"
    point="schema">
    <schema name="task_step" src="schemas/task_step.xsd" prefix="tkst" />
    <schema name="conditional_task_step" src="schemas/conditional_task_step.xsd"
      prefix="ctkst" />
  </extension>

  <extension target="org.nuxeo.ecm.core.schema.TypeService"
    point="doctype">

    <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
    <facet name="TaskStep">
      <schema name="task_step" />
    </facet>

    <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
    <doctype name="SimpleTask" extends="DocumentRouteStep">
      <facet name="RouteStep" />
      <facet name="TaskStep" />
      <facet name="Commentable" />
    </doctype>

    <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
    <doctype name="FollowLifeCycleTransitionTask" extends="SimpleTask">
    </doctype>

    <!-- @deprecated since 5.9.2 - Use only routes of type 'graph' -->
    <doctype name="PublishTask" extends="SimpleTask">
    </doctype>

    <doctype name="ConditionalTask" extends="SimpleTask">
      <schema name="conditional_task_step" />
    </doctype>


  </extension>

  <extension target="org.nuxeo.ecm.core.lifecycle.LifeCycleService"
    point="types">
    <types>
      <type name="SimpleTask">documentRouteElement</type>
      <type name="FollowLifeCycleTransitionTask">documentRouteElement</type>
      <type name="PublishTask">documentRouteElement</type>
      <type name="ConditionalTask">documentRouteElement</type>
    </types>
  </extension>


</component>