Platform Explorer / Nuxeo Platform LTS 2019 10.10

Contribution org.nuxeo.signature.config.default--rootconfig

This contribution is part of XML component org.nuxeo.signature.config.default inside nuxeo-platform-signature-config-10.10.jar /OSGI-INF/signature-default-contrib.xml

Documentation

The configuration of the server root certificate.

Extension Point

Extension point rootconfig of component RootService.

Registration Order

0
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

  • <configuration>
          <rootKeystoreFilePath>pdfca-keystore.jks</rootKeystoreFilePath>
          <rootKeystorePassword>********</rootKeystorePassword>
          <rootCertificateAlias>pdfcakey</rootCertificateAlias>
          <!-- or proper certificate -->
          <rootKeyAlias>pdfcakey</rootKeyAlias>
          <rootKeyPassword>********</rootKeyPassword>
        </configuration>

XML Source

<?xml version='1.0' encoding='UTF-8'?>
<extension point="rootconfig" target="org.nuxeo.ecm.platform.signature.api.pki.RootService">
    <documentation>
      The configuration of the server root certificate.
    </documentation>
    <configuration>
      <rootKeystoreFilePath>pdfca-keystore.jks</rootKeystoreFilePath>
      <rootKeystorePassword>********</rootKeystorePassword>
      <rootCertificateAlias>pdfcakey</rootCertificateAlias>
      <!-- or proper certificate -->
      <rootKeyAlias>pdfcakey</rootKeyAlias>
      <rootKeyPassword>********</rootKeyPassword>
    </configuration>
  </extension>