Reputation: 73
I been doing some research lately for an application I must develop in the near future using Oracle ADF. I'm concerned on the user management, for my research I can see that the ADF security works pretty well and is "easily" configured on Jdeveloper. However, on the tutorials I have seen and papers I have read there is no clear answer to the way that users are managed.I have two question:
Thanks in Advance .
Upvotes: 0
Views: 494
Reputation: 222
ADF doesn't really care about user management. It however leverages authentication and authorization from WebLogic using OPSS.
You have to configure your external identity store in the security realm of your domain in WebLogic which will make the users from your identity store available in the ADF application but it doesn't provide features to manage those users. You will need to write this on your own.
Upvotes: 1