This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and availability dates for Spotfire products and services. It is for informational purposes only and its contents are subject to change without notice. Planning to implement - generally 6-12 months out. Likely to Implement - generally means 12-18 months out.
Copyright © 2014-2023 Cloud Software Group, Inc. All Rights Reserved.
Cloud Software Group, Inc. ("Company") follows the EU Standard Contractual Clauses as per the Company's Data Processing Agreement.
Terms of Use |
Privacy Policy |
Trademarks |
Patents |
Contact Us
Thanks Jens. I tried returning a CustomAuthenticatorPrincipal object and then allowing the built-in post authentication filter to create the users, but there were a couple of problems. Firstly, I also need a custom post-authentication filter (for another purpose), but Spotfire doesn't like the configuration setting with both auto-create and a custom filter. Secondly, the user account wasn't created until after my post-authentication filter, which meant I was unable to assign the user to groups because it didn't exist yet.
Thank you for your suggestion, you're right that some functionality is missing from the Java User Directory API.
When it comes to creation of new users I however thing that there are workarounds - assuming that you're implementing a CustomAuthenticator, a CustomWebAuthenticator or a PostAuthenticationFilter. The two former should return CustomAuthenticatorPrincipal instances, which may be created with display names and email addresses, and the latter returns a SecurityContext which can also be created with a display name and email address.