Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.platform.annotations.repository.coreContrib

Requirements

Resolution Order

580
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.annotations.repository.coreContrib">
	<require>
		org.nuxeo.ecm.platform.annotations.services.DefaultAnnotationContrib
	</require>
	<require>
		org.nuxeo.ecm.platform.annotations.AnnotationsRepositoryService
	</require>
	<require>
		org.nuxeo.ecm.platform.url.service.DocumentViewCodecService
	</require>
	<extension
		target="org.nuxeo.ecm.platform.annotations.services.AnnotationsService"
		point="uriResolver">
		<urlResolver
			class="org.nuxeo.ecm.platform.annotations.repository.DefaultNuxeoUriResolver" />
	</extension>
	<extension
		target="org.nuxeo.ecm.platform.annotations.services.AnnotationsService"
		point="metadataMapper">
		<metadataMapper
			class="org.nuxeo.ecm.platform.annotations.repository.DefaultNuxeoMetadataMapper" />
	</extension>
	<extension
		target="org.nuxeo.ecm.platform.annotations.services.AnnotationsService"
		point="permissionMapper">
		<permissionMapper>
			<createAnnotation>updateDocument</createAnnotation>
			<readAnnotation>viewDocument</readAnnotation>
			<updateAnnotation>updateDocument</updateAnnotation>
			<deleteAnnotation>deleteDocument</deleteAnnotation>
		</permissionMapper>
	</extension>
	<extension
		target="org.nuxeo.ecm.platform.annotations.services.AnnotationsService"
		point="annotabilityManager">
		<annotabilityManager
			class="org.nuxeo.ecm.platform.annotations.repository.service.RepositoryAnnotabilityManager" />
	</extension>
	<extension
		target="org.nuxeo.ecm.platform.annotations.services.AnnotationsService"
		point="eventListener">
		<listener
			class="org.nuxeo.ecm.platform.annotations.repository.core.AnnotationEventListener" />
	</extension>
</component>