Platform Explorer / Nuxeo Platform LTS 2019 10.10

Contribution org.nuxeo.ecm.platform.audio.filemanager.contrib--plugins

This contribution is part of XML component org.nuxeo.ecm.platform.audio.filemanager.contrib inside nuxeo-platform-audio-core-10.10.jar /OSGI-INF/filemanager-importer-contrib.xml

Documentation

Simple plugin for the file manager. Creates a Audio Document type from any of the matching mime types.

Extension Point

Extension point plugins of component FileManagerService.

Registration Order

1
The registration order represents the order in which this contribution was registered on its target extention point. This will impact the override/merge behaviour when it is implemented on the target service, and is useful for proper customization of existing contributions.
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).

Contributed Items

  • <plugin class="org.nuxeo.ecm.platform.audio.extension.AudioImporter" name="AudioImporter" order="10">
          <filter>audio/.*</filter>
        </plugin>

XML Source

<extension point="plugins" target="org.nuxeo.ecm.platform.filemanager.service.FileManagerService">
    <documentation>
      Simple plugin for the file manager. Creates a Audio Document type from
      any of the matching mime types.
    </documentation>
    <plugin class="org.nuxeo.ecm.platform.audio.extension.AudioImporter" name="AudioImporter" order="10">
      <filter>audio/.*</filter>
    </plugin>
  </extension>