Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component digital.signature.directory

Resolution Order

512
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' encoding='UTF-8'?>
<component name="digital.signature.directory">

  <extension target="org.nuxeo.ecm.directory.GenericDirectory" point="directories">

    <directory name="certificate" extends="template-directory">
      <schema>cert</schema>
      <idField>userid</idField>
      <passwordField>keypassword</passwordField>
      <passwordHashAlgorithm>SSHA</passwordHashAlgorithm>
      <types>
        <type>system</type>
      </types>
      <permissions>
        <permission name="Read">
          <group>__Nobody__</group>
        </permission>
      </permissions>
    </directory>
  </extension>
</component>