Platform Explorer / Nuxeo Platform 2023.10

Extension point chain

Documentation

Defines the chain of AuthenticationPlugin to use when trying to authenticate. = The authentication Plugins are tried in the chain order.

Contribution Descriptors

  • Class: org.nuxeo.ecm.platform.ui.web.auth.service.AuthenticationChainDescriptor

Existing Contributions

Contributions are presented in the same order as the registration order on this extension point. This order is displayed before the contribution name, in brackets.

  • nuxeo-platform-web-common-2023.10.13.jar /OSGI-INF/authentication-contrib.xml
    <extension point="chain" target="org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService">
    
        <authenticationChain>
          <plugins>
            <plugin>BASIC_AUTH</plugin>
            <plugin>TOKEN_AUTH</plugin>
            <plugin>OAUTH2_AUTH</plugin>
            <plugin>JWT_AUTH</plugin>
            <plugin>FORM_AUTH</plugin>
            <plugin>ANONYMOUS_AUTH</plugin>
          </plugins>
        </authenticationChain>
    
      </extension>
  • nuxeo-webengine-core-2023.10.13.jar /OSGI-INF/authentication-contrib.xml
    <extension point="chain" target="org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService">
    
        <authenticationChain>
          <plugins>
            <plugin>BASIC_AUTH</plugin>
            <plugin>TOKEN_AUTH</plugin>
            <plugin>OAUTH2_AUTH</plugin>
            <plugin>JWT_AUTH</plugin>
            <plugin>FORM_AUTH</plugin>
            <plugin>WEBENGINE_FORM_AUTH</plugin>
            <plugin>ANONYMOUS_AUTH</plugin>
          </plugins>
        </authenticationChain>
      </extension>