Class MapIdentityManager

  • All Implemented Interfaces:
    io.undertow.security.idm.IdentityManager

    public class MapIdentityManager
    extends java.lang.Object
    implements io.undertow.security.idm.IdentityManager
    A simple IdentityManager implementation, that just takes a map of users to their password.
    See Also:
    Original implementation (from Undertow)
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      io.undertow.security.idm.Account verify​(io.undertow.security.idm.Account account)  
      io.undertow.security.idm.Account verify​(io.undertow.security.idm.Credential credential)  
      io.undertow.security.idm.Account verify​(java.lang.String id, io.undertow.security.idm.Credential credential)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • verify

        public io.undertow.security.idm.Account verify​(io.undertow.security.idm.Account account)
        Specified by:
        verify in interface io.undertow.security.idm.IdentityManager
      • verify

        public io.undertow.security.idm.Account verify​(java.lang.String id,
                                                       io.undertow.security.idm.Credential credential)
        Specified by:
        verify in interface io.undertow.security.idm.IdentityManager
      • verify

        public io.undertow.security.idm.Account verify​(io.undertow.security.idm.Credential credential)
        Specified by:
        verify in interface io.undertow.security.idm.IdentityManager