On Thu, 3 Dec 2020 at 09:25, Thomas Kellerer <sham...@gmx.net> wrote:
> It would still be interesting where NetBeans stores that password. > > Ultimately NetBeans uses the Keyring class which delegates to a platform-dependent KeyringProvider. https://github.com/apache/netbeans/blob/abe93502d5010781955ad22102893d03326c72e2/platform/keyring/src/org/netbeans/api/keyring/Keyring.java https://github.com/apache/netbeans/blob/abe93502d5010781955ad22102893d03326c72e2/platform/keyring/src/org/netbeans/spi/keyring/KeyringProvider.java I can see implementations for Gnome, KWallet and Mac, not sure about Windows. There is a class called FallbackProvider which is maybe used for windows? You will be able to see the provider if you enable logging for " org.netbeans.modules.keyring" at the FINE level. https://github.com/apache/netbeans/blob/abe93502d5010781955ad22102893d03326c72e2/platform/keyring/src/org/netbeans/api/keyring/Keyring.java#L75 Pete