You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor the PropertyUserStore into UserStore base class that just stores knownUsers and has method to add a user like addUser(String name, Credential credential, String[] roles), and then PropertyUserStore would extend UserStore and feed it users from a property file. That way, either jetty or other projects could create eg an XMLUserStore to read the user info stored in xml files instead.
refactor HashLoginService to have a setter to pass in the UserStore to use. For backward compatibilty we could keep the setConfig(String filename) method and autocreate a PropertyUserStore.
The text was updated successfully, but these errors were encountered:
Implementation notes from @janbartel
The text was updated successfully, but these errors were encountered: