Component org.nuxeo.ecm.platform.search.default.types
In bundle org.nuxeo.ecm.platform.search.core
Requirements
- org.nuxeo.ecm.platform.search.CoreExtensions
- org.nuxeo.ecm.core.schema.TypeService
- org.nuxeo.ecm.core.CoreExtensions
Resolution Order
859
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
- org.nuxeo.ecm.platform.search.default.types--schema
- org.nuxeo.ecm.platform.search.default.types--doctype
- org.nuxeo.ecm.platform.search.default.types--types
XML Source
<?xml version="1.0" encoding="UTF-8"?>
<component name="org.nuxeo.ecm.platform.search.default.types">
<require>org.nuxeo.ecm.core.schema.TypeService</require>
<require>org.nuxeo.ecm.core.CoreExtensions</require>
<require>org.nuxeo.ecm.platform.search.CoreExtensions</require>
<extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">
<schema name="default_search" prefix="defaults" src="schemas/default_search.xsd" />
</extension>
<extension target="org.nuxeo.ecm.core.schema.TypeService" point="doctype">
<!-- For default search -->
<doctype name="DefaultSearch" extends="SavedSearch">
<facet name="ContentViewDisplay" />
<schema name="default_search" />
</doctype>
<doctype name="ExpiredSearch" extends="SavedSearch">
<schema name="expired_search" />
</doctype>
</extension>
<extension target="org.nuxeo.ecm.core.lifecycle.LifeCycleService" point="types">
<types>
<type name="DefaultSearch">default</type>
</types>
</extension>
</component>