Interface SpincastHttpAuthIdentityManager

All Superinterfaces:
io.undertow.security.idm.IdentityManager
All Known Implementing Classes:
SpincastHttpAuthIdentityManagerDefault

public interface SpincastHttpAuthIdentityManager extends io.undertow.security.idm.IdentityManager
Custom identity manager for Undertow's HTTP auth protection.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addUser(String username, String password)
    Adds a user to this identity manager.
    void
    Removes all users from this identity manager.
    void
    removeUser(String username)
    Removes a user from this identity manager.

    Methods inherited from interface io.undertow.security.idm.IdentityManager

    verify, verify, verify
  • Method Details

    • addUser

      void addUser(String username, String password)
      Adds a user to this identity manager.
    • removeUser

      void removeUser(String username)
      Removes a user from this identity manager.
    • removeAllUsers

      void removeAllUsers()
      Removes all users from this identity manager.