Interface SecurityDomain


  • public interface SecurityDomain
    Pluggable security domain which could be used as a bridge between Authenticator and WildFly Security Realms.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      javax.security.auth.Subject authenticate​(java.lang.String username, java.lang.String password)
      Returns Subject based on user/password combination.
    • Method Detail

      • authenticate

        javax.security.auth.Subject authenticate​(java.lang.String username,
                                                 java.lang.String password)
                                          throws java.lang.SecurityException
        Returns Subject based on user/password combination.
        Parameters:
        username - User name.
        password - Password.
        Returns:
        Subject if authentication was successful.
        Throws:
        java.lang.SecurityException - Thrown in case of error or authentication failure.