Interface SecondFactorAuthenticator

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void authenticate​(com.logicaldoc.core.security.User user, String key)
      Authenticates the given user
      String generateKey​(com.logicaldoc.core.security.User user)
      The authentication method may require some kind of key generation before accepting the user login.
      boolean isEnabledForUser​(com.logicaldoc.core.security.User user)  
    • Method Detail

      • authenticate

        void authenticate​(com.logicaldoc.core.security.User user,
                          String key)
                   throws com.logicaldoc.core.security.authentication.AuthenticationException
        Authenticates the given user
        Parameters:
        user - The user to check
        key - The key inputed by the user
        Throws:
        com.logicaldoc.core.security.authentication.AuthenticationException - the user was not authenticated
      • isEnabledForUser

        boolean isEnabledForUser​(com.logicaldoc.core.security.User user)
      • generateKey

        String generateKey​(com.logicaldoc.core.security.User user)
                    throws com.logicaldoc.core.security.authentication.AuthenticationException
        The authentication method may require some kind of key generation before accepting the user login. Concrete implementations should place here their key generation logic and notify the user accordingly.
        Parameters:
        user - The user that will try to authenticate
        Returns:
        the result of the key generation, it may be a transaction id
        Throws:
        com.logicaldoc.core.security.authentication.AuthenticationException - in case of whatever error