Interface AuthNService
-
- All Known Subinterfaces:
AuthService
public interface AuthNService- Author:
- Ramadurai Pandian
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description io.mosip.kernel.core.authmanager.model.AuthNResponseDtoauthenticateUser(io.mosip.kernel.core.authmanager.model.LoginUser loginUser)Deprecated.io.mosip.kernel.core.authmanager.model.AuthNResponseDtoauthenticateUser(io.mosip.kernel.core.authmanager.model.LoginUserWithClientId loginUser)io.mosip.kernel.core.authmanager.model.AuthNResponseDtoauthenticateUserWithOtp(io.mosip.kernel.core.authmanager.model.UserOtp loginUser)io.mosip.kernel.core.authmanager.model.AuthNResponseDtoauthenticateWithOtp(io.mosip.kernel.core.authmanager.model.OtpUser otpUser)io.mosip.kernel.core.authmanager.model.AuthNResponseDtoauthenticateWithSecretKey(io.mosip.kernel.core.authmanager.model.ClientSecret clientSecret)
-
-
-
Method Detail
-
authenticateUser
@Deprecated io.mosip.kernel.core.authmanager.model.AuthNResponseDto authenticateUser(io.mosip.kernel.core.authmanager.model.LoginUser loginUser) throws Exception
Deprecated.- Throws:
Exception
-
authenticateWithOtp
io.mosip.kernel.core.authmanager.model.AuthNResponseDto authenticateWithOtp(io.mosip.kernel.core.authmanager.model.OtpUser otpUser) throws Exception- Throws:
Exception
-
authenticateUserWithOtp
io.mosip.kernel.core.authmanager.model.AuthNResponseDto authenticateUserWithOtp(io.mosip.kernel.core.authmanager.model.UserOtp loginUser) throws Exception- Throws:
Exception
-
authenticateWithSecretKey
io.mosip.kernel.core.authmanager.model.AuthNResponseDto authenticateWithSecretKey(io.mosip.kernel.core.authmanager.model.ClientSecret clientSecret) throws Exception- Throws:
Exception
-
-