Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.platform.search.CoreExtensions

Requirements

Resolution Order

857
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

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.search.CoreExtensions">

  <require>org.nuxeo.ecm.core.CoreExtensions</require>
  <require>org.nuxeo.ecm.core.schema.TypeService</require>

  <extension target="org.nuxeo.ecm.core.schema.TypeService"
             point="schema">
    <schema name="saved_search" src="schemas/saved_search.xsd" prefix="saved"/>
  </extension>

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

    <facet name="SavedSearch" perDocumentQuery="false">
      <schema name="common" />
      <schema name="dublincore" />
      <schema name="uid" />
      <schema name="saved_search"/>
    </facet>

    <doctype name="SavedSearch" extends="Document">
      <facet name="SavedSearch" />
      <facet name="HiddenInNavigation" />
    </doctype>

  </extension>

</component>