When using WAS we use the j2c credentials store to hold external system's users & passwords.
WAS provides some proprietary apis to get this information.
The benefit of using this instead of a local file that: - the WAS admin can add/modify credentials having no knowledge of the application structure. - it is managed in a central way for the whole cluster - WAS stores it among other own credentials in a folder that is supposed to be secure (at SO level) - Devs do not need to know about production passwords
Now we are coding for JBOSS and we wonder if there is any similar API in JBoss to get users/passwords by code.
Thank you!!