Component org.nuxeo.drive.login.token.authentication.contrib
In bundle org.nuxeo.drive.jsf
Requirements
Resolution Order
633
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
- org.nuxeo.drive.login.token.authentication.contrib--authenticators
- org.nuxeo.drive.login.token.authentication.contrib--specificChains
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.drive.login.token.authentication.contrib">
<!-- Require default token authentication -->
<require>org.nuxeo.ecm.login.token.authentication.contrib</require>
<extension
target="org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService"
point="authenticators">
<authenticationPlugin name="STATEFUL_TOKEN_AUTH"
enabled="true"
class="org.nuxeo.ecm.platform.ui.web.auth.token.TokenAuthenticator">
<loginModulePlugin>Trusting_LM</loginModulePlugin>
<stateful>true</stateful>
</authenticationPlugin>
</extension>
<extension
target="org.nuxeo.ecm.platform.ui.web.auth.service.PluggableAuthenticationService"
point="specificChains">
<specificAuthenticationChain name="DriveMetadata">
<urlPatterns>
<url>(.*)/view_drive_metadata.*</url>
</urlPatterns>
<replacementChain>
<plugin>STATEFUL_TOKEN_AUTH</plugin>
</replacementChain>
</specificAuthenticationChain>
</extension>
</component>